-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathshaftpost.dmm
1709 lines (1706 loc) · 546 KB
/
shaftpost.dmm
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
"aa" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ab" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ac" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ad" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ae" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"af" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ag" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ah" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ai" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aj" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ak" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"al" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"am" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"an" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ao" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ap" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aq" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ar" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"as" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"at" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"au" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"av" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aw" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ax" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ay" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"az" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aA" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aB" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aC" = (/turf/simulated/wall/asteroid,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aD" = (/turf/unsimulated/floor/planet{icon_state = "asteroid3"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aE" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aF" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aG" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aH" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aI" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aJ" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aK" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aL" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aM" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aN" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aO" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aP" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aQ" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aR" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aS" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aT" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aU" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aV" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aW" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aX" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aY" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"aZ" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ba" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bb" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bc" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bd" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"be" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bf" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bg" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bh" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bi" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bj" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bk" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bl" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bm" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bn" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bo" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bp" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bq" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"br" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bs" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bt" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bu" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bv" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bw" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bx" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"by" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bz" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bA" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bB" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bC" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bD" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bE" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bF" = (/turf/unsimulated/floor/planet{icon_state = "asteroid1"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bG" = (/turf/unsimulated/floor/planet{maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bH" = (/turf/unsimulated/floor/planet{icon_state = "asteroid2"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bI" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bJ" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bK" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bL" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bM" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bN" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bO" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bP" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bQ" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bR" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bS" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bT" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bU" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bV" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bW" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bX" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bY" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"bZ" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ca" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cb" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cc" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cd" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ce" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cf" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cg" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ch" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ci" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cj" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ck" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cl" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cm" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cn" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"co" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cp" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cq" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cr" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cs" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ct" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cu" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cv" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cw" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cx" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cy" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cz" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cA" = (/turf/simulated/wall/asteroid/mineral/uranus,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cB" = (/turf/simulated/wall/asteroid/mineral/metal,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cC" = (/turf/simulated/wall/asteroid/mineral,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cD" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cE" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"cF" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"cG" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"cH" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cI" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cJ" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cK" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cL" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"cM" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"cN" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"cO" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"cP" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cQ" = (/obj/machinery/battery,/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area)
"cR" = (/obj/machinery/battery,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area)
"cS" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{!INVALID_VAR! = 2; tag = "/areasd_L2"; maptext_width = 32; maptext_height = 32})
"cT" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"cU" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"cV" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"cW" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{!INVALID_VAR! = 4; tag = "/areasd_L4"; maptext_width = 32; maptext_height = 32})
"cX" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"cY" = (/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area)
"cZ" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{!INVALID_VAR! = 3; tag = "/areasd_L3"; maptext_width = 32; maptext_height = 32})
"da" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{tag = "/areasd_L0"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"db" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 3; tag = "/area/ship/deck_1sd_L3"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dc" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dd" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"de" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"df" = (/obj/machinery/simple_apc{dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dg" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{sound = 'station66.ogg'; !INVALID_VAR! = 2; tag = "/area/ship/deck_1sd_L2"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dh" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"di" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"dj" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 4; tag = "/area/ship/deck_1sd_L4"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dk" = (/obj/machinery/AImodule/interactmodule,/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"dl" = (/obj/machinery/AImodule/cammodule,/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"dm" = (/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"dn" = (/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"do" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"dp" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dq" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dr" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ds" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dt" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"du" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dv" = (/turf/simulated/wall/asteroid{color = "#494949"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dw" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"dx" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dy" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dz" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dA" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dB" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dC" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dD" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dE" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dF" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dG" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dH" = (/turf/simulated/wall/asteroid{color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dI" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"dJ" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"dK" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"dL" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"dM" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"dN" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dO" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dP" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dQ" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dR" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dS" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dT" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dU" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dV" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"dW" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"dX" = (/obj/structure/closet/sec,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/red,/area/ship/deck_1)
"dY" = (/obj/structure/closet/sec,/turf/simulated/floor/red,/area/ship/deck_1)
"dZ" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{!INVALID_VAR! = 1; tag = "/areasd_L1"; maptext_width = 32; maptext_height = 32})
"ea" = (/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eb" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ec" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"ed" = (/obj/machinery/simple_apc{dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"ee" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"ef" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area/ship/deck_1)
"eg" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eh" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ei" = (/turf/unsimulated/floor/planet{maptext_width = 32; maptext_height = 32; color = "#494949"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ej" = (/obj/machinery/simple_apc{load = 180},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ek" = (/obj/item/weapon/gun/energy/laser,/turf/simulated/floor/red,/area/ship/deck_1)
"el" = (/turf/simulated/floor/red,/area/ship/deck_1)
"em" = (/turf/space,/area)
"en" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area)
"eo" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area/ship/deck_1)
"ep" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"eq" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"er" = (/obj/machinery/sleeper,/turf/simulated/floor/blue,/area/ship/deck_1)
"es" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/blue,/area/ship/deck_1)
"et" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"eu" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ev" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ew" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ex" = (/obj/machinery/simple_apc{dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ey" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ez" = (/obj/item/weapon/storage/box,/turf/simulated/floor/red,/area/ship/deck_1)
"eA" = (/obj/machinery/AImodule/powermodule,/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"eB" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eC" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eD" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/blue,/area/ship/deck_1)
"eE" = (/obj/machinery/radio/intercom{color = "#f2f2ef"},/turf/simulated/floor/blue,/area/ship/deck_1)
"eF" = (/turf/simulated/floor/blue,/area/ship/deck_1)
"eG" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eH" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eI" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eJ" = (/obj/structure/table,/obj/machinery/consol/command/id_replace,/turf/simulated/floor/wood,/area/ship/deck_1)
"eK" = (/obj/structure/table,/obj/machinery/consol/superterminal,/turf/simulated/floor/wood,/area/ship/deck_1)
"eL" = (/obj/item/riflebullets/energyrevolver,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/red,/area/ship/deck_1)
"eM" = (/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area)
"eN" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area)
"eO" = (/obj/machinery/AImodule/LAWmodule,/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"eP" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eQ" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eR" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area/ship/deck_1)
"eS" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"eT" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eU" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"eV" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area/ship/deck_1)
"eW" = (/turf/simulated/floor/wood,/area/ship/deck_1)
"eX" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"eY" = (/obj/machinery/airlock/brig{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1)
"eZ" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"fa" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"fb" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area)
"fc" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fd" = (/obj/structure/sign{tag = "icon-high_voltage"; icon_state = "high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fe" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor/plating{blocks_air = 1; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"ff" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fg" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{!INVALID_VAR! = 5; tag = "/area/ship/deck_1sd_L5"; luminosity = 1; maptext_width = 32; maptext_height = 32; color = "#0000ff"})
"fh" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fi" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fj" = (/obj/machinery/simple_apc{load = 180},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"fk" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"fl" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fm" = (/obj/structure/stool/bed,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/wood,/area/ship/deck_1)
"fn" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/item/weapon/teleporter,/turf/simulated/floor/wood,/area/ship/deck_1)
"fo" = (/obj/jobmark{job = "captain"; invisibility = 101; color = "#777776"},/turf/simulated/floor/wood,/area/ship/deck_1)
"fp" = (/obj/machinery/airlock/brig/command{tag = "icon-close (NORTH)"; icon_state = "close"; dir = 1},/turf/simulated/floor/red,/area/ship/deck_1)
"fq" = (/obj/machinery/radio/intercom{color = "#f2f2ef"},/turf/simulated/floor/red,/area/ship/deck_1)
"fr" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/red,/area/ship/deck_1)
"fs" = (/turf/unsimulated/floor/catwalk,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ft" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fu" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fv" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"fw" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fx" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fy" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fz" = (/obj/structure/table,/obj/machinery/consol/announcement{tag = "icon-shuttle (EAST)"; icon_state = "shuttle"; dir = 4},/turf/simulated/floor/wood,/area/ship/deck_1)
"fA" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/red,/area/ship/deck_1)
"fB" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fC" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fD" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fE" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fF" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fG" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fH" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fI" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fJ" = (/obj/machinery/airlock/brig/command{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1)
"fK" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"fL" = (/obj/structure/reagent_dispensers/watertank,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"fM" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"fN" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fO" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fP" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fQ" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fR" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fS" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fT" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fU" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"fV" = (/obj/structure/stool/chair,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/red,/area/ship/deck_1)
"fW" = (/obj/structure/table,/obj/machinery/consol/camera_control{tag = "icon-sec_consol (WEST)"; icon_state = "sec_consol"; dir = 8},/turf/simulated/floor/red,/area/ship/deck_1)
"fX" = (/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/red,/area/ship/deck_1)
"fY" = (/obj/jobmark{job = "security"; invisibility = 101},/turf/simulated/floor/red,/area/ship/deck_1)
"fZ" = (/obj/machinery/vending/sectools,/turf/simulated/floor/red,/area/ship/deck_1)
"ga" = (/obj/structure/reagent_dispensers/dieseltank,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gb" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gc" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"gd" = (/obj/machinery/simple_apc{dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"ge" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gf" = (/obj/structure/table,/obj/item/weapon/radar,/turf/simulated/floor/red,/area/ship/deck_1)
"gg" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gh" = (/obj/structure/closet/materials{tag = "icon-closed (WEST)"; icon_state = "closed"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gi" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gj" = (/obj/structure/table,/obj/item/weapon/storage/box/medbox,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/blue,/area/ship/deck_1)
"gk" = (/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"gl" = (/obj/machinery/ATM,/turf/simulated/floor/blue,/area/ship/deck_1)
"gm" = (/obj/structure/closet/oxygen,/turf/simulated/floor/blue,/area/ship/deck_1)
"gn" = (/obj/structure/closet/oxygen,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"go" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gp" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gq" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gr" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gs" = (/obj/structure/table,/obj/item/device/flashlight,/turf/simulated/floor/red,/area/ship/deck_1)
"gt" = (/obj/machinery/airlock/brig/command{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gu" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor,/area/ship/deck_1)
"gv" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"gw" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gx" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gy" = (/obj/machinery/simple_apc{load = 180},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"gz" = (/obj/structure/table,/obj/item/weapon/storage/box/medbox,/turf/simulated/floor/blue,/area/ship/deck_1)
"gA" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gB" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gC" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gD" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gE" = (/obj/structure/table,/obj/item/cigpacket,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gF" = (/obj/machinery/portable_atmospherics/canister/oxygen,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gG" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gH" = (/obj/machinery/vending/materials{tag = "icon-default (EAST)"; icon_state = ""; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gI" = (/obj/machinery/vending/tools,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gJ" = (/obj/structure/closet/materials,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gK" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gL" = (/obj/machinery/airlock/green{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"gM" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gN" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gO" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gP" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gQ" = (/obj/structure/table,/obj/item/weapon/storage/box/toolbox{tag = "icon-blue"; icon_state = "blue"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gR" = (/obj/machinery/portable_atmospherics/canister/oxygen,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gS" = (/obj/item/device/flashlight,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gT" = (/obj/item/weapon/pickaxe,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gU" = (/obj/item/device/analyzer,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"gV" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gW" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gX" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gY" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"gZ" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ha" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hb" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hc" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hd" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"he" = (/turf/unsimulated/floor/planet{icon_state = "asteroid3"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hf" = (/obj/structure/table,/obj/machinery/computer/gravity_control_computer{tag = "icon-consol (NORTH)"; icon_state = "consol"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hg" = (/obj/machinery/gravity_generator,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hh" = (/obj/machinery/radio/mainmachine,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hi" = (/obj/machinery/portable_atmospherics/canister/toxins,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hj" = (/obj/item/weapon/storage/box/toolbox{tag = "icon-blue"; icon_state = "blue"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hk" = (/turf/space{icon_state = "7"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hl" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hm" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hn" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ho" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (EAST)"; icon_state = "fire_cabinet"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"hp" = (/obj/structure/stool/chair,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/blue,/area/ship/deck_1)
"hq" = (/obj/structure/table,/obj/item/device/flashlight,/turf/simulated/floor/blue,/area/ship/deck_1)
"hr" = (/turf/simulated/wall/asteroid{color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hs" = (/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"ht" = (/obj/structure/sign{tag = "icon-symb5"; icon_state = "symb5"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"hu" = (/obj/machinery/autholate,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hv" = (/obj/machinery/autholate/floortolathe,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hw" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hx" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hy" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hz" = (/obj/structure/table,/obj/machinery/consol/message{tag = "icon-shuttle (EAST)"; icon_state = "shuttle"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"hA" = (/obj/structure/table,/turf/simulated/floor/blue,/area/ship/deck_1)
"hB" = (/obj/structure/table,/obj/item/device/health_analyzer,/turf/simulated/floor/blue,/area/ship/deck_1)
"hC" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"hD" = (/obj/structure/sign{dir = 1; icon_state = "symb2"; pixel_y = 0; pixel_z = 15; tag = "icon-symb2 (NORTH)"},/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hE" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/structure/decor{tag = "icon-decor_5"; icon_state = "decor_5"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hF" = (/obj/machinery/vending/cola,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hG" = (/obj/machinery/vending/snacks,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hH" = (/obj/machinery/vending/tools,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hI" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hJ" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hK" = (/obj/structure/closet/medcloset{tag = "icon-med_closed (EAST)"; icon_state = "med_closed"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"hL" = (/obj/structure/closet/wall_closet,/turf/simulated/floor/blue,/area/ship/deck_1)
"hM" = (/obj/machinery/airlock/green,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hN" = (/obj/machinery/portable_machinery/cleanbot,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hO" = (/obj/machinery/airlock{tag = "icon-close (NORTH)"; icon_state = "close"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hP" = (/obj/machinery/radio/intercom{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hQ" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (NORTH)"; icon_state = "fire_cabinet"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hR" = (/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hS" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (WEST)"; icon_state = "fire_cabinet"; dir = 8},/obj/machinery/smelter,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hT" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/item/device/flashlight,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"hU" = (/obj/structure/table,/obj/item/weapon/scalpel,/turf/simulated/floor/blue,/area/ship/deck_1)
"hV" = (/obj/item/weapon/soap,/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"hW" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"hX" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"hY" = (/obj/jobmark{job = "doctor"; invisibility = 101; color = "#777776"},/turf/simulated/floor/blue,/area/ship/deck_1)
"hZ" = (/obj/botsignaler,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ia" = (/obj/jobmark{job = "clown"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ib" = (/obj/machinery/airlock,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ic" = (/obj/structure/table,/obj/item/weapon/saw,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/blue,/area/ship/deck_1)
"id" = (/obj/machinery/blood_machine/operation,/turf/simulated/floor/blue,/area/ship/deck_1)
"ie" = (/obj/machinery/blood_rec,/turf/simulated/floor/blue,/area/ship/deck_1)
"if" = (/obj/structure/closet/oxygen{tag = "icon-oxygen (EAST)"; icon_state = "oxygen"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ig" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ih" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ii" = (/obj/structure/table,/obj/item/weapon/bandage,/turf/simulated/floor/blue,/area/ship/deck_1)
"ij" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"ik" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"il" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"im" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"in" = (/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor/bar,/area/ship/deck_1)
"io" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/bar,/area/ship/deck_1)
"ip" = (/obj/jobmark{job = "bartender"; invisibility = 101; color = "#777776"},/turf/simulated/floor/bar,/area/ship/deck_1)
"iq" = (/turf/simulated/floor/bar,/area/ship/deck_1)
"ir" = (/obj/structure/table,/obj/machinery/microwave{tag = "icon-microwave (WEST)"; icon_state = "microwave"; dir = 8},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/kitchen,/area/ship/deck_1)
"is" = (/obj/structure/table,/obj/machinery/microwave{tag = "icon-microwave (WEST)"; icon_state = "microwave"; dir = 8},/turf/simulated/floor/kitchen,/area/ship/deck_1)
"it" = (/obj/structure/table,/obj/machinery/processor,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/kitchen,/area/ship/deck_1)
"iu" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"iv" = (/obj/structure/closet/crate/shaft,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"iw" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ix" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iy" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iz" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iA" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iB" = (/obj/machinery/vending/bar,/turf/simulated/floor/bar,/area/ship/deck_1)
"iC" = (/obj/structure/table,/obj/item/weapon/gun/energy/superoldrifle,/turf/simulated/floor/bar,/area/ship/deck_1)
"iD" = (/obj/structure/table,/obj/item/riflebullets,/turf/simulated/floor/bar,/area/ship/deck_1)
"iE" = (/turf/simulated/floor/kitchen,/area/ship/deck_1)
"iF" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area/ship/deck_1)
"iG" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"iH" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iI" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iJ" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iK" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iL" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_stationsd_L0"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"iM" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/structure/device/piano,/turf/simulated/floor/bar,/area/ship/deck_1)
"iN" = (/obj/structure/stool,/turf/simulated/floor/bar,/area/ship/deck_1)
"iO" = (/obj/structure/closet/wall_closet{tag = "icon-wall_cabinet (EAST)"; icon_state = "wall_cabinet"; dir = 4},/turf/simulated/floor/kitchen,/area/ship/deck_1)
"iP" = (/turf/unsimulated/floor/planet{maptext_width = 32; maptext_height = 32; color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iQ" = (/turf/unsimulated/floor/planet{icon_state = "asteroid3"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iR" = (/turf/simulated/wall/asteroid{color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iS" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iT" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_4"; icon_state = "shuttle_4"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"iU" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (EAST)"; icon_state = "fire_cabinet"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"iV" = (/obj/machinery/airlock/glassairlock,/turf/simulated/floor/kitchen,/area/ship/deck_1)
"iW" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"iX" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iY" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"iZ" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ja" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor/bar,/area/ship/deck_1)
"jb" = (/obj/structure/table,/turf/simulated/floor/bar,/area/ship/deck_1)
"jc" = (/obj/structure/table,/obj/item/cigpacket,/turf/simulated/floor/bar,/area/ship/deck_1)
"jd" = (/obj/structure/stool/chair{tag = "icon-chair (WEST)"; icon_state = "chair"; dir = 8},/turf/simulated/floor/bar,/area/ship/deck_1)
"je" = (/mob/simulated/living/monkey,/turf/simulated/floor/bar,/area/ship/deck_1)
"jf" = (/obj/jobmark{job = "chef"},/turf/simulated/floor/kitchen,/area/ship/deck_1)
"jg" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jh" = (/obj/jobmark{invisibility = 101},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ji" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/bar,/area/ship/deck_1)
"jj" = (/obj/structure/table,/obj/item/floppy,/turf/simulated/floor/bar,/area/ship/deck_1)
"jk" = (/obj/structure/table,/obj/item/weapon/reagent_containers/glass/bottle/rum,/turf/simulated/floor/bar,/area/ship/deck_1)
"jl" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/kitchen,/area/ship/deck_1)
"jm" = (/obj/item/weapon/sign,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jn" = (/obj/structure/table,/obj/machinery/chem_dispenser,/turf/simulated/floor/blue,/area/ship/deck_1)
"jo" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jp" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/turf/simulated/floor/bar,/area/ship/deck_1)
"jq" = (/obj/structure/closet/fridge,/turf/simulated/floor/kitchen,/area/ship/deck_1)
"jr" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/grown/orange,/obj/item/weapon/paper/instructions/kitchen_recipes,/turf/simulated/floor/kitchen,/area/ship/deck_1)
"js" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jt" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"ju" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jv" = (/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jw" = (/obj/structure/table,/obj/machinery/blender,/turf/simulated/floor/kitchen,/area/ship/deck_1)
"jx" = (/obj/machinery/vending/trademat,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jy" = (/obj/item/weapon/reagent_containers/glass,/turf/simulated/floor/blue,/area/ship/deck_1)
"jz" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jA" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"jB" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"jC" = (/obj/structure/border,/turf/simulated/wall/asteroid,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jD" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"jE" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"jF" = (/turf/simulated/floor,/area/ship/deck_1)
"jG" = (/obj/structure/closet/fire_closet,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jH" = (/obj/structure/table,/obj/item/device/health_analyzer,/obj/item/weapon/paper/instructions/chemical_recipes,/turf/simulated/floor/blue,/area/ship/deck_1)
"jI" = (/obj/machinery/consol/arcade,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jJ" = (/obj/machinery/airlock/green,/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"jK" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"jL" = (/obj/structure/sink{tag = "icon-sink (EAST)"; icon_state = "sink"; dir = 4},/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"jM" = (/obj/structure/sink{tag = "icon-sink (EAST)"; icon_state = "sink"; dir = 4},/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"jN" = (/obj/structure/table,/obj/item/device/defib,/turf/simulated/floor/blue,/area/ship/deck_1)
"jO" = (/obj/machinery/airlock/green{tag = "icon-close (NORTH)"; icon_state = "close"; dir = 1},/turf/simulated/floor/blue,/area/ship/deck_1)
"jP" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; icon_state = "close"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"jQ" = (/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"jR" = (/obj/machinery/chem_master{tag = "icon-mixer0 (EAST)"; dir = 4},/turf/simulated/floor/blue,/area/ship/deck_1)
"jS" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"jT" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/item/device/analyzer,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"jU" = (/obj/structure/table,/obj/item/cigpacket,/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"jV" = (/obj/structure/closet,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"jW" = (/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"jX" = (/obj/structure/table,/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/obj/item/device/flashlight,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"jY" = (/obj/structure/table,/obj/item/weapon/reagent_containers/food/snacks/donut,/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"jZ" = (/obj/machinery/disposal/toilet{tag = "icon-toilet (EAST)"; icon_state = "toilet"; dir = 4},/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"ka" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kb" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"kc" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"kd" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"ke" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"kf" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kg" = (/obj/structure/stool/bed,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"kh" = (/obj/machinery/disposal/toilet{tag = "icon-toilet (EAST)"; icon_state = "toilet"; dir = 4},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"ki" = (/obj/plantmark,/turf/simulated/floor{tag = "icon-orangemed"; icon_state = "orangemed"},/area/ship/deck_1)
"kj" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kk" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kl" = (/turf/simulated/wall/shuttle{icon_state = "shuttle_11"; opacity = 0; tag = "icon-shuttle_11"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"km" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/machinery/radio/intercom{color = "#f2f2ef"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kn" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ko" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_78"; icon_state = "shuttle_78"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"kp" = (/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kq" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; color = "#777776"},/area/ship/deck_1)
"kr" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"},/area/ship/deck_1)
"ks" = (/turf/unsimulated/floor/catwalk,/area/ship/deck_1)
"kt" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1)
"ku" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kv" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kw" = (/turf/simulated/floor/plating,/area/ship/deck_1)
"kx" = (/obj/botsignaler,/turf/simulated/floor/plating,/area/ship/deck_1)
"ky" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/plating,/area/ship/deck_1)
"kz" = (/turf/unsimulated/floor/catwalk,/area)
"kA" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kB" = (/obj/machinery/simple_apc{dir = 1},/turf/simulated/wall/newicon{icon_state = "w_ewn"; maptext_width = 32; maptext_height = 32; color = "#c6c6c4"},/area/ship/deck_1)
"kC" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1)
"kD" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/structure/closet/oxygen{color = "#d8d8d6"},/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kE" = (/obj/machinery/radio/intercom,/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kF" = (/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kG" = (/obj/structure/closet/crate/coffin,/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kH" = (/obj/parasitemark,/obj/machinery/camera{tag = "icon-camera (EAST)"; icon_state = "camera"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kI" = (/obj/machinery/gibber/crematorium{tag = "icon-crema (EAST)"; icon_state = "crema"; dir = 4},/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kJ" = (/obj/machinery/camera,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kK" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/machinery/ATM,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kL" = (/obj/structure/closet/oxygen{tag = "icon-oxygen (WEST)"; icon_state = "oxygen"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kM" = (/obj/item/parasite_egg,/turf/unsimulated/floor/catwalk,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kN" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kO" = (/obj/structure/table,/obj/item/device/flashlight,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"kP" = (/obj/structure/table,/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"kQ" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"kR" = (/obj/jobmark{job = "chaplain"},/turf/simulated/floor{tag = "icon-carpet_2256"; icon_state = "carpet_2256"},/area/ship/deck_1)
"kS" = (/obj/machinery/camera,/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kT" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1; color = "#f2f2ef"},/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"kU" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/plantmark,/obj/machinery/smelter,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kV" = (/obj/structure/closet/oxygen{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kW" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (WEST)"; icon_state = "fire_cabinet"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kX" = (/obj/structure/decor{icon_state = "shatters"; pixel_y = 32; pixel_z = -2; tag = "icon-shatters"},/turf/simulated/wall/newicon/window{tag = "icon-window_w2"; icon_state = "window_w2"},/area/ship/deck_1)
"kY" = (/obj/structure/decor{icon_state = "shatters"; pixel_y = 32; pixel_z = -2; tag = "icon-shatters"},/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"kZ" = (/obj/structure/decor{icon_state = "shatters"; pixel_y = 32; pixel_z = -2; tag = "icon-shatters"},/turf/simulated/wall/newicon/window{tag = "icon-window_e2"; icon_state = "window_e2"},/area/ship/deck_1)
"la" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"lb" = (/obj/machinery/hydroponics,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lc" = (/obj/structure/reagent_dispensers/watertank,/obj/machinery/radio/intercom,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ld" = (/obj/machinery/seed_extractor,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"le" = (/obj/machinery/vending/hydroponics,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lf" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/structure/stool/chair{tag = "icon-chair (EAST)"; icon_state = "chair"; dir = 4},/turf/simulated/floor/wood,/area/ship/deck_1)
"lg" = (/obj/structure/table,/obj/machinery/consol/camera_control{conid = 15; tag = "icon-sec_consol (WEST)"; dir = 8},/turf/simulated/floor/wood,/area/ship/deck_1)
"lh" = (/obj/machinery/airlock/brig,/turf/simulated/floor/wood,/area/ship/deck_1)
"li" = (/obj/machinery/hydroponics,/obj/machinery/camera,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lj" = (/obj/item/weapon/reagent_containers/glass/bottle/watercan,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lk" = (/obj/jobmark{job = "detective"},/turf/simulated/floor/wood,/area/ship/deck_1)
"ll" = (/obj/item/riflebullets/energyrevolver,/turf/simulated/floor/wood,/area/ship/deck_1)
"lm" = (/obj/machinery/hydroponics,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ln" = (/obj/jobmark{job = "botanist"; invisibility = 101; color = "#777776"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lo" = (/obj/structure/table,/obj/item/seeds/bananaseed,/obj/item/seeds/amanitamycelium,/obj/item/seeds/chiliseed,/obj/item/seeds/libertymycelium,/obj/item/seeds/plumpmycelium,/obj/item/seeds/potatoseed,/obj/item/seeds/wheatseed,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lp" = (/obj/machinery/radio/intercom,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lq" = (/obj/structure/grass_cutter,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lr" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/machinery/radio/intercom,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"ls" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"lt" = (/turf/unsimulated/floor/catwalk,/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lu" = (/turf/unsimulated/floor/planet{icon_state = "asteroid2"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lv" = (/turf/unsimulated/floor/planet{icon_state = "asteroid3"; maptext_width = 32; maptext_height = 32; color = "#494949"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lw" = (/obj/machinery/autholate,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lx" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area/ship/deck_1)
"ly" = (/obj/machinery/airlock{isprocessing = 1; tag = "icon-close (EAST)"; dir = 4; color = "#777776"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lz" = (/obj/machinery/airlock{tag = "icon-close (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lA" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/machinery/vending/tools,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lB" = (/obj/machinery/electronic_creator,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lC" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/structure/closet/oxygen{color = "#d8d8d6"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lD" = (/obj/item/stack/uranus,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lE" = (/obj/machinery/power/port_gen{tag = "icon-portgen1 (EAST)"; icon_state = "portgen1"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lF" = (/obj/structure/closet/fire_closet{tag = "icon-fire_cabinet (WEST)"; icon_state = "fire_cabinet"; dir = 8},/obj/item/device/flashlight,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lG" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"lH" = (/obj/machinery/solar,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lI" = (/obj/jobmark{job = "engineer"; invisibility = 101},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lJ" = (/obj/structure/table,/obj/item/ai_module/patrolbot,/obj/item/ai_module/monkeyAI,/obj/item/ai_module/hunter,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lK" = (/obj/machinery/supertelepad,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lL" = (/obj/machinery/portable_machinery/cratebot,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lM" = (/turf/simulated/wall/newicon{icon_state = "w_nse"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area/ship/deck_1)
"lN" = (/obj/machinery/solar,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lO" = (/obj/machinery/solar,/turf/simulated/floor/plating,/area)
"lP" = (/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32; color = null},/area/ship/deck_1)
"lQ" = (/obj/machinery/vending/modules{tag = "icon-default (WEST)"; icon_state = ""; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lR" = (/turf/simulated/wall/newicon{icon_state = "w_ne"},/area/ship/deck_1)
"lS" = (/obj/machinery/airlock{tag = "icon-close (WEST)"; dir = 8},/turf/simulated/floor{maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"lT" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area/ship/deck_1)
"lU" = (/obj/machinery/solar,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lV" = (/obj/machinery/simple_smes,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lW" = (/obj/critter/roach/mouse,/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"lX" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32; color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lY" = (/obj/machinery/solar,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32; color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"lZ" = (/obj/machinery/solar,/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32; color = "#494949"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ma" = (/turf/simulated/wall/newicon/window{tag = "icon-window_w2"; icon_state = "window_w2"},/area/ship/deck_1)
"mb" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"mc" = (/turf/simulated/wall/newicon/window{tag = "icon-window_e2"; icon_state = "window_e2"},/area/ship/deck_1)
"md" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32; color = "#494949"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"me" = (/turf/simulated/floor/plating{maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mf" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mg" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mh" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mi" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mj" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mk" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ml" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mm" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mn" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mo" = (/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mp" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mq" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mr" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ms" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mt" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mu" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mv" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mw" = (/obj/landmark{invisibility = 101},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mx" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"my" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mz" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mA" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mB" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mC" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mD" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mE" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/lobby{tag = "/area/lobby"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mF" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mG" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mH" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mI" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mJ" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mK" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mL" = (/turf/simulated/wall/asteroid,/area)
"mM" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mN" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mO" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mP" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mQ" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mR" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mS" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mT" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mU" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mV" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mW" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mX" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mY" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"mZ" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"na" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nb" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nc" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nd" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ne" = (/turf/space{icon_state = "6"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nf" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ng" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nh" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ni" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nj" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nk" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nl" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nm" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nn" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"no" = (/turf/space{icon_state = "22"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"np" = (/turf/space{icon_state = "19"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nq" = (/turf/space{icon_state = "21"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nr" = (/turf/space{icon_state = "16"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ns" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nt" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nu" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nv" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nw" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nx" = (/turf/space{icon_state = "3"; color = "#490000"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"ny" = (/turf/space{icon_state = "7"; color = "#443900"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"nz" = (/turf/space{icon_state = "8"; color = "#510023"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"nA" = (/turf/space{icon_state = "20"; color = "#443900"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"nB" = (/turf/space{icon_state = "1"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nC" = (/turf/space{icon_state = "0"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nD" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nE" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nF" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nG" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nH" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nI" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nJ" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nK" = (/turf/space{icon_state = "20"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nL" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nM" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nN" = (/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nO" = (/turf/simulated/floor/bar{color = "#777776"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"nP" = (/turf/simulated/floor/blue{color = "#777776"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nQ" = (/turf/simulated/floor/catwalk{color = "#777776"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"nR" = (/turf/simulated/floor/orange{color = "#777776"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nS" = (/turf/simulated/floor/kitchen{color = "#777776"},/area{sound = 'ambispace.ogg'; tag = "/area"; luminosity = 0})
"nT" = (/turf/simulated/floor/red{color = "#777776"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nU" = (/turf/space{icon_state = "3"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nV" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nW" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"nX" = (/turf/space{icon_state = "5"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nY" = (/turf/space{icon_state = "4"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"nZ" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oa" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ob" = (/turf/space{icon_state = "15"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oc" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"od" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oe" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"of" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"og" = (/turf/space{icon_state = "9"; maptext_width = 32; maptext_height = 32; color = "#490000"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oh" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oi" = (/turf/space{icon_state = "13"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oj" = (/turf/space{icon_state = "17"; maptext_width = 32; maptext_height = 32},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ok" = (/turf/space{icon_state = "12"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ol" = (/turf/simulated/wall/newicon/window{maptext_width = 32; maptext_height = 32},/area/ship/deck_1{tag = "/area/ship/deck_1"; maptext_width = 32; maptext_height = 32})
"om" = (/turf/space{icon_state = "8"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"on" = (/turf/space{icon_state = "2"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oo" = (/turf/space{icon_state = "10"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area{sound = 'title2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"op" = (/turf/space,/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oq" = (/turf/space{icon_state = "14"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_stationsd_L0"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"or" = (/obj/structure/sign{icon_state = "monkey22"; pixel_x = -16; pixel_y = 0; pixel_z = 11; tag = "icon-monkey22"},/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (NORTH)"; icon_state = "shuttle_2"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"os" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"ot" = (/obj/structure/table,/obj/machinery/consol/cargo/mining_shuttle{tag = "icon-cargo (WEST)"; icon_state = "cargo"; dir = 8},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"ou" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (NORTH)"; icon_state = "shuttle_2"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"ov" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_4"; icon_state = "shuttle_4"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_stationsd_L0"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"ow" = (/obj/machinery/simple_apc{color = "#d8d8d6"; dir = 1; load = 65},/turf/simulated/wall/shuttle{tag = "icon-shuttle_8 (NORTH)"; icon_state = "shuttle_8"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"ox" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oy" = (/obj/structure/sign{tag = "icon-retrowave"; icon_state = "retrowave"},/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (WEST)"; icon_state = "shuttle_2"; dir = 8},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oz" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_8 (NORTH)"; icon_state = "shuttle_8"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oA" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_7"; icon_state = "shuttle_7"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oB" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (NORTH)"; icon_state = "shuttle_2"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_stationsd_L0"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oC" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oD" = (/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oE" = (/obj/structure/table,/obj/machinery/consol/message,/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oF" = (/turf/simulated/wall/shuttle{icon_state = "shuttle_12"; opacity = 0; tag = "icon-shuttle_12"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oG" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_1 (NORTH)"; icon_state = "shuttle_1"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oH" = (/obj/structure/decor{tag = "icon-scrubber"; icon_state = "scrubber"},/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oI" = (/obj/structure/border{icon_state = "border"; dir = 1},/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"oJ" = (/obj/structure/border,/turf/simulated/wall/asteroid{color = "#a3a3a1"},/area)
"oK" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oL" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2"; icon_state = "shuttle_2"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oM" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oN" = (/obj/machinery/radio/intercom{tag = "icon-intercom (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oO" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_3 (NORTH)"; icon_state = "shuttle_3"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oP" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_10 (NORTH)"; icon_state = "shuttle_10"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oQ" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (WEST)"; icon_state = "shuttle_2"; dir = 8},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oR" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_9 (NORTH)"; icon_state = "shuttle_9"; dir = 1},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oS" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_5 (WEST)"; icon_state = "shuttle_5"; dir = 8},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oT" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_3 (EAST)"; icon_state = "shuttle_3"; dir = 4},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oU" = (/obj/structure/decor{tag = "icon-default (NORTH)"; icon_state = ""; dir = 1},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oV" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_1 (WEST)"; icon_state = "shuttle_1"; dir = 8},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oW" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_6"; icon_state = "shuttle_6"},/area/ship/shuttle_station{tag = "/area/ship/shuttle_station"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"oX" = (/obj/machinery/space_heater/space_cooler{dir = 1; icon_state = "sheater"; pixel_y = 64},/turf/simulated/floor{tag = "icon-gcircuit"; icon_state = "gcircuit"},/area)
"oY" = (/obj/structure/sign{dir = 1; icon_state = "bar"; pixel_x = 0; pixel_y = 32; tag = "icon-high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"oZ" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pa" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pb" = (/obj/machinery/simple_apc{color = "#d8d8d6"; dir = 1; load = 65},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pc" = (/obj/structure/sign{dir = 1; icon_state = "nosmoke"; pixel_x = 0; pixel_y = 32; tag = "icon-high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pd" = (/turf/simulated/wall/newicon/window{tag = "icon-window_w2"; icon_state = "window_w2"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pe" = (/turf/simulated/wall/newicon/window{icon_state = "window_fullwe"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pf" = (/turf/simulated/wall/newicon/window{tag = "icon-window_e2"; icon_state = "window_e2"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pg" = (/obj/machinery/simple_apc{color = "#d8d8d6"; dir = 1; load = 65},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ph" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pi" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pj" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pk" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pl" = (/obj/machinery/radio/intercom,/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pm" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pn" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"po" = (/obj/machinery/reactor/powergenerator{id = 4},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pp" = (/obj/machinery/simple_apc{load = 180},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pq" = (/obj/structure/sign{dir = 1; icon_state = "high_voltage"; pixel_x = -32; pixel_y = 0; tag = "icon-high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pr" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ps" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pt" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pu" = (/obj/machinery/airlock,/turf/unsimulated/floor/catwalk{tag = "icon-catwalk2"; icon_state = "catwalk2"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pv" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pw" = (/obj/machinery/reactor/powergenerator{id = 2},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"px" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"py" = (/obj/machinery/reactor/powergenerator{id = 1},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pz" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pA" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pB" = (/obj/machinery/reactor/steamgenerator{id = 1},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pC" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pD" = (/obj/structure/sign{tag = "icon-high_voltage"; icon_state = "alert"; dir = 1; pixel_x = -32; pixel_y = 0},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pE" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pF" = (/obj/machinery/radio/intercom{tag = "icon-intercom (EAST)"; dir = 4},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pG" = (/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pH" = (/obj/structure/sign{dir = 1; icon_state = "fire"; pixel_x = 0; pixel_y = 32; tag = "icon-high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pI" = (/turf/simulated/wall/newicon{icon_state = "w_ne"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pJ" = (/obj/structure/sign{tag = "icon-high_voltage"; icon_state = "high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#a3a3a1"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pK" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pL" = (/obj/machinery/simple_apc{color = "#d8d8d6"; dir = 1; load = 65},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area/ship/deck_1)
"pM" = (/turf/simulated/wall/newicon{icon_state = "w_sw"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pN" = (/obj/structure/table,/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/obj/machinery/reactor/control{id = 1},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pO" = (/obj/structure/table,/obj/machinery/reactor/control{id = 2},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pP" = (/obj/structure/table,/obj/machinery/reactor/control{id = 3},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pQ" = (/obj/structure/table,/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/machinery/reactor/control{id = 4},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pR" = (/obj/structure/sign{dir = 1; icon_state = "high_voltage"; pixel_x = -32; pixel_y = 0; tag = "icon-high_voltage"},/turf/simulated/wall/newicon{icon_state = "w_nsw"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"pS" = (/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pT" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pU" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; icon_state = "chair"; dir = 1},/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pV" = (/obj/machinery/simple_apc{color = "#d8d8d6"; dir = 1; load = 65},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"pW" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{icon_state = "2"; color = "#afafae"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pX" = (/turf/simulated/floor{icon_state = "5"; color = "#afafae"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"pY" = (/obj/machinery/airlock,/turf/simulated/floor{tag = "icon-gcircuitoff"; icon_state = "gcircuitoff"},/area/ship/deck_1)
"pZ" = (/obj/machinery/airlock{color = "#a3a3a1"},/turf/simulated/floor{icon_state = "2"; color = "#afafae"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"qa" = (/obj/machinery/solar,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/areasd_L"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qb" = (/turf/simulated/floor{icon_state = "2"; color = "#afafae"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qc" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor{icon_state = "5"; color = "#afafae"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qd" = (/obj/structure/sign{tag = "icon-high_voltage"; icon_state = "alert"; dir = 1; pixel_x = -32; pixel_y = 0},/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"qe" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/structure/closet/crate/coffin,/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"qf" = (/obj/structure/border{icon_state = "border"; dir = 8},/turf/simulated/wall/asteroid{color = "#a3a3a1"},/area)
"qg" = (/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qh" = (/obj/machinery/reactor/powergenerator{id = 3},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qi" = (/obj/machinery/reactor/watercapacitor{id = 1},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qj" = (/obj/machinery/reactor/watertank{id = 1},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qk" = (/obj/machinery/reactor/watertank{id = 4},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ql" = (/obj/machinery/reactor/watercapacitor{id = 2},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qm" = (/obj/machinery/reactor/watertank{id = 2},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qn" = (/obj/machinery/reactor/watertank{id = 3},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qo" = (/obj/machinery/reactor/steamgenerator{id = 4},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qp" = (/obj/machinery/reactor/watercapacitor{id = 3},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qq" = (/obj/machinery/reactor/steamgenerator{id = 2},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qr" = (/obj/machinery/reactor/steamgenerator{id = 3},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qs" = (/obj/machinery/reactor/watercapacitor{id = 4},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qt" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qu" = (/obj/machinery/reactor/watercapacitor{id = 3},/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/unsimulated/floor{icon_state = "engine"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qv" = (/turf/simulated/floor/plating,/area)
"qw" = (/obj/structure/border,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qx" = (/obj/structure/border,/obj/structure/border{icon_state = "border"; dir = 8},/turf/simulated/wall/asteroid{color = "#a3a3a1"},/area)
"qy" = (/obj/structure/border{icon_state = "border"; dir = 4},/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qz" = (/obj/structure/border{icon_state = "border"; dir = 8},/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qA" = (/obj/structure/border{icon_state = "border"; dir = 4},/obj/structure/border,/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qB" = (/obj/structure/border,/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qC" = (/obj/structure/border{icon_state = "border"; dir = 1},/obj/structure/border{icon_state = "border"; dir = 8},/turf/unsimulated/floor/planet,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qD" = (/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qE" = (/obj/machinery/airlock/glassairlock,/obj/tape,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qF" = (/obj/machinery/airlock/glassairlock{icon_state = "close"; dir = 1},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"qG" = (/obj/machinery/airlock{isprocessing = 1; tag = "icon-close (EAST)"; dir = 4; color = "#777776"},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qH" = (/turf/simulated/wall/newicon{icon_state = "w_ews"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qI" = (/obj/machinery/airlock/glassairlock{icon_state = "close"; dir = 4},/turf/simulated/floor{maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"qJ" = (/turf/simulated/wall/newicon{icon_state = "w_ne"; maptext_width = 32; maptext_height = 32; color = "#d8d8d6"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qK" = (/obj/machinery/airlock/space,/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/shuttle_station{tag = "/area/ship/shuttle_stationsd_L0"; maptext_width = 32; maptext_height = 32; color = "#ff0000"})
"qL" = (/obj/machinery/airlock/space,/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area/ship/deck_1)
"qM" = (/obj/machinery/airlock/glassairlock{icon_state = "close"; dir = 1},/turf/simulated/floor/bar,/area/ship/deck_1)
"qN" = (/obj/machinery/airlock/glassairlock{icon_state = "close"; dir = 1},/turf/simulated/floor{tag = "icon-carpet_893"; icon_state = "carpet_893"},/area/ship/deck_1)
"qO" = (/obj/structure/border{icon_state = "barricade"; dir = 2},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qP" = (/turf/simulated/wall/newicon{icon_state = "w_se"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qQ" = (/obj/structure/closet/mining,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qR" = (/obj/structure/border{icon_state = "border"; dir = 8},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qS" = (/obj/machinery/portable_atmospherics/canister,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qT" = (/obj/machinery/atmospherics/pipe/tank/oxygen{dir = 4},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qU" = (/obj/machinery/atmospherics/pipe/simple/general/visible{dir = 4; icon_state = "intact"},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qV" = (/obj/machinery/atmospherics/portables_connector{tag = "icon-intact (WEST)"; icon_state = "intact"; dir = 8},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qW" = (/turf/simulated/wall/newicon{icon_state = "w_wn"; maptext_width = 32; maptext_height = 32; color = "#f2f2ef"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qX" = (/turf/simulated/wall/newicon/window{icon_state = "window_s2"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qY" = (/turf/simulated/wall/newicon/window{icon_state = "window_n2"; maptext_width = 32; maptext_height = 32},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"qZ" = (/obj/structure/closet/crate/shaft,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ra" = (/turf/space{icon_state = "23"; maptext_width = 32; maptext_height = 32; color = "#003535"},/area)
"rb" = (/turf/space{icon_state = "18"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area)
"rc" = (/turf/space{icon_state = "11"; maptext_width = 32; maptext_height = 32; color = "#443900"},/area)
"rd" = (/turf/simulated/wall/shuttle{icon_state = "shuttle_11"; opacity = 0; tag = "icon-shuttle_11"},/area)
"re" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_78"; icon_state = "shuttle_78"},/area)
"rf" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (NORTH)"; icon_state = "shuttle_2"; dir = 1},/area)
"rg" = (/obj/structure/stool/chair{tag = "icon-chair (NORTH)"; dir = 1},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rh" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_4"; icon_state = "shuttle_4"},/area)
"ri" = (/obj/machinery/airlock{tag = "icon-close (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rj" = (/obj/structure/sign{tag = "icon-retrowave"; icon_state = "retrowave"},/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (WEST)"; icon_state = "shuttle_2"; dir = 8},/area)
"rk" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_8 (NORTH)"; icon_state = "shuttle_8"; dir = 1},/area)
"rl" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_7"; icon_state = "shuttle_7"},/area)
"rm" = (/obj/structure/table,/obj/structure/decor{icon_state = "broken_computer"},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rn" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_1 (NORTH)"; icon_state = "shuttle_1"; dir = 1},/area)
"ro" = (/obj/structure/decor{tag = "icon-scrubber"; icon_state = "scrubber"},/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor/plating,/area)
"rp" = (/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rq" = (/obj/machinery/airlock/glassairlock{icon_state = "close"; dir = 1},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rr" = (/turf/simulated/wall/shuttle{icon_state = "shuttle_12"; opacity = 0; tag = "icon-shuttle_12"},/area)
"rs" = (/obj/structure/stool/chair{tag = "icon-chair (EAST)"; dir = 4},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rt" = (/obj/machinery/autholate/floortolathe,/turf/simulated/floor/plating,/area)
"ru" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2"; icon_state = "shuttle_2"},/area)
"rv" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 8},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rw" = (/obj/blood{icon_state = "blood1_ns"},/turf/simulated/wall/shuttle{icon_state = "shuttle_12"; opacity = 0; tag = "icon-shuttle_12"},/area)
"rx" = (/obj/structure/stool/chair,/turf/space{icon_state = "24"; maptext_width = 32; maptext_height = 32; color = "#510023"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"ry" = (/obj/machinery/autholate,/turf/simulated/floor/plating,/area)
"rz" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_10 (NORTH)"; icon_state = "shuttle_10"; dir = 1},/area)
"rA" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_2 (WEST)"; icon_state = "shuttle_2"; dir = 8},/area)
"rB" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_5 (WEST)"; icon_state = "shuttle_5"; dir = 8},/area)
"rC" = (/turf/simulated/wall/shuttle{tag = "icon-shuttle_3 (EAST)"; icon_state = "shuttle_3"; dir = 4},/area)
"rD" = (/obj/structure/decor{tag = "icon-default (NORTH)"; icon_state = ""; dir = 1},/turf/unsimulated/floor{tag = "icon-cover"; icon_state = "cover"},/area)
"rE" = (/obj/structure/closet/crate/coffin,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rF" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 6},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rG" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 10},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rH" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 9},/turf/simulated/floor/plating,/area)
"rI" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 8},/turf/simulated/floor/plating,/area)
"rJ" = (/obj/blood/trail,/turf/simulated/floor/plating,/area)
"rK" = (/obj/blood/trail,/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rL" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 10},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rM" = (/obj/blood/trail{icon_state = "blood_trails_small"; dir = 5},/turf/simulated/floor/plating,/area)
"rN" = (/obj/structure/decor{tag = "icon-scrubber"; icon_state = "scrubber"},/obj/structure/stool/chair{dir = 2; tag = "icon-chair (EAST)"},/turf/simulated/floor{tag = "icon-bluemed"; icon_state = "bluemed"; maptext_width = 32; maptext_height = 32},/area)
"rO" = (/obj/blood{icon_state = "blood3_we"},/turf/simulated/wall/shuttle{icon_state = "shuttle_12"; opacity = 0; tag = "icon-shuttle_12"},/area)
"rP" = (/obj/machinery/lamp{dir = 1; icon_state = "lamp"; pixel_x = -64; tag = "icon-lamp (NORTH)"},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rQ" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/obj/machinery/atmospherics/valve{icon_state = "valve0"; dir = 4},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rR" = (/obj/machinery/lamp{name = "lamp"; pixel_y = 64},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rS" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = null},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rT" = (/obj/machinery/simple_apc{color = "#d8d8d6"; dir = 1; load = 65},/turf/simulated/wall/newicon{icon_state = "w_ew"; maptext_width = 32; maptext_height = 32; color = "#afafae"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rU" = (/obj/machinery/simple_apc,/turf/simulated/wall/newicon{icon_state = "w_ns"; maptext_width = 32; maptext_height = 32; color = "#cccccc"},/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rV" = (/obj/machinery/atmospherics/valve{icon_state = "valve0"; dir = 4},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rW" = (/obj/machinery/atmospherics/pipe/tank/toxins{dir = 4},/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rX" = (/obj/machinery/smelter,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
"rY" = (/obj/machinery/vending/tools,/turf/simulated/floor/plating,/area{sound = 'space2.ogg'; tag = "/area"; luminosity = 0; maptext_width = 32; maptext_height = 32})
(1,1,1) = {"
aaabacaaadaeafaeagahaiajakalamajanaoapanaqarasaratauavawaxaiayazaAaBaCaDaCaCaEapaFaGaHaFaIaJaKaFaLaMaNaOaPaQadaRaSaEaTaUaiaVakaWaXaYanamaZbabbbaasbcbdbebfbgbhbibjakbkaMblbmbnbobpbqaFbrbsatbtbubvaxbwbxaabyazabbcaebzbAaTahbBbAbCbDbEakanaoaZaoaCaCaCaCaCaCbFaCaCbGaCbHbHbHaDaDbGbFbHbGaCbFaCaDbFaCaCaCbHaCaCbHaDbFbFaCaCbpbgbIaibsbCbJamaYbmaKbKaabqbLbiadbMapbfbNbOavbPbQabbRbSbobTbUbpbVbWaZaHbXalaVbYaxbZbhaNcaaPaNadcbaUccagaFaibgbCbDbEcdbobZbKceaqazcfalbMaSaJbdbhaibIbBabcgaRbkbTbKchabaFbeaVahbDciaKavaobPbabZcjaQad
byaebfbRcbaUaYcgckaWbPazavaKbTbKaHaIbUclbDbEcmaIbKclaiabauaJbmcnaNazaCaDbHbHakbPbAbzbvapaHbRaPbhazcmbtbPadawaXbccobPbqcpanbTaJaVbubKbNcdbKbraxaKbVbeakbUagbOapaNbdavancjaJaKcqcicccjaHaBchagaOaKaqaGbRaLbicraAaNawbfbmaEbCabcfaoaGbdaXccawbDbSbXaCaCaCaCbHaCbGaCbGaCaCaCaCaCaCbFaDaCbGbGaCaCbHaCaDbHaDaCaDaCbHaCaCbFaCbwbKbscsbsakbKbcbtbEchatbvbmcfbNaRadcsaXaIamaqaubYboaFcnbbahbxcaajbhacckbSbcctaKcqafbPbubrajaXbaavbYbqbzcrbQbKcualamaEbdbKckbtbjafcnbaaebpajamcvcwcxbUbqbsbCapbcbIcvbMaiahctbmarbscybTaGbobTbsaxbcbXaobl
aAbsaQawacbsaqcrbVbOaqaiaEaBcpbOafbEbOapaYaCaHaXaHccamcubkbNcbbacocbbGaCaCaDajaMaTboamcmabaTaeaGcvaTbiakahcjaMacbIchazbsbqbvbXbtbebjbJaaaxbKaKczbvcmbYaeaBahczbcabahbAcdasadcobAcoahaNbDbKaobibWamcnajaPavbqaIbqbDbzchbkbzbnbJcvbXbTbvahaBbjcmbjaCaCaCbHbHbGbHbGaCaCaCaCaDaCbGaCbFbHaDaDaCaCaDbFbFaCaCaCbHaCaCbGaCadaXaTbybCbTbAaxcwcfbmbWaQagaQbgaqahbPbNbSbQbZcibSaLchbmcsaubhaSambhbKbYbiaNbVbZbzbTaJbAbDaDaCbebjaGbRcwbmbtbjagbuaybVaOcmabadaAaFbAbtasaoaJaWapcibRcjbjbbaOclaLaucrbkcxcbaXcccscbcvaWbKaMagaMagceaMclbwbXcj
bubPcdcqblbOaCaCaCakbObAazcaaMaEcmbucacdcraCbFaCbeaLbEbRctahchatahazbLajbHaCbZcbaccocdaqbKbZbvaibfckcmceaBbFaDaCbpbEbIbOavafcmaLcxbfbraAbfbXbKbmcsbNclcvaIcobebibUaaakbObebqcgaFazcabDbYahawbLbqcaaOcxbcaOaYahabbDbXcbcebBbDchbtaUbiblccaIaHbnafaCaCaCaCaDaCaCbHaCaCbFbHaCaCaCbHbHaCaCbGbFbFaCaCaCaCaCaCaCaCaCaCcxcbacaabwbObfckadbmbybebVamcyccbocpaTbSabbRaibMahacczaycobiaqcqarcoaIcraFclczbTaLcgaJaqcgbGaCaCbubYaCbGaCbucxctbickcccebBajacbOahclbybScsbRafaQaKcybMbLakaibAbvbgaEaNbjaCaCbFbFaCaCaobEagaUcvaqaAbCbMciclcmaL
ceblbTckaCbFbFbHaCaCaCaCaCbHbqaoaZaQbpcecvaCbFbGaFaOazbubeclaVbZbLbUbrbrcdaVaQbZczaLazbubtaHaXbsbCbhbyczaobHaDaDckbtalbQaXbublcvbocbcbbWaebpbqbpbcbpaEauaLaNapcvcebTcbbLaLaaadbebraEbpbzajbJcsbrbcawbXcsbjbkaQaOaZaocjcealbsamaHbRaxaAbAckcqaIajaCbFaCaCaCaDbFaCaCbHaCaCaCaCbGaCaCbGbHaCaCaCaCaCbHaCaCaCbHaCcabxbubaaabLaqcfaWbabmcbaeaWbFaCaCaNbmaNaabKaHaIbCbDaibIaybtbMavaMaoamclbqaEahaHcxaJcpbQbQbmbQbGaCaCaCaCaCaDbGaCaDbZczbUaEbuccaLbzbbaWbnaFcmbJbNbIaeaSbibfavbkaMbBbMbDaCbFaDaCbFaCbHbGaDaTayambRaqaRadbzaiatbIbhcc
bkbzbOaCaCaCaCbFaDaCaCaCaCaCaCaTaobVbectbKaCaCaCazchcmaubEcbcocfbCaRagaYcmaWbxaOaEbMbubecnaMapcaaZbtaVbUckakbHbGbhapbMaMaRaibZacbpambScibjaJcsblclaicabrcrbYaRbcbWanaCbFaCchaCbLajalctbCbbaVaQceafcsarcwaOaQbWcpaAczatciaRaRcibTcnaLaNckaYadcxbUbXbGaCaCbFbFaCaCaCbGaDaCaCaCaCaCaCaCaCaCaCbHaCbGaDaCaCaCbHaGatazchcoaWbYccaJambQaobdalcbaCaCaCbpatambPbyahbWbkcpcacmaUalacbebhcjcpbhbraFbZbVcybrbhccbXbRclaCaCaCbHaDbHbGbHaCaCcwbIcjcucrbaazadaAapagbVavaDaCaDaybmaVbCadbgbZaNbzcpbHbHaCaCaCaCaCcyaEcqcscabtaYbdbBaabzbCcecpay
abavbcaCaDaCaDaCaCbHbHaCaCaCbHbGbRcuakcmalaeaCbHcnbcaOabbNbnbwbYaWaAbQcmbbbuarakaraUaYaucsalcjcibmakctauaVbpaybWaycyarbUaUckaYbccdbWcebRbqanaKbzbvanbJbobsaObBbIaCaCaCaCaCbTavaAavbAaLbtbqbwcxaTaPbtbMbubeambAcxadcubZcmbIbzambraxawbeczcmaaaMaFaMaCaCbGaCbGbFbFaCaDaCaCaCaCaCaDaCaCaCaCaCaCbFbHaCaCaCbFbLcxaNaUcvbObiaubkctbebbamaUcqcobeaCbcbJcucuaocmbIaVcmbXaZcxbCcmbDcqbcaBbAbTaJagaybRbVbOczaBcwbTbtaFaCbFbFaCaDaDaCaCaCbybiczbJbzcrbrbMaRbXafaYczaCaDaCabaJbLaLcwaYchbhaQaCaDaCbHaDaCbGbTaMbiatboaSaOaAchaAcxbcbkbNbnao
blbyaMaCaCaCaCaCaCaDbHbGaCbFbGaCbOaccjaJbfcccvatckbVblaGcbbLbkbiapaZcgaqbmbmcyaZaxaVacctaqaRalcgbBbpbUaSacbPavbBbqaSboaPbCbZbNadcmaaaNbvaYbsbsaEcjbRaJaeccbBbdbxaCaCaCaCaCczczbjcdbfahbOcpbXchcwcqbnabbrbFaCaCatbSaoajbmcibWaabkcobzcjbdaqbwcdboavcyaGbHbHaCbHaCaCaCaCaCbGbGaCaCbGbHbGbGaCaCbFaCbGbGambrbrbCakcqaNbyaKbSaObjaIaTadcuaNaUaPaPaLcmcgbhaEaYaubqaycncfcvbYbKaXaVaEcfbyaZbhcgbdcxclbWahcbcqabbkaxbhbXaCbHbFbHbHaCaCbNaTbybyaubzaMbjaVaSchacaCaDaCbHavbiaGbKbMbbbqceaCaCbHbHaCbGaDaCaCbFapaXcbaAbBaucsckbXaQbbbPcebf
bUbncfaCbGbFaCaCaDaCaCaCaCaCaCbHbHbbbNazbdaPbWcjaRaOcfcjaXcaacbxaYccbUbJaxaAbmctbkccbcaEaqbrbIaYbvblbLbubUbJcdctbvctbUcgbicbctaSctbJaLcgbncqbdbbazceczbwaQaoaEccadaCaDaCaCaCbQcsaubXbDcscicdcgbgajbCbYbHaCaCbGbGaUbdanaacaaNcrbNbgaSbtbpbJcabVbkajcfbvavbSbwaDbHaCbGaDaCbGaDaCaCaDaCbHaDaCaCaDbrbpbqbAcjbbazaeacbjbZbLacbpaUavclbbawajbSaPbzaFaQbzatbAblclaQayaVbYaMczbQblaSaIauclaRaTbrbxctaRbIbSaQbeaEcxcxaobVaoceamaLaMbwbUcvccbkceaBbkacbTazaMbZaZbFaCaCbrbkbkaeclbjarcjbWaCbHaCaCaCbHbFaCaCaDbGbGaCbSaualaSbkaKbbaNbgbibY
caaWbFaCaCbHaDaCaCbHbFaDaCaCaCbGbHckbxamaRbeaTbgaababLbQcraOckbVasbkaecbatanaJcjaFaBaAcmakapbTaQcbbMaxbcbdbCbsbsbUbrctccbhbIatagaBclcobLctaoapbWcabvapbnacajavbPcabbbXbUcvcpawcsceayaOaVcfbOczaEaFccaCaCaCaCaCbHaGcrcgaAcabSaSbaaSahbwbladcrascfbEaubhbLbvaOaHaFcraraCaCaDbFaCaCaCaCajbIajcgabaechaJaMazbKaiaVbxaRbNbjbqbAauaacobSaWbwalcqbXaXcbcsaOclckaaaPbMbKatajboancabXbaadaHccczakbTaVcabvbwajcyaSbDcbarbObmblcjatcgcebpckbtcocbbscycvcbcqbhambTaCaCbCaScfcsaQbschbPbLboaDaCbHaCbHaCaDbGaCbFaDaCaCaCbjaSbJaLaIbCaSaycqav
cabxaDaCaCbFaCaCaCaCaCaDaCaCaCbGaCaTcaaWbEbnabaEajaEbebbavbjajbDaabuamaJczaGambtbsbeaucnbkaTbiaJbnbqbDcjbyadbaaobeaObsbTaYaFasbJbbcabOcbaAahbkakbcblatbpbDaqcnbUahaYbobhbZbdcebCbkakaYbtaNcgbYbOchcvbHaCaCaCaCbFbjafalbJbVbsbxbabJbDaZbfcecpbUcbbzbTbEbRapbmalbZcubqakawbmamaUbncobgcqbSalancnaMbWayadcybnajcubSajaQbianaJciajaFbabCbTaobWalcqbmbEbtaxaLcuayapavbyaqaFaPcscmaYaOapaOaBagaZcybDbycpcmcvbgcubnaAagbAaMbMaRbtcecnaMbWczbrccbVbYaEaRcuaRaZaCbHbEaHbhaRaNcbbZahbtbnaCbFbHbGbFaCaCaCbGaDaCaDaDaCaCaCaAbzbycgajbKakaI
anaoaCaCaCaDbHbHbFaCaCbFbFaCbHaCaCbdbiaMaKawcgbDbXbnalcsadbCaiaZbCaYaparaBbiaQaVasaSaIazbyaCaCaDakbqbCbqcbbKbCbybubXcpaGaPcvazambgbsaTbscmczbIcabCbYaEaNaJafabcvbDaubaakbdaXajbUbLavaJbzbTaWcpbgafaecyaCaCaCbmbbadbSaRaKbibvaGbxaFaPcwcjambRaPavbzbKbbcmbjcabPcucjbkarcabwbxbRbJcdbMaAbmaKcfaPcocibUabaWaCaCbZbOaTbqcsbQaEbYbDbOcfaubOcybXcaalacabbmcoaececbbobZbvbAbvcmaDaCbFbFaCaCaCaCaCaCaCaCbFbHaHaJckazcgbobYaMbZbJcbbmcpcxbcbobBaGaRaoaHczazaicxaWbqbdbfbKanbvbearbKbBaJaCaCaDaCaDaCaDaCaCaCaDaDaCbHbGbFbGaCbhaMaBaWbsaW
buaraCaCaDbGaCaDbFaCaCaCaCaCbGaCaCbsaxbfaEbNcfasbUccbLbKancsaXbsahaxaEbBccbbaCaDaCaCaCaCaCaCaCbGbHaCaCaCaCaCaCaCbFaCaCaVaFaYaAbmcgazafcobdbtayaraecqcucnbKaPaMavcoahavctbfaVbJaUbSaYczcgcebRaraJaxbCbnbgbZbKcmaqbcaobuchcmchbxbvaIbAcqaybscybxcpazcgbTaJcsbPbbbRaXbwbzatbRaxapbnbdblarbMbhbCcibfbdaWaCbGaCaCbFaIaSaGbWbWckaGbCaeckasaecmaObEbAadcpaAcmaCaDbFaCaCaCaCbGbFaCbHaCbFaCbGaCaCaCaCbHaCaCaCbFbFaCaCaCaCaCaCarbqcebvazbwaacyaoaAaoamcacscocdbQbCcxbBbxbMbectagbIbVaFbfaCaCbFbGaCbHbHbHaCaCbFaCaCbFaCaCaCaCaCaCbwcvaPcr
bkbdaBaDaCaDaCaCbGaCaCbHaCaCaCbHbHaCbYaRclaSahcsabcubqagbNaIcvbmaQaxbibyaoazaCaCaCaDaCbFbFaCaCaDaCbGaCbHaCbGaCaCaCaCaCaDaCcwbYbLaebPczbhbwaubQcfbfbjaGbOadbNaKbjcjbbcjcbaJbNaRaZbfcdaXbRcybZbcagcnbVbEawcvbNclayaRaGbJaJaoaGcxchcxbOcpbfbJbsaobkaFazasbabAayahascwbSbeabahaOadaBczcbbXaQaUaPbTbdcrcgaCbHbHaCbabUaHbJbPcwalbfcbbwbVctajaXadakaDaCaCbGaCaCaCbHbGaCbHaCaDaCaCaCaCaCaCaCaCbHaCaCaCaCaCaCaCbFbHbFaCaCbFaCaCaDaCaCbHaCajbIaRaGaTbtancubgbIbYbLbibAbEaBcqavbXaybnahbzbHaCbHaCaCaCaCaCbGbHaCbGaCbFaDaCaCbGaCbFaCaebmcf
bkaIaFaCaCaCaCaCaDaCbHaDbHaCaCbFaCbGcbaxabbXaBafaHblaUaLaccdbqahbQaJaxbpbMaCbGbHbHbFaCaCaDbFaCbFaCaCaCaCaCbGbHaCbHaCaCaCaCaCaIbqaVaScvcgbAaXbIbWaXaCbeabataRclbgbSbBbnbMaAaRbManarabadaYaNadayaNcfbTatckbbblbmcncdcubxaScpcjcvaEbEbvbebcakbtchbvcaaZcwavbPbmcpbParancxataNaBciahatblcacraGbyaMbKbtbgaCaCaCaCbCaNcwcuciapbiaBbWcxcabxaGbnaCbFaCaCaCaCaCbGaCaCaCbFaDbFaCaCaCbFbGaCaCbHaCaDbHaCbGaDaCaCaCaCbHaDaCaCaCaCbGbHbHbGaCaDbHaDaCaCazcoascxcvavazbWaLbXaNbbaVbzbDbNcwadaibFaCaCaCaCaCbHbGaCbGaCaCbGaCaDaCaCaCaCaDbGaxbBbW
aqbncjaZaCbHbHbGaCaCaCbFaCaCaCbFaCbZaFcbbOatcebCcmccaHbraMaJbKbCbIccbKaEaUaCbGbFaDbGbHbGbHaDaCaCaCaCaCaCaCaCaDaCaCbGbGaCaCaCbHaqckaPaqbYbEcobYcfbWaCaCaCbobIaOcnaZcgaUcwbkcobbaxbbbuajcraRayasaxbxbubScpbBbjaoaybZbKcbcdbCbyaabUcibmbNbwbWaMcfaebhaZcxaaaHaAbdaebcczbTcvczbybabpaUclckcjclblazaHbSbjaCaDbHauaOaqbCajaNaKbrbUaJbtcybkaCaCaCaDaCaCbFbHbGaCbGaCbFbHaCbGbFaCaCaDaCbGaCaCaCaDaCbGaCbHaCaCaCaCbGaCaCbHaCaCbHaDaCbGaCaCbGbFaCaCbGbHaCbnbhbMcebaaVckaycxbhaoanbXaVbRbjaCaCaCaCaCaCbGbFbHbHaCaDaDaCaCbFaCbGaCaCaCaacwbk
claWbDaMapaCaCaCbGaCaCaCaDaCaCaFancebYbQciaJaScubnbnanbkbvbvbhcqajbkbrcoaZbHaCbGaCaCaCaCbFbHaCbFbHaCaCaCaDaCaCaCaCaDbHbFaCaCaDaCcdcyaZamcuaGcsaSbEaCaCaCasbtaKcgcicnbKaQaOaoboaBaYaKbWcjaqanckbYapadaicvahaPbgayaEaJaxaGbNbMcnckbdawaLbEaGaGbvalaYbsaqaAbtaFaZalbmaRcwbMamaAckbIaQaSagbYaAbAauaecqcbaCbGaCaYaPbvcabOcybdcraEbwaCaCaCbHaCaCbHaCaCaCbGaCaCaCaDaCbFbHaCbGaCaCaCbGbGaCbGaDaCaCaCaCbGbFaCaCbGaCaCaCaCbFaDbHaCaCbGaCaDaCbHaCaDaCaCbGaCaVckaibecwbnbNanaEaaacaYbkbwccbGaCaCaCbHbGaCbFbHaCbFaCaDaCaCaCaCaCbHbFaCaCbBbr
cabDaZbsaNagaActbKaCaCaDaCaTbjaGaMbUblchbibBbJbxbPaNcvaWavbBaBctaLamahapbOaWaCbGbGaCcAcAcAcAcAcAcAcAcAbHaCcAbFbHaCbGaCaDbFbGbGaCbCasaOaAcpaObMaXbbbCaKbNcgatagaPajaacccubrbTaFbeaOaXapbAbcchcravaXaMafaLcuaqbscecobbctcfbSbDctbBboawcoaGaibraVbLbMaWbrawafbWbrcuckazbdaNaScebrbsbZaWbQawaycwbpbhckchcrcrbjaFcdaJcgbIaRaqbPczaCbHbHbHaCaCaCbFaCbFaCaCaCbFaCaCbGaCaCaCbFaCaCbFbFaCaCbGbFaCaCaCbGaCbFbFaCaCbGbFaCaCaCbFaCaCaCaCbGaCbHbHbFaCaCaCbFaCaCbFaDbRaQbeasbBbtamaecjakbXaNbFbHaCaCaCbGaCaCaCaCaCaCaCaCaCbGbFaCaCbHaCaCatcz
aAaNcibAanbobhbpccbxbDbiaQbxbgbcanbQaUamacbBbZbrcnaraDaCaDaHblaRavaoaJbgbebfaCbHaCaDcAcAcAcAcAcAcAcAcAaCaCbGbGaCaCbFbGaCaCaCaDaCapaRbCaPcybEcqaLajbzaBcdbcaAbsaWcgajaHbxcibPbibqbRaRbOcaataBcebqaTbiaKabbsbQaCaCaCaDaCaCbAaGcqbMalchbSbpbMascgaIbnbhbdbkbEbgcwbRccclbDbXaQbnaGaycdchchamaxamcobebTaMarbzclaxceaUalbqaOafbGaCaCaCaCbFaCaCaCaCaDaCaCaCaDaCaCaCaCaCaDbHaDbGaCaCbFaDaCbHaCaCbFbHaCbHbGaCaCaCaCbFbGaCbGaCbHaCbFbHaCbFaCaCbGbHaCaCbGaCaCbFaCaDbFcabCcybAamaHbXaEbIaKaCbHaDbGaCaCaCaCbFaCaCaCaDaDaCaCaDaCaCaDaCaCaNae
anbranchbbarblckbracazbpaZcqbKaebnbTaebWbwaiaZaybzbwbFaDaCawaebNckamaIbVctaWaCaCbHaDcAcAcAcAcAcAcAcAcAcAbFaCaCbHaCaCaCbFaCaCaDaCbHbjbzcrcfafbwadazayaxbubJbfcxbpcwbpcwbObWbZaOaScqahceaiauadbRaaaJbzbyaacqbbaqaCaCbGbHaCbjbYcqbxaoazbAbaaraXanaGaocxcqbdciawaJaZaObLaObKcjbkbWcpbtaSaTbsbZapaLapanbLbuaYbAanawaebCcoajaCaCaCaCaCaCbGaCaDaCaCaDbGaCaCaCbFbFbGaCaCaCaCbFbFaCbFaCaCaDbFaCaCaDaCbHaCbFaCbFbFaCaCaCaDbFaCaCaCaCaDaCbGaCaCaDaCaCaCaCbHaCaDaCaCbFaCbHbHaAbRchbzbscnaNbgbHaCaCbHaCbHbHaCaCbHbHaCbHaCbGbHbFaCaCaCaCbIab
anbsbgbYaebiaDboaqctbZbabrbdayapbiavaXazcoaIcwaGcuaoaCbFbHbAaFcaanbYamaUacaFaCaCaCaCcAcAcAcAcAcAcAcAcAcAbHaCaCaCbFbHaCaDaCaCbFaCaDaWbAaSbtcaaQaEahaVbybkbnbqaxciaAaRbnbiaXaFbnapcqaRaLaHcbaPbeczaOcrbJaPckbebecwaCbHaCaCbicnaycibecsclcsasbyascubhbsbBaAawbnbmbfbJbSaPaEbPaBaMbScbaxbEaZbIbKbicyaXbbbyaZasbSaQbQasbGaDaCaCaCaCaCbHbGaCaCaCaCaCbFaCbHbGaCaCaCbHaCaCaDbFbFbGbGbHaCbFaCaCaCaCaCaCbGaCaCaCaCaCbGaCaCaCaCaCaCaCaCaCaCaCbHbGbHaCaCbFbHaCbHaCaDaCaCaCaCbFaCaxbbaSaWbWaQbnblamaDaCbHbHaCaCaCaDbHbFaDaCbFaCaDaDaCcpbAbS
cabEbecnaWbEbGaCaCaBbgbYchaoataNawbUaVbLbBcscdcycebubLaQaSbbcnaSaibYaicebSanaCbGbGbHaCaCbFaCbGbGbFaDaCaCbFbHbFaCaCaDaCbHaCbGbFbFaCaCcqbsbcaFabaVbPaPaobwaHccahambWbQapbvaDaCaCaDanbbaUavcdbebObxbacqcganbrcmaYbRbGbHcscgbAbecgbwbbcickanbfbwbLbOcnaJbxaSbhcqbncbcqaqcicabDbtcabxczbtaeccaIazbjcuaMbQbebYcwafcnbKbFbGaCbHaCaCaCaCaDaDaCaCaCaCaCcAcAcAcAcAcAaCaCaCbFaCbFaCbFaCbHaCaCaCaDbGbHbFaCaDaCbFaCbGaCaCbHbGaCaCbGaCbFaCbGaCaCbGbGaCbGaCaCaCaCbGaCaCaCbHbGaCaCaCaCaobmcbatalcxbybUbuaibdaCbHbFaCaCaCaCaCaDaDaCaCaCaCauczam
bkaQbZaUarbAbHaCbHaEceaMcwaucjbyctbWcuaQbjcxbladbCbybWcxcvaqaKaMchaYcgatataRbGaCaDaCbGbFaCbHbHaDaCaCaCbHaCaCaCaDcAaCbHaCaCaCaCaCbFaDclcibMbnbUavaZcabCaEcccsbebAcpbXbHbGaCaCaDaCbGbGaLaUbxancmchbvahbQaZaAaVbIavbNcdbqcdbvbbambQaocncbaqcbcgaFcmbRcncvczbcasbrbtaoarambMczbDcpbUaBcoagaYagasbVbZbacabtcnbbcjbFaDaCaDaCaCaCaCbFbGcAaDbFaCaCaCbGaCbHaCaDcAcAaCaCaCbFbGaCaDbHbFbFaCaCaCbFaCaCaCaCbFaDaCaCbFaCaCbHbFaCaDbGaCaCbFaDaCaCaCbHaCaCbFaCbFaCaCaCbHaCaCaCbGbGbGbFbFaCaDawbucjbBcbctcybnaMaUbrbGbFbHaCaCaCbHaCaCbtajaLbRbk
aQczbXaTbVbAbBbDcrbQagaxcibYbDaBaLcaceaNaQceaNbxbXbwciccbhaPayafbmbNbLaiaqbRaCbHbFbHaCaCbFaCaCaCaDcAaDbGaDaCaCaCcAbFaCbHaCaCbHaCaCaCcjbUbZbscvbtbDbRbebDbWatbbadaCaCbHaCaCbFbFaCaCbFaCaBaVbAbybqbjasbbakcfcnbTanbCcwafbPaMcrbwbUclaTaEciakbEarbkbzbObVbsanaCaUbaaXbxadbTcvbzamaYaYaBcbagbcbfaGaZcvbnbKadaCaCaCaCbGbGaCaCaDbFbGbFbFaCaCaCaCaCaCaCaDaCaCaCbGbHcAcAaCaCbHaCaCaCaCbGaCaCaCaCaCbHbGaCbHaCbHaCaCaDbFaCbGaCaCaCaCaCaCaCaCaDaCbGaCaCaCaCaCaCaCaCaCaCbHbGaCbGaCbGaDaCaCclcecdaRbNagclcickbMbCaHbjboaHbIbBaQaSawbvaqaHai
bUaGbobVcucrbTbNaKaobcbiaBbuatbvbUasalbwaccwcyblbqbwcgaTbNbnccbjcdahbpbabkaxaCbGbHaDaCbHaCbFbHaCaCcAaCbFbFaCaCcAaCaCaCaCaCbFaCaCaDaDaaazaEcbcabmaPbzbdcdbxaCaCbFaCaDaCaDaDaDaCaCaCbFbGceavbgbNchcjbJbgajaWcqaObMbNbgataTagbNbCckcdcwbBbJaqcsbZaxcbbRcdbpaCbGbGaCbGbFagctaYagcvbMbBaBbDcgcuagamctaacbaCbHaCbGbFaCbFaDaCaDaDaCaDbFaCaCbHaCbHaCbHaDaDaCaDaDaCaCaCbHbGbFbGbFaCaCaCaCaCaCaCaDaCaCbHaCaDbFbGbGaCbGaDaCaCaCaDaCaCaCaCaCbHaCaCaCbFaCaCbFaCaCbFaCaCbGaCbGaCbHaCaCaCaCaCbGawbdcwccaKbaaabjcxaucncicqbmahanbOcvctbAaobVaM
caaJaFbLbDaOaFbabwbAbJaEbaaWczcsbLbQbHaDafbybMblaiaOaQbobncmaecubqbicwavaUcyaDbGaCaCaCaCaCbGbHbGbGcAbFbHbFaCaCaCaCaCaCbHbHbFbGaCaCaCbjaUalcvcwaXbJbybTanaCbHaCbFaCaDaCaCaCaCbHaCbHaCaCbyaObPbRbLblbTaZcccfbXbdaNafbzaBbxcibdcdakbaaXctbUbEcracbobpalbjbjaCaCaCbHbGaCaCbibbaJbuaxawafaXaWcuaVbvbcbxaCaDaCaCaCaCbHbFaCaDaDaCaCbGaCbFbHaCaCaCaDaCaCbHaCaCaCaCaDbHbGbGaCbFaDbFaDaCbHbFbHbGaCaCaDaCaCaCaCaCaCaCbFbHaCaCaCaCaCaCbGbGaCaDaCaCaCaCbHbFaCaCaCbGaCaCaCbGaCaDaDaDaCaCaCaCbHaCaCbWcnbjbXaobRcmcwbWaibDaZarclchbZbPctaqaQai
aAbybRaMctbsaaaXcdaxasbAaoaybvbJadaCaCaCbHbWbVaQcgbhbpbdbvcqaUcoaLaSaFanaNchaCaCaDaCaCaCbGaCbGaDcAaCaCaCaDaCaCbGaCaCbHbHaCaDaCaCaCbFbzavbuccbzaRbCakbFaCbFbFaCaCbGbHaCaCaCaCaCbHaCaCaDaCbubzaFajcaawbQbxbUaTczcqblaxaXcubYbwczcscnalabciazckchaUabcdapbMaCaDbHaCaCaCaDbvccaMaFaraQcrbpczamcdbSbGbHaCaCaCbFbHaCaCaCaCbGaCaCbHbHbFaCbGaCbGaCaCaDaCaCaCaDaDaCaDaCaCaCbFcAaCaCaCaCaCaCaCbHaCaCbGaCaCbHbGaCaCaCaCbFbGaCaCaDaCaCbFbHaDbFaCaCaDaCaDaCaCbFaCbHbFbGaDbFaCaCaCaDaCaCbGaCaCbGaCaCbFckcyabbsahaebbapcwbIaPbVaKagbkcybjctcs
cebUaEbzcsaXamccbYbRbPbqbSbqaSaHataCaDaCaCaoaObUcjbVckblbdbLaTcjctbnbDaqbZbrbvbFbGbFaDaCaCaCbFaDcAcAcAcAaDbFaCbFbFaCaCbHaCaCbHaCaDaCchbNahaxckbfbbaCaCbFbFaCaCaCaCbGbFaDaCaCbHbFaCaCbGaCbEcrcqaEccaGasbtbUaxclaXagbYbLcmcfaCaCbwcaadbObaaYbTcuaLaXbOaNbuaCaCaCaCaCaCcebkbIcgbocvaOaWafaLcxaGaCaCaCaDaCaCaCaCbGaCbGaCaCaCbFbFbFaCaCbFaCaCbHaCaCbHbFbHaCaCaCaCaDaDbHaCaCbHaDaCaCaDaDaCaCaCbGbFaDaCaCaDaCbGaCaCaCaDaCaCaCaCbFaDaCbFbGaCaCbHbHaCaCbHaCbFaCaCaCaCaCaCbHaCaCbGaCaCbGaCbHaCaCbGbFcjbvatbNaMayacaObrbPawaFbccnbLaPcwbX
bobpbjbnbNbSajcgbSauahaKcmbtapbdaiaCaCaCbaadaxbSafbObkchbnaQbCbfaEbLcgavaubnbLaDaCbGaCaCbGaCaCaCcAcAcAcAbHaCbGaCaCbHaCaCbGaCbGaCaCblcqbDcnbAaFaIaCbGbHaCaCbFaDaCbGaCaCaCaCaCaCaCbFbGaCaDaDcnbvafascyajbBbTabbJbQbrbhambdbOaCaDbGaCaCaIbgasaxaUbkagcicqcxaCbGaCaCafaJbqbdclaLclcsbiaKaxbTbsbFaCaDbHaCaCaCaCaCbGbGbHaCaCaCaCaCbHbGbFbFaDaCaCbFbGaCaCbHaCbGaCaCaCbGbHaCaCbHaCaDaCaCbFaCbHaCaDaCaCaCaCaDaDbHbFbHbGaCaCaCbFaCaCaCaCbGaCbHaCaCbHaCbHbGaCaDbGaCbHaCaCbHbFaCaCbHaCaCaCaCaCbGaDbFbFaDacanbDawaTbicbcrclczbZbRaJawakccci
bycxcbbPavbLakauczbxasbucnaZbQaUbRbpaBajadbxcwaRaJazbhaGbkbaaLbaaDaCaCaOazbZaaaCaCaCaDaCaCbFbHaCaCbHaCaCaDaCaCbFbHaDbHaCaCaCaCaDabcyaOcdcjcraaaHaCbGbGaDaCbHbFaCbHaCbGaCaCaCaCaCbHbGaCaDaCaNaLchbqauaOaabpckcvaobNaFbTbUaWbnaCaCaCaCbNbebebJajclbVbWbXblarcqcaaNbkbQbTbyaNbtcqbkclbxawbuaCbFaDaCaCbFbGbFaCaDaCaCaCbFaCaCbFaCaCbFcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCbHaCbGaCaCaCbGaDbGaCaDbGaCaCbHaCaCbFaCbHbGaCaCaCaCaCaDbGbHaCaCaDaCaDaCaCaCaCbFaCaCbHbHbFbHaCaCaCbGaCbGaCaDaCbFaCbFaCaCbzcibJbYccaQbTaGbKcpaGakciaXaS
aAayakbJbdcfbebqaXbQbtcpaSadaWbrbxbDciawckaebnaRbhbfajaSbbczczataCbGaCaubhbPbpaCaCaCaCaCaCbHbGbHaCaCaCbGaCaDbHaCaCaCaCbHaCaCcwazaEchbkbOaSarbmaDaCbHbFaCbHbFcBcBcBcBcBcBcBcBcBbGaCaCaCaCbHaNbXbjceaibvakblataAbvbaaWbPbYcgaTaOaCaCaCcxcnbZbpbYctcgbAcdctcoasaQajalbDatawakbNbBaucsbdagcubFaCaCaCbFaCbGaCbFaDbHbGbGbGaCaCaCaCaDaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCaDaCbHbFaDaDbGbFaCaCaDaCaCaCaCbFbGaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCaCbHbHaCaCbFaDaCaCaCaCaDbHaCaCaCbGbHaCcpcbcfanbSaxaAbicianaSbYbKaTbd
bsalaKbwbaaPadadauagcxbCcgceapbLaqbiatcicsbjbkabbSaebpbWaVcdaYaKbHaCaCaCbpbDcubCaCaCaCaCaCbGbFaCbHaCbFaCbGbFaCaCaCaCbGbHbHbpbtaraSbKbeaRbpcvcubHaCbFbGaCaCbFcBcBcBcBcBcBcBcBcBaCaCbFbGbGbGalaIbgapbCaGahaNaIcuawbPbhbSbzbCctanbTaYbWaaaZcsasaAazbgafbRbUaFaEbDaXapapbibYcvccbAayayaRbSbHaCaCbFaCaCaCbHbFaCaDaCbGaCaCaCaCbGaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbFaDaCaCaCaCaCaCaCaCaCbGaCaCaCaCaCaCaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCaCaCaDbGbHaCbFbGbFbFbHaCaDaCaCbGbGaCaCaqaBawczcscfabciaCaCbnbUahbpbt
cpaOaEaibHbGbIbybdaybbcpbuasbHbHaCakaPataoadaIaKaEcdaQaSaMaeavcgaCaCaCaCcvbJbzbKaCaCaCaCaDbFbFbHaDaCbGaCaDaCaDaCaDbFaCbobtbNcucmbCcoclazaxaYbHaCaCbHbFbGaDbGcBcBcBcBcBcBcBcBcBbGbHaCbFaCaCaCaCbyaPbRaLawanbPbQbMcabxbOaTaaaiaYaZboavbCaEbPcdbfbrbYaibsascgbXcxbebPblcnbebDaPbWaqbJczaCaCbGaDaDaCaDaCaCaCbFbFaCaDaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbFbHaCaCbGaCaCaCbHbFbGaCaCaDbFaCaCaCaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaDaCaDaCaCaCbFbHaCbGaDaCaCaCbFaCbHbGbFaCaCccaBbYbfaHauckbaaCaDaDaUaJcqbi
bkaccyaDaCbHaqctbAbIbWcbbPbdaDaCbFcjbRbebmcxaZabavazbQbNazaYcmaAaJaJbDagbJcxbXawasaCaCaCbGaCaCaDaCaCaDbGaCaCaCaCaCaCbZcjacaaapaUbgbrbaaGaXbebFaCbGaCaCbFaDbFcBcBcBcBcBcBcBcBcBcBcBaCaCbGaCbHbHaCamazboasclbUaLbnbSbhbvaQcqbvbEbQawaTbJcoaEahaHaBavaSakbRaJbdbIcabPazaibYbpbUcpaTadaxaCbGaDaCaCaCbFaCaCbHaCaCbFaDbGcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaDaCbGaCaCaCaCbGaDaCaCaCaDbGaCbHaDaCaCaCbHcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCbGaDaCaDaCaCaCaCbHaCaCaDbGaCaCbGbHaCbHbFawcuaiawcgakbKcqbGaCaCaCbwbaac
bkbNbqaCbFbGbDbrcbbKawbpaecqaCaCbFbiaSclbLaPaNbvbtcncxawbeaqbLbabwbjbIaLarbMavbPaAasbHaDaCaCaCbHaCaCbFaCbFaCaDaCacaVbyaNafaianajcgacakaWcbaXbHaCaCaCbFaCbHaCcBcBcBcBcBcBcBcBcBcBcBaCbFaCbFbGaCaCbFbHaCbIaqaHaTaTazbrbVaJcaaNcjajctbCcvctbCaGbmbmaQbbccapbSaHcaaFaHbVaybLbLayaybZaLbHbHaCaCbFbFbHaCaDbHaCaCaDaDbGbGcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCbFaCaCbFaDbFbGaCaCbGaCaCaCbHaCaCaCbHaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCbFaCaCaCbHaDaDaCaCaCaDaCbFaCaCaCaCaCaCaObibJbVbecxaacubGaCaCaCaGcnaq
anbvbrbGbGaCbactaKbxbybycccmclaCaCapcubWajbXaVaAaZbKcmciaHbxcgbLbAahbfbWbCbpcxbTcnbUavbIaUaBbGbFbFaCaCaDbLcdbuclakbocxbnbQaqbvbQacbxcqagbXaUaCbHaCaCaCaCbGbFcBcBcBcBcBcBcBcBcBcBcBbFaDbGbFaDaCaCbFbHbHaCaCcxcqbqcjafctczaxaFatcjaVbxbWapbtbOadaVaKadabcybYajbKbYcwbLbCaVbRaxaobUapaCaDaCbFbHaCaCaCaDaCaCaDbHbFaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbHbFaDbFbGaCaCbGaDaCbFaCaCaCaCaCbGcCcCcCcCcBcBcBcBcBcBcBcAcAcAcAcAcAcAcAcAcAcBaCbFbFbFaCbHaCbFaCaCbHbFaCaDaCaCbFaCaCaCaCahapcycwanavarbGbGaCaCbHbtaUan
anaaaMaobIaraaaEbObkaSbDcrbRcubzaYbnbJaubNbjagbYbnbCcbaGbwaqbRcbaJcechakaScqbvcpaebxbhaqcabNbgcgbJaTcqbYcubScebBajbDbfbKacbOcibEaTauaRbobvaybGbFbFaCaCbGaCaCcBcBcBcBcBcBcBcBcBcBcBaCaCaCaDaCaCaCbHaCaCaCbHbHaxaRcsbhaUamctbWbaaSaVbnbIatbTaJaTcrbnckbAccbDclagadaPaRanajaEakaRawcybGaCaDaCbGaCaCaCaDbGaCaDaCaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbGaDaCaCaCaCaCaCaCaCaCaCaCbHbFbHaCcCcCcCcCcBcBcBcBcBcAcBcAcAcAcAcAcAcAcAcAcAcBbGaCaCaCaCbHbGbGaCaCaCaDbGbFaDaCaCbFbFbHaCaraKakcxapaeapaCaCaCaCcacubIap
caaGcfbhbCbmbWanciaechaBcrbEcibBaqbuckaaaJbgaQbkcrcjbIafbUaDaCbGcgaTcjaBbsaRaBaoaBbhalbMbBaEajbAaZbibwaZcvbDcsaMaocyaUaeaqawaFanbIbSaAbabnaaaCbFaCaCaDbFaCaCaDaCcBcBcBcBcBcBcBcBcBaCaCaCbFaCaCaCaCaCaCaCbGaCaNbUcxbhcocfbNbXbDaaaUaUbYanbTalbdbLbyaiaVasbbaqaxbEaxbbbLcvabckaEbCbdbGaCaCaCbHaCaCaDbFaCaCaCbFbFaCbGcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbHaDaDbFaCaCaCaCbHaCbGaCaCaCbGaCaCcCcCcCcCcBcBcAcAcBcBcBcAcAcAcAcAcAcAcAcAcAcBaCaCaCbGaCbFaCaCaCaCbFbHaDbFaCaDaDaCbFbFbFaJbjbDaibUcgbwckbFaCbHbqaWbDao
abaVaObNbWcycgalbNabbxcnasaIbfbVbUbacfaebvcyceaYaibRbHaCaCbHaDbGbFccaNbuaLaXbmcjbXajaMaBapcmbWaVbJbUbmaWaUaJbtcocvafbOcpbsarchaZbTajbmbTaAarbFbHaCaCaCbFbHaCaCaCcBcBcBcBcBcBcBcBcBbGaCbHbGbHaCaCbFaCaCbFaCaCclbYaBbRbiaSbicdaQaKcgavbVcdaYbbaOclaVcxabbybYaUbPcfahacafaFbXbDawacaCaCbGaCbFbHaDbHbHaDaCbHbGaCaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCbHaCaCbGaCbGaCbHaCaDaDaCaCaDaCaDcCcCcCcCcBcBcBcBcBcBcAcAcAcAcAcAcAcAcAcAcAcBbGaCaCbHbHaCaCaCaCaCaCbFbGaCaCaCaDbFbFaCcoaaagcocjcuaxbPaubXbLaFahabaEbo
blbZawaIajaRaYanaNaQbKbvbhakbxatalaVcyaPaGbbahabcebbadaCaCaCaCaCaCbhaOapbrajciaTccckaMapajccchaybcaibUaEbobKbxaobWaPbWcxbZbQccbKbxaqbwcsbzbIbFaCaCaCaCaCaCbGaCbHcBcBcBcBcBcBcBcBcBaCaCbHbGaCbFaCaDaCbHaCaCbGaEaSaOaLbWanapbJcbaFamagcabZbEbmafbYbrbRaNagbgaGbZbhaSapaYaEcmbhbmchaCaCbGaCaCaCbGaCaCaCbGbHbFaCaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCaCaCaCbFaDaCaCaCaCaCaCaCaCaCaDcCcCcCcCcBcBcBcBcBcBcAcAcAcAcAcAcAcAcAcAcAcBcBcBbFaCbGaDaCbGaCaCaCaCaCaCaCbHaCaCaCbFbTcxbAcoapaQbnaPaHaQabaqcsadbLcd
bSazanafbsbeasbjaAbqcqaWbtcaaObUbgadctbhbVbuawaibccpbnaFaCaCaCaCbFcucyazcdanatcabBaPbyaHacbZawbKbxcmbqbGbFaCamcmbRajbzbLbzarazaqarbIaYaKbtcnbGbFaCaCaCaCaCaCaCaCaCbGaCbGbGaDaCaCaCaDaCaCaCaCaCaCaCaCaCbGbFaCaHbBcgaSbvaYaUaXcobicgbNbdagaTaPbObicebdbebibXceaubTapblbabEaOaybAambHaDaDaDaCbHaCbHbFaDaCaCbHaCaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbHaCbFaCaDaDaCaCaCaCbFaCbHaCaCaCaCcCcCcCcCcBcBcBcBcBcBcAcAcAcAcBcBcBcBcBcBcAcAcBcBaCaCaCbGaCaCaCaCbGaCaCbGaCaCaCaCaCaCcjasceabcpckbTbnbjbXcuafcjbyataB
caaUcwcmbBcoadalbQcvbsaRaccobqaCbHbHaobSbXbnbTbBclbTaxcpbWbuaxawaaaybNaGaAalcfbKbPbubEaXbtcobXbzbpaabTaCaCbFaCahbzbnaAcmambDbocfaSahcnarczckaJbFaDaCbHaCaCbGbGaDaCbHaCbGaCaCaCaCaCbGaCaCbFaCaCbFbGbGbFbFbGaCagbmavbhcqcqcmaLaocgaiasbvbzbaagaMbQanafaubRbnanavaYcnazaRbXbObZaaaEaCaCaCaDaCbFaCaCbHaCbGaCaCbGaCaCaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaDaDaCaCaCaCbGbGaCaCaCaCaCbFaCaCcCcCcCcCcBcBcBcBcBcBcAcBcBcBcAcAcBcBcBcBcAcAcBcBbGbGaDaCaDaDaCaCbFaCbHaCaCaCbFbFbHahbJbOcdaXaLbvccaPaMckcjbwaTbcbpbt
aAakcsbuaJbsaBbgbdaMcaclbaaYbqaCbFaCaCbJbwalaiayawbMcncdbXaWaVcrasajatcmbbbpadadaqczbybnaqbXbgcpayaobaaCbHaCaCbYbtarbEbpaJadcgatbCadaybVaWaGaVbHaCbGaCbFbHbHbHaCbGaCaDaCaCaCbHbGbFaCbHaCaCaCbGaCaCaCaCbGbFbPaSagbSaoaLbCchaEchajbYbhambAamafciaGbCbmbDbAaVbUbhaCbrbqbBbvbgaoaGaXaCbHbFaCaCaCbFbFbFaCaDaDbGaCbGbHaCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcCcCcCaCbFbFbHaCaCbGaCaCaCaCaCaCbGcCcCcCcCcBcBcBcBcBcBcAcBcBcBcAcAcBcBcBcBcAcAcBcBbHaCbHaCaCaCaCaCaCbHaCbGbFaCbGaCbHcdamcjagaOblclbRcaaSaHcvbacxaObEbR
anamadcgaIaBaucscncqaFamaXaTaTaDaCbGaCbtaybMaEbIaRcecraKaYbmbpaibhbkbbbXbJbkapcwbsbxaabNbQclavaMaScrczbAaCaCbGaCbpbOcebMcaaXbtaxaNbCcybXaXbZaVbXaCbFaCaCaCbHaDaCaCaCaCbGaCaCbFaCbGaCaCaCaCaCaCbFaCaCaCaCaCaHcibCaxaMaLaFbZaWaTbccibhbpcsbybXaKakbQbwaLaOcjaaaDbHaCbkaOafbpbUbdaObFaCaCaCaCaCaCaCaCaCbHbFaCaCbHaCaDcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcCcCcCaCaCaCaCaCbHbHaDaDaCaCaCaCaCcCcCcCcCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbGbGaDbHbFbHbFaDaDbHaCaCaCaCbHbHaCaJcfbtaGcaaGcccramaubzaVbmbuaqaIag
bobLbxalaPblccaVaIarcvbUbzaicpaCaCbGaCabczagckaTbpbManaMaacnbTbOaNbgbSciaRbXaQawcaaFabbdbpaLalapaLbrazbhaZcebNbTbOczapaVaGaTbdaMafbibJbBaMatcpalaibFaDaCaCaCbGaCaCaDaCbHbHaCbHaCaCaCaCbGbHaCaCaDaCaCaCaCbwcwbQambdcraOaEbhcsabctbMcsbsadbBcmckcicuaOafaGbZaCbGbGaCbwaNcvaubmbIbMaCaCaDaCaCaCaCaCaCbHbFaCaCaCaDaCaDcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcCcCcCaCaCaCbHaDaCaCaCbHaCbHaCbFaCcCcCcCcCcCcCcCcCcBcBcBcBcBcBcAcAcBcBcBcBcBcBcBcBaCbGaCaCbFaCaCbFaCaDaCbHbGaCaCaCbFamchafblaobJaEbnbmbybJadbpaNbjcubB
aAaFcjckclcwbbaUcocrbBckbOauamaCaDaCaCcwcdbaaNbNbncfbRbQbTbnbubxchcvakcpbXacaMcxchaPbFaCbFaCaIaUafcjaLaBbhcpcuaZcubaaOcxcrbcchabbHaCaCbNadbTbjamaOavaDaCaDaCaCbFbGaCaCaDaCaCaDaDaCaCaDaCaCaCaDbFaCaCbFcjbvbSaxaSaOataRbhbUamciaPahbTbYbYbMbrckceaLbTalaIcnaCaCbFaCbUbLaucbcabEaoaCaDaCaCbFbHbHbGaCaCaCaCaCbHaCaCbHcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcCcCcCbFbGaCaCaCbHaCbGaDaCbFaCbFaDcCcCcCcCcCcCcCcCcBcBcBcBcBcBcAcAcBcBcBcBcBcBcBcBbGbGbHaDaCaCaCaCbFaDaCaCaCaDbFaCaCbxaKaybjbRanczbhbybyaZazaRchanbLah
cactaxbKaZbDbPbbaPayaKcqcbaBaBcnclcnaGcoaubJawaMcwaYbsaYawaybIamagbsaibtaIbhbQbvcsbRbGaDaCbGbObtbZanbmcqbKchagbXcrbNcybIakcabTbSbFaCaDaDaTaYaIaebObbaObGaDbFaCaCaCaCaCbGaCaCaCaDbHaCbHbHbGaDaCaCaCaCbfaqbSbububRbAbWbKanbhctaZbvcccubKaJagcwbxcicdaLamapcuaCaCaCaDboagaKbZaLbTbdaCaDaCaCaCaCaDaCaCaCaCaCaDaCaCbFbFaCaCaDaCbGcCcCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcCcCcCaCaCaCaCaCaDaCaCaCbGaDaCaCaCcCcCcCcCcCcCcCcCcBcBcBcBcBcBcAcAcBcBcBcBcBcBcBcBaDaCbGaCbGaCaCaCbGaCaCbGaCaCaCaDaCbvaaadbgbacmaFbtaNbgbeaMapcfbNbCaj
bVaTahcscfbNbWcsaGaiaFbOascxcpcobDbcbqayaYcubbbPaYaUbqaybxaUasbPaZbzbDabbbaSalcabVaTaCaCbFaCbFaQcmcsaObeaVaXchbgaAaPawbZapcrcyaCaCaCbHaCapbKbJcybcaUccbZcdaVbGbFaCaCbGbGaDaCaCaCaCbGbFbFaCbGaCaCaDavbObfananaXbuazbAcuaPbsaCbFcpbRbXafbLbpcfaQanbWbwcaalambFbHaCbFbMaAapaXciaUbqbCbFaCaCbGaCbFbHaCaCaDaCbFaCaCaCaCbGbHaDaCbFcCcCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcCcCcCaCaCaDaCaCbGbHaCaCbFaCaCaCaCbFaDaCbFcCcCcCcCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCaCaCbGaCaCaCaCaCaCbFaCaDaDaCaCaCaQaTcobWaObJbIbpccaTabaWaOcxbIaVcc
aqcyabaFaubYbuaUbWbyaNaTbdbocbaicjbeaqafbTaucuaGbeaVbpbdaSavbdbwaWaCbFaCbManaHaAaicvbGaCaCaCbFbTaKbMaAcnbqalaUcoaVaZciaqbCaWaNaDaDaDaCaCafakbsbYbhbybmbUcjcucqbfbhccbgbzaraqbybJaGbtacaccdbmaJakbLbVaLapckalaZasbCaBbsaiaCaCbHbGaCcnbwckaGajaTaybcbqbWaRbGaDbGbHaacwblaIbgavaIbgbDaCaCaCaDbGaCaCbFaCbFaDbHaCaDaCaCbFaCbFaCaCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCbHaCaCaDbFaCbFaCbHbGaCaCaCaCbHaCbGbGcCcCcCcCcBcBcBcBcBcBcBcBcAcBcBcBcBcBcBcBbFaDaDbGaDaDbHbFbGaCaDaCaCaCaCaCbsbmauaWacaPaVcichbUaCaCbMbbcxbtbzaS
byanauazaEboaSbzbnadbwawbcahcbbwaGbUaTbfbkbUagbNctaobmaJcscbazbmaCbFbHaCcobgadcmaAalaCaCaDbHbFaFaqbVaLbhbtafbrbwbRctbpbzaZbkbEbGaCaCaCbGbtckbpccbtbBbbaSaOcqbsclbccscmaAcmbocpbcbobbaObJbMbsbXaobNbcctclbZaHcvaiadaBbMaZbgbFbHbFaCaCaTaOarcoaUbNabaZaibdaCaCbebBcfagbbapcjaSaOaqacczbGaCaDaCbGaCbFaCaCbHbHbFaCaCaCaCaCbHaCbFcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCaDaCbHaCaCaCbGaCaCaCaCaDbHaCbFaCaCaCcCcCcCcCcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBbFaCbHaCaCbGaCbFaCaCaCbGaCbFaCaCbObEckcmaZaKbobmbmbHbGbFaAbZbmbubbbT
aAcfaBbEadatbgblbKcrbJcxckbXcgbPbEavbMazaUbhbWbtaSbtbEaHaLcybubSbGbHbHbGbmaEbiadbnbcbHaCbFaDcibDbObYbaabazblcmbVbnahaqbzbdbsbQbFaCaCaCbGanaPbwblbkcmbraNchaEaJaTbAaJaEcgbUaZahaTbLasbAaHcybdaIawaYcvbxaiauchcqbuaXbtbMbpbqaCbHaDaCaCbEcxcgbRcsbUamaPaLbIckclbMczaQaJcpaFaAaJbCcycdbbbQbFbFbFaCaCaDaCaCaCaDaCaDaCbHaCaCaCaCaCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCaCaCbHaCbFaCaCbFaCaCbGaCaCaCaCbHaCaCaCaCbGbFcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBcBaCbFbGaCaCbGaCaCbGbGaCaCaCbGaCaCaGbsawbDcxbmbTalcgbGbFbGaDaCcaaFbxbA
bmaibcbwcvaicgaFauaFapaJbPbEanafbSaUasclaYbOcmaMcocbbTbDclaebCaPaPaCaCckbsaYcvbdbvbyaCbHambAbNaLclcwcybnbfbQcvaWaIanaqcwaMazaHcdaCaDaDbKaRcpbBaYavbdaNaGaebSccaabPcyaHbcaFbXaiaNakbjcacvcwbbaUaiaTbmaxabcvcjbVbgaFbWaibkaLbZaCaCbFaCaCaqaIaQbUajcsbUaVbMbZcbbBbMcabXaIbTbEaJcobjalcmbUaDaCaCaDbHbGaCaCbGaCbFaCaCaCbHaCaCaCbFcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCaCaCaCaDbHaCbFaCaCaCaDaDaDaDaCaCbFaCbGaCaDaCcBcBcBcBcBcBcBcBcBcAcAcAcBcBcBcBbFaCaCaCbGaCaCaCbHbGaCaCaCaCbFakbCbzaUbjbraqaiblbMaCaCaDaCaCaCcybfcv
ceaBbvaSbmaCcdapckaobgaEaaaTbOaEcgaYaUbEbfaSbqaGbKbjaZaXbXctaiclbMbbbgbKbIaEbaawcvakaGbDaucgaVaPbfaPbQasaRavbaaibLcrbpcdaqcxcfbvcubmajaMaUbLbvaMbQbragaFbQabbLbpaxagbPcuaJbbbYbYbNbIbyahbQcccxaRcvaTbZapalcgckcnbaavbwabbgavafaDaCbGaCbHcfccaWbSbzaqbCaQcdbZccabalbWbYajcpaTbqbKbWbdbnbGbGaCaCaCbFbGbHaCaCaDbGaCbGaDaCaCaCbHcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCbGbFaCaCaCbGbFaDaCaCaCaCaCaCaCaCaDbHbFaDaCaCaCaCaCaCaCbHbHbGaDcAcAcAaCaCbGaCaCaDaCaCaCaDbHaDaCbGbGaCaCbFaDabadbIbjbubharbwbdcjbFaCaCaCaCbGaCcvcj
byaecebTaCaCaCbGcgaPbLaMccaAcocianaLavayaIaRawbzatbZcgbZchaqaWaEbCbEbtbVaubabRbYaHbraPcgcscxagbAbaabbQctaGbpcabIaibpczbCcyafcqaLaJbDcbananascpbraIbwbXaLbbakbMbkblbPclaCaCacauaNaAcuabbPcacsaiaZcdagarbWaebYafcmbQczaobbcbbIchbGaDaCbGaCaZbLcnbRazbSaLafcdbZclcrbbaJbOcccxadawaycscraUbGaCaCaCbHbHaCbHaCbHbFaCbHbGaCbHaDaCaCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCaCaCaCbFbFaCaCaCaCbGaCaCaCaCaCaCaCaCaCbFbGaCaCaCaCaCaCaCaDbFaCcAcAcAbFaCbGcAcAcAcAcAcAcAaCaDaCbGaCbFbGaCcbbwanaxbRbeahbIbIbPbSaCaCaDaCaCbFaCaXab
bkauaHaCaCaCaCaCaKcacnambvcaaUbgajcubpbWagbuaScpbVagbIbuavbEbcbzaAaScrbiaFbRbPaYbvabcaclaPaFauaTbgbBaYaYamanbZbwaQabapbmaAaRbUbabybKbKcjaRclaLascabUcwbpaQcaagbiaAaHchaCaDahaIcpbybUboczaJaCbHaCaCaCbuaoavaXbtaqaQabbUbSaJcsafbqaCaCaCaCciaVaOckclbyaUboaGblbicvbkagbKcwaQaSaoaGaqaRavckaDaCaCbGbFbFbHaCbHbGaCaCaCaCaCbFbFaCaCaCaCbGaCbHaCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCaCaCaCaCaCaCaCaCaCaCaCaCbGbFbGaCaCaCaCbHbFbGbGaCaCbHbFaCbHaDbGaCbFbHaDaCbGaCaCbFaCaCaDaCaCaDaDaCaCaCaCbGbNcmcoafaLaTakaQaYbccebZbHbFaCaCbFaCajcc
aQcwapbGaCaCbHbWbuaUbfczabbibsblaKcjaUcyakczascoavapctaaaLaFbkasaSakbWaKcoaQbRapaEcsaLaWbJcvbVcybKbMcsaQahbYaaapawcibkaebpbtbxcccpbNaNboaUciaBbSaTbCaYaOcnbjaibmcnbvaBbjbtcxcoaLaIbaarauapaCaCbFaCbHaqbWbnaccdbJbkbnanbiacafahaHaaaCaCaCaqahbNbCbLaAcnbscaaNaFauaoaraSbJbRaqclcoarbKahcuaCaCaCaCaCbGaCaCbHaCbHaCaCaCbHaCaCaCaCaCaCaCaCaCaCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCbGbHaDaCaCaDaCaCbGaCbHaCaCbFaCaCaCbFbHaCaCaCaDaCaCbGbHaCbFaCaDbFaCaCaCbGaCaCaCbFbHaDbHaCaCaCaCbHaCbHbGaxbBaWapacbjaEadaYbmagcobqbdaCbGbHaCaCbpax
bUbtaiaebScdaicubCaVcfakcnbsbebmbfaQbUctbrbwblbOcebQaWbNbibKbZaFcobpadcsblalcxbAbRbnbuaSczaVbibmbfbUbhcmaCaCaCbGbFaCaCaCaCaCaCaCaCczaObTaKbqbYaPbfcuaLbZawauaYbcciaYbwaQavaLaYcuazaiadbbaCbFaCaCaCaCbcbWaoaZbwbAbdbCcjbcbycubZacatbwaDaCbkacbZaPbwaZbxblbvbuaOambBapaTaeaTclbBacbrceaoakbXbHaCaCbHaCaCbFaCaCaDaCbFaDbGbFaCaCaCaCaCaCaDaDaCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCbHaCaCaCaCaCbFaDaCaDaCaCaCaCbsasazbfcubGaCaCbGaDaCaCaCbFaCaCaCaCaDbFbGbGbGbGaCbHaCaCaDaDaCaCaCaCaDbFaCbhcmcabcbbcobXaLcoamcaaPaLcobbaCbFbGcfbobZ
bybZaRbSbjbaaBbvamcdaxbhbCbiascuaiawchchaeahaPblcaafbBbBcdbhavaTbwaBaaaObxbebnbmbTcecdalcnaEckbVaMbYbHaDaCaCbFaCaCaCbFbHbGbHaCaCaCaCbFbHbHaCbNcvbSatbJasancpcjbYboaVclcabWaKbVbmcibJbPcwcqbHaCbHaCbHbzbobhbmahcbanaTckaObYbLbIaJbwbhadambfbiaacdacazbabXbJbuapbXbKbnbtaKaZbTciaUccabaXahaGajaCaCbGbGaCaCbHaDaCaCbHbFbHbFaCaCaCaCaCaCbFaCbHcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCcCaCaDbHaCbHbHaCaCaCbCcrcgbXbCbsaVaEcdbrbVaUadarbFaCaCaCaCaCaCaCbHbHaCbHaCbHaCaCaCaDaCbHaCbGbGaCbFaCaCaYaGcbaubybLbBakbrbrcjbTaectbOahbCaXakbtbIcs
bybAbzbvaKccbdbBbBbKbSaEctbCaacqazcfawcbbrcwaVcoaMasagbRaaadbWbfbVaVcrcabSckbLaccubQaxbPaKccbpaGbGaCaCaCbFbFbHbHaCaCaCaCaDaCaCaCaCaCaCaCaCaCbFbHaDaSaAcvbVchbraRbEaKbJbnaoanbjcnaVabbSaCaCbFaDbGaCacczbVaAaacocobsaiaWbcbyaNaLbwcnbgawaFaucfaQbSbYaIahanauaRclaAaMcubIczbxaLbxbUbNaZaTaiaRbJaCbHaDbHaCaCaCaCaCbHaCaCbGaCbHbHaCaCaDbFbHbFbFcCcCcCcCcCcCcCcCcCcCcCcCcCaCaCaCaCaCaDaCaCaCaCaCaDagbAaSaBaMbzapbRbvbLblaxagaObKaeaicxbGbHaCbHaDaDaCaCaCbFaDaCaCaCaCaCaCaCbGaCaCaCaCaDambTaEacbgasaKaYaLaRaGbrcmbDctcabtaqakaBcuafbv
bmbzabbiambealazakaraHcmaEaKbccyasbBbnciaLadbfaQbLbzaKaBbecobTbtaCbFahbIbXcacjctbhbLauczcmbCaZaCbFaCaCaCbHaCaCaCaDaCaCaCaCaCbHaCaDaCaCaCaCaCbGbFaCaCbFaCaqbpcxbhaFbsbOaAcgbUbqchbTbpbraCaCbGaCaOcaabclbdcsbaaQaraQaQaebRajaMaNbLbMbdambuaobbacasaJaJaycxbucvaubrbObubLaubdbScsbpawcyaxckbZagaEaCaCbFaCbGaCaDaCaCaDaCaCbHaCaCbGaCbGaCaCbGbFcCcCcCcCcCcCcCcCcCcCcCcCcCbHaDaCaDaCbGbHaCaCchbBadbfbbaScxbiaJafawbTcmaPbzbkajayaobYcgaJcjbpaDaCaCbFaCbGaCaDaCaCaCaCbHbHbGaCaCaCaCaIakbVaqaKaGcdbubBbhblctcvbfaTbzaEcaaecyanbVcnbnbs
anaibMaccdbsaEboajaPaPaMbgclbubtaCaCbGaCaCaCaCaRaxaqaLcibOaEaRcybFbGaCaAaJasczbxbWbyaEanaKaDbHbHbFaCaCaCaCaCaDaCaCaCbFaCaCaCaCaCaCaCaCbGaCaCaCaCaCaCaCbHbHczbObKbTbtbKbgbmbxaucdaaajbvaCaCbXaRbebqcocjalcvajapaUakbVaCceaUbIcwaxcvbzaybeciambdcybbcnaBauakbwaKaKaFcaaqbacececbcybkbMbZbObjalaXbFaCaCaCaCaCaCaCaCaCbFaCaDaDaCaCbFaCaCaCaCaCcCcCcCcCcCcCcCcCcCcCcCcCcCaCaCaCaCbGbFbHbHcjbObBbnbKbJaNaMajbeaycgaqckcpbecbaNcdcpbZcebSamcrbzamalavaCaCaCbGbHaCaDaCaDaCbfciaXaOaSbpbjbJaZbebnaycsckcjbbcuaxbsccbCcfbncwbXbCciaebval
byaAbIbxakcibsajcpbscwaScqbaboaCaCaCaCaCbGbHaCaCaCaCchcubSaOcgbPaDaCbyaObmcoalaibxbDaVbgaWaCbFbHaCaDbHaCaCaCaCaDbHaCbHaCaCaCbFaCaCaCbGaCaCaDaCbHbFaCaCaCbGaCaCbQalaTaZcdbfccaxbNabbvafcaaxazaybBaBcscqaXbYbbbabhatchaCbFbGaIawaraFcmbCaFaGaKaJcucocraabOatbwbuaSbobLckafaObJcjbmcnaxaLbmaGblbfaFaCaCaCbFaCaCaCaCaCaCaCbHaCbFaCbFbGbGaCbHbHaCaCaCaCbHaCaCaCaCaCbFaCaCbFbHbFbHbFaDaibSaMcfcjcwclcfbnaKbIbBaXaHalbVbxaScwbVbrbmbLcdafceaNbIaQbQaBbWbtbAckaZcqbEbmbsbaaeaLcvaxabbNbBcxbxajbJazaubyblbfbQawcncmagaRcbbEaabRaBaUaibM
bkazaScnbBaMazaGaEagbCaAanbGaCaCaCaCaCaCaCbHbFbHbFbGbMbtcoaObhaOaucnaMbabSbccnbxbRbybnafahaCaDaCbFbHbHaCaCaCaDbFaCaCaCaCaCbFbHaCaDaCaCbHaCbHbGbHaCbGbHbGbFbFaCaCbFbXcrbiaGcuaebqaLbIaobhaxctccaQcubnbAbSbUbmbwabbJcraCaCbHasaFatanbZbmbYbxbObJaIcfbAbeacarbUbKcgcsbabOaYbNaJbeaIaRbzaRazaXbkcgcbcwbHbFbFaCbFaCaCaDaDaCbHaCbFaCbHaDaCaCbHaCaDbHaDaDbGaCaCbGaCbGbHbFaCaCaCbHaCbHbPbbbsaqbpccbKcoaCaCbncvafafbRaOcuabaVbzbCcybLahaYckbZbCczaZbdbJboaIcuapbXbXbPbXaybabJbdbjaMaebicoaUbubIbnbTbsaBbqcycfcbcpcrbZaRbWapbhaHbwbwcmcp