-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathad-astra.html
More file actions
1202 lines (982 loc) · 54.1 KB
/
ad-astra.html
File metadata and controls
1202 lines (982 loc) · 54.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-corrections" lang="en-corrections">
<head>
<title>Ad Astra - The Backrooms</title>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/init.combined.js"></script>
<script type="text/javascript">
var URL_HOST = 'www.wikidot.com';
var URL_DOMAIN = 'wikidot.com';
var USE_SSL = true ;
var URL_STATIC = 'https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc';
// global request information
var WIKIREQUEST = {};
WIKIREQUEST.info = {};
WIKIREQUEST.info.domain = "backrooms-wiki.wikidot.com";
WIKIREQUEST.info.siteId = 4431268;
WIKIREQUEST.info.siteUnixName = "backrooms-wiki";
WIKIREQUEST.info.categoryId = 38105090;
WIKIREQUEST.info.themeId = 1;
WIKIREQUEST.info.requestPageName = "ad-astra";
OZONE.request.timestamp = 1763643364;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "ad-astra";
WIKIREQUEST.info.pageId = 1331668647;
WIKIREQUEST.info.lang = "en-corrections";
OZONE.lang = "en-corrections";
var isUAMobile = !!/Android|webOS|iPhone|iPod|BlackBerry|IEMobile|Opera Mini/i.test(navigator.userAgent);
</script>
<script type="text/javascript">
require.config({
baseUrl: URL_STATIC + '/common--javascript',
paths: {
'jquery.ui': 'jquery-ui.min',
'jquery.form': 'jquery.form'
}
});
</script>
<meta http-equiv="content-type" content="text/html;charset=UTF-8"/>
<meta name="og:title" content="Ad Astra"/>
<meta name="og:description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:site_name" content="The Backrooms Wiki"/>
<meta name="og:type" content="article"/>
<meta name="description" content="Documenting the levels, entities, objects and phenomena of the Backrooms. You've been here before."/>
<meta name="og:image" content="http://backrooms-wiki.wikidot.com/local--files/start/opengraphhallprint.png"/>
<meta name="viewport" content="width=device-width, initial-scale=1.0"/>
<meta name="twitter:card" content="summary"/>
<meta http-equiv="content-language" content="en-corrections"/>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--javascript/WIKIDOT.combined.js"></script>
<style type="text/css" id="internal-style">
/* modules */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/css/pagerate/PageRateWidgetModule.css);
/* theme */
@import url(https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--theme/base/css/style.css);
@import url(http://backrooms-wiki.wikidot.com/local--files/component:theme/nulim-norm.min.css);
</style>
<link rel="shortcut icon" href="/local--favicon/favicon.gif"/>
<link rel="icon" type="image/gif" href="/local--favicon/favicon.gif"/>
<link rel="apple-touch-icon" href="/local--iosicon/iosicon_57.png" />
<link rel="apple-touch-icon" sizes="72x72" href="/local--iosicon/iosicon_72.png" />
<link rel="apple-touch-icon" sizes="114x114" href="/local--iosicon/iosicon.png" />
<meta name="msapplication-TileImage" content="/local--wp8icon/wp8icon.png"/>
<link rel="alternate" type="application/wiki" title="Edit this page" href="javascript:WIKIDOT.page.listeners.editClick()"/>
<script type="text/javascript">
var _gaq = _gaq || [];
_gaq.push(['_setAccount', 'UA-18234656-1']);
_gaq.push(['_setDomainName', 'none']);
_gaq.push(['_setAllowLinker', true]);
_gaq.push(['_trackPageview']);
_gaq.push(['old._setAccount', 'UA-68540-5']);
_gaq.push(['old._setDomainName', 'none']);
_gaq.push(['old._setAllowLinker', true]);
_gaq.push(['old._trackPageview']);
</script>
<script type="text/javascript">
window.google_analytics_uacct = 'UA-18234656-1';
window.google_analytics_domain_name = 'none';
</script>
<link rel="manifest" href="/onesignal/manifest.json" />
<script src="https://cdn.onesignal.com/sdks/OneSignalSDK.js" acync=""></script>
<script>
var OneSignal = window.OneSignal || [];
OneSignal.push(function() {
OneSignal.init({
appId: null,
});
});
</script>
<meta name="google-adsense-account" content="ca-pub-7805322678042888"/>
<style>
@import url('https://use.fontawesome.com/releases/v6.7.2/css/all.css');
#side-bar .side-block.languages { margin-top: 0; }
.side-block.languages .heading { margin-top: 1em; }
#side-bar .side-block.socials {
display: flex;
justify-content: space-around;
flex-direction: row;
flex-wrap: wrap;
}
#side-bar .side-block .sidebar-social {
background: rgb(var(--dark-gray-monochrome, 30, 30, 30));
color: rgb(var(--white-monochrome, 240, 240, 240));
display: inline-flex;
width: 1.25rem;
height: 1.25rem;
font-size: 1.25rem;
margin: 0.25rem;
padding: 5px;
border-radius: 5px;
text-decoration: none;
align-items: center;
justify-content: center;
transition: 0.1s;
}
#side-bar .side-block .sidebar-social:visited {
color: rgb(var(--white-monochrome, 240, 240, 240));
}
#side-bar .side-block .sidebar-social:is(:hover, :focus) {
background: rgb(var(--bright-accent, 90, 90, 90));
}
@media screen and (max-width: 56.25rem) {
#side-bar .side-block .sidebar-social {
width: 1.6rem;
height: 1.6rem;
font-size: 1.6rem;
margin: 0.3rem;
}
}
</style>
<style>
/* Site Theme */
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Anuliminal/1);
/* Collapsible Sidebar */
@import url("https://backrooms-wiki.wikidot.com/component:sidebar-theme/code/1");
/* User Flairs */
@import url("https://backrooms-wiki.wikidot.com/component:user-flairs/code/1");
</style>
<style>
@import url(https://backrooms-wiki.wdfiles.com/local--code/theme%3Astardust/1);
</style>
<style>
.flashing .collapsible-block-link {
animation: flashing 1.5s infinite;
}
@keyframes flashing {
0% { opacity: 100% }
50% { opacity: 0% }
100% { opacity: 100% }
}
</style>
<style>
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,700;1,300');
.top-box.class-Astral {
background: #90c8cf;
width: 100%;
height: 5.25rem;
box-sizing: border-box;
border: 0.65rem solid #32559f;
border-left: 0.3125rem solid #32559f;
border-right: 0.3125rem solid #32559f;
position: relative;
}
.top-box.class-Astral .gradient-box div {
display: grid;
}
.top-box.class-Astral .top-text p{
font: 2.14rem Poppins;
font-weight: bold;
color: #FFFFFF;
position: relative;
margin: 0 0.08rem;
line-height: 2.16rem;
}
.top-box.class-Astral .bottom-text p, .top-box .bottom-text:after{
font:500 italic 1.5rem Poppins;
color: #FFFFFF;
position: relative;
margin: 0 0.08rem;
line-height: 2rem;
}
.top-box.class-Astral .gradient-box{
background: linear-gradient(90deg, #32559fFF 0%, #90c8cf00 36%);
display: inline-block;
height: 105%;
width: 105%;
position: relative;
top: -1px;
}
.top-box.class-Astral:before {
content: "";
position: absolute;
background: url("https://cdn.discordapp.com/attachments/719285094107578401/783566679467884584/Untitled-12tileable.png");
mix-blend-mode: luminosity;
opacity: 0.15;
height: calc(100% + (0.65rem * 2));
width: calc(100% + (0.3125rem * 2));
top: -0.65rem;
left: -0.3125rem;
}
/* the right diamond thingy */
.top-box.class-Astral .header-diamond {
position: absolute;
background-image: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='0 0 300.9 284.5' style='enable-background:new 0 0 300.9 284.5;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2390c8cf;%7D .st1%7Bfill:%2332559f;%7D%0A%3C/style%3E%3Cg%3E%3Cpolygon class='st1' points='73.4,32.6 0,105.4 13.6,105.4 86.4,32.6 '/%3E%3Cpolygon class='st1' points='26.5,105.4 40.1,105.4 112.9,32.6 99.3,32.6 '/%3E%3C/g%3E%3Cpolyline class='st1' points='287.3,105.4 214.5,32.6 227.5,32.6 287.3,91.9 '/%3E%3Cpolygon class='st1' points='274.4,105.4 260.8,105.4 188,32.6 201.6,32.6 '/%3E%3C/svg%3E");
height: calc(284.5px / 1.13);
width: calc(300.9px / 1.13);
top: -29.5px;
right: -13px;
transition: opacity 0.5s;
}
.top-box.class-Astral .header-diamond div {
position: absolute;
-webkit-mask: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='-7.01 0 260.5 250.8' style='enable-background:new 0 0 250.5 250.8;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2390c8cf;%7D .st1%7Bfill:%2332559f;%7D%0A%3C/style%3E%3Cpath class='st0' d='M247,133.9L133.7,247.2c-4.7,4.7-12.3,4.7-17,0L3.5,133.9c-4.7-4.7-4.7-12.3,0-17L116.8,3.6 c4.7-4.7,12.3-4.7,17,0l113.3,113.3C251.7,121.6,251.7,129.2,247,133.9z'/%3E%3C/svg%3E");
mask: url("data:image/svg+xml,%3Csvg version='1.1' id='Layer_1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' x='0px' y='0px' viewBox='-7.01 0 260.5 250.8' style='enable-background:new 0 0 250.5 250.8;' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%2390c8cf;%7D .st1%7Bfill:%2332559f;%7D%0A%3C/style%3E%3Cpath class='st0' d='M247,133.9L133.7,247.2c-4.7,4.7-12.3,4.7-17,0L3.5,133.9c-4.7-4.7-4.7-12.3,0-17L116.8,3.6 c4.7-4.7,12.3-4.7,17,0l113.3,113.3C251.7,121.6,251.7,129.2,247,133.9z'/%3E%3C/svg%3E");
height: 100%;
width: 100%;
}
.top-box.class-Astral .header-diamond .diamond-color {
background: #90c8cf;
}
.top-box.class-Astral .header-diamond .diamond-pattern {
background: url("https://cdn.discordapp.com/attachments/719285094107578401/783566679467884584/Untitled-12tileable.png");
mix-blend-mode: luminosity;
opacity: 0.15;
}
.top-box.class-Astral .header-diamond .diamond-image {
background: url("http://backrooms-wiki.wdfiles.com/local--files/ad-astra/asstral") center/95% no-repeat;
}
/* bottom stuff */
.bottom-box.class-Astral {
margin: 1.5rem 0 3rem 0;
}
.bottom-box.class-Astral ul li {
font: bold 1.5rem Poppins;
color: #90c8cf;
margin: 0.2rem 0 0.2rem 0.6rem;
line-height: 1rem;
list-style: none;
}
.bottom-box.class-Astral ul li:before {
content: "";
background: #90c8cf;
display: block;
transform: rotate(45deg);
position: relative;
height: .5em;
width: .5em;
left: -1.1em;
top: 0.55em;
}
/* mobile stuff */
@media only screen and (max-width: 440px) {
.top-box.class-Astral .top-text p {
font-size: 1.6rem;
}
.top-box.class-Astral .bottom-text p, .top-box .bottom-text:after {
font-size: 1.4rem;
line-height: 1rem;
}
}
@media only screen and (max-width: 60rem) {
.top-box.class-Astral .header-diamond {
opacity: 0;
}
}
/* ==== survival difficulty classes ==== */
div[class*=class] ul li span[class$="}"] {
display: none !important;
}
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<style>
.licensebox .collapsible-block-link {
margin-left: inherit;
padding: inherit;
transition: inherit;
opacity: inherit;
color: inherit;
font-weight: inherit;
}
</style>
<style>
@import url('https://backrooms-wiki.wikidot.com/component:colstyle/code/1');
</style>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/list/ListPagesModule.js"></script>
<script type="text/javascript" src="https://d3g0gp89917ko0.cloudfront.net/v--7690939296dc/common--modules/js/pagerate/PageRateWidgetModule.js"></script>
</head>
<body id="html-body">
<div id="skrollr-body">
<a name="page-top"></a>
<div id="container-wrap-wrap">
<div id="container-wrap">
<div id="container">
<div id="header">
<h1><a href="/"><span>The Backrooms</span></a></h1>
<h2><span>You've been here before.</span></h2>
<!-- google_ad_section_start(weight=ignore) -->
<div id="search-top-box" class="form-search">
<form id="search-top-box-form" action="dummy" class="input-append">
<input id="search-top-box-input" class="text empty search-query" type="text" size="15" name="query" value="Search this site" onfocus="if(YAHOO.util.Dom.hasClass(this, 'empty')){YAHOO.util.Dom.removeClass(this,'empty'); this.value='';}"/><input class="button btn" type="submit" name="search" value="Search"/>
</form>
</div>
<div id="top-bar">
<div class="list-pages-box">
</div>
<div class="top-bar">
<ul>
<li><a href="/start">Home</a></li>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/top-rated-pages-this-month">Top Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a>
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
</ul>
</li>
<li><a href="/entities">Entities</a>
<ul>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
</ul>
</li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Community
<ul>
<li><a href="/forum:start">Forums</a></li>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/contest-archive">Contest Archive</a></li>
<li><a href="/page-of-the-week-archive">Page Of The Week Archive</a></li>
<li><a href="/featured-archive">Featured Archive</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/site-rules">Site Rules</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/art-page-policy">Art Page Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
</ul>
</li>
</ul>
</div>
<div class="mobile-top-bar">
<div class="open-menu">
<p><a href="#side-bar">≡</a></p>
</div>
<ul>
<li>Wiki
<ul>
<li><a href="/system:join">Join The Wiki</a></li>
<li><a href="/top-rated-pages">Top Pages</a></li>
<li><a href="/most-recently-created">Most Recent</a></li>
<li><a href="/lowest-rated-pages">Lowest Rated</a></li>
<li><a href="/system:page-tags">Tags</a></li>
<li><a href="/random:random-page">Random Page</a></li>
<li><a href="http://backrooms-sandbox-2.wikidot.com/">Sandbox</a></li>
<li><a href="/forum:start">Forums</a></li>
</ul>
</li>
<li>Library
<ul>
<li><a href="/normal-levels-i">Levels</a></li>
<li><a href="/unnumbered-levels">Unnumbered Levels</a></li>
<li><a href="/entities">Entities</a></li>
<li><a href="/unnumbered-entities">Unnumbered Entities</a></li>
<li><a href="/objects">Objects</a></li>
<li><a href="/phenomena">Phenomena</a></li>
<li><a href="/tales">Tales</a></li>
<li><a href="/poi-s">POI's</a></li>
<li><a href="/groups-list">Groups</a></li>
<li><a href="/canons">Canons</a></li>
<li><a href="/joke-entries">Joke Entries</a></li>
<li><a href="/themes">Themes</a></li>
<li><a href="/components">Components</a></li>
<li><a href="/translations-hub">Translations Hub</a></li>
<li><a href="/art-gallery">Art Gallery</a></li>
<li><a href="/hubs-hub">Hubs Hub</a></li>
</ul>
</li>
<li>Info Pages
<ul>
<li><a href="/discord">Discord</a></li>
<li><a href="/twitter">Twitter</a></li>
<li><a href="/tumblr">Tumblr</a></li>
<li><a href="https://linktr.ee/backroomswiki">Linktree</a></li>
<li><a href="/guide-hub">Guide Hub</a></li>
<li><a href="/greenlight-policy">Greenlight Policy</a></li>
<li><a href="/tag-guide">Tag Guide</a></li>
<li><a href="/criticism-policy">Criticism Policy</a></li>
<li><a href="/licensing-guide">Licensing Guide</a></li>
<li><a href="/image-use-policy">Image Use Policy</a></li>
<li><a href="/rewrite-policy">Rewrite Policy</a></li>
<li><a href="/deletions-policy">Deletions Guidelines</a></li>
<li><a href="/authors-pages">Authors</a></li>
<li><a href="/meet-the-staff">Meet The Staff</a></li>
</ul>
</li>
</ul>
</div>
</div>
<div id="login-status"><a href="javascript:;" onclick="WIKIDOT.page.listeners.createAccount(event)" class="login-status-create-account btn">Create account</a> <span>or</span> <a href="javascript:;" onclick="WIKIDOT.page.listeners.loginClick(event)" class="login-status-sign-in btn btn-primary">Sign in</a> </div>
<div id="header-extra-div-1"><span></span></div><div id="header-extra-div-2"><span></span></div><div id="header-extra-div-3"><span></span></div>
</div>
<div id="content-wrap">
<div id="side-bar">
<div class="side-block socials"><a class="sidebar-social fa-brands fa-x-twitter" href="/twitter"><span style="font-size:0%;">Twitter</span></a><a class="sidebar-social fa-brands fa-discord" href="/discord"><span style="font-size:0%;">Discord</span></a><a class="sidebar-social fa-brands fa-facebook" href="https://www.facebook.com/profile.php?id=61575995663725/"><span style="font-size:0%;">Facebook</span></a><a class="sidebar-social fa-brands fa-instagram" href="https://www.instagram.com/backrooms.wikidot/"><span style="font-size:0%;">Instagram</span></a><a class="sidebar-social fa-brands fa-bluesky" href="https://bsky.app/profile/ts.thebackrooms.wiki/"><span style="font-size:0%;">Bluesky</span></a><a class="sidebar-social fa-brands fa-tumblr" href="/tumblr"><span style="font-size:0%;">Tumblr</span></a></div>
<div class="side-block">
<div class="menu-item"><a href="/">Main</a> | <a href="/forum:start">Forum</a></div>
</div>
<div class="side-block">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">For New Users</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">– hide block</a></div>
<div class="collapsible-block-content">
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
<div class="menu-item">
<p><a href="/greenlight-policy">Greenlight Policy</a></p>
</div>
<div class="menu-item">
<p><a href="http://backrooms-wiki.wikidot.com/forum/c-6898685/introductions">Forum: Introduce Yourself</a></p>
</div>
</div>
</div>
</div>
</div>
<div class="side-block languages"><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div><div class="list-pages-box">
</div></div>
<div class="side-block">
<div class="heading">
<p><strong>Library</strong></p>
</div>
<div class="menu-item">
<p><a href="/normal-levels-i">Levels</a>|<a href="/unnumbered-levels">Unnumbered Levels</a></p>
</div>
<div class="menu-item">
<p><a href="/entities">Entities</a>|<a href="/unnumbered-entities">Unnumbered Entities</a></p>
</div>
<div class="menu-item">
<p><a href="/phenomena">Phenomena</a>|<a href="/objects">Objects</a>|<a href="/tales">Tales</a></p>
</div>
<div class="menu-item">
<p><a href="/poi-s">POI's</a>|<a href="/groups-list">Groups</a>|<a href="/canons">Canons</a></p>
</div>
<div class="menu-item">
<p><a href="/joke-entries">Joke Pages</a>|<a href="/themes">Themes</a>|<a href="/components">Components</a></p>
</div>
<div class="menu-item">
<p><a href="/art-gallery">Art Gallery</a>|<a href="/hubs-hub">Hubs Hub</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Wiki</strong></p>
</div>
<div class="menu-item">
<p><a href="/how-many-pages">How Many Pages?</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-this-month">Top Rated New Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages-by-year">Top Pages by Year</a></p>
</div>
<div class="menu-item">
<p><a href="/top-rated-pages">Top Pages of All Time</a></p>
</div>
<div class="menu-item">
<p><a href="/most-recently-created">Newly Created Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/underread-and-underrated">Underread Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/random:random-page">Random Page</a></p>
</div>
<div class="menu-item">
<p><a href="/lowest-rated-pages">Lowest Rated Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/system:page-tags">Tags</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Community</strong></p>
</div>
<div class="menu-item">
<p><a href="/system:join">Join The Wiki</a></p>
</div>
<div class="menu-item">
<p><a href="/forum:start">Forum</a> - <a href="/forum:recent-posts">New Posts</a></p>
</div>
<div class="menu-item">
<p><a href="/translations-hub">Translations Hub</a></p>
</div>
<div class="menu-item">
<p><a href="/authors-pages">Authors' Pages</a></p>
</div>
<div class="menu-item">
<p><a href="/meet-the-staff">Meet The Staff</a></p>
</div>
</div>
<div class="side-block">
<div class="heading">
<p><strong>Resources</strong></p>
</div>
<div class="menu-item">
<p><a href="/faq">FAQ</a></p>
</div>
<div class="menu-item">
<p><a href="/guide-hub">Guide Hub</a></p>
</div>
<div class="menu-item">
<p><a href="http://www.backrooms-sandbox-2.wikidot.com">Sandbox</a></p>
</div>
<div class="menu-item">
<p><a href="/system:recent-changes">Recent Changes</a></p>
</div>
<div class="menu-item">
<p><a href="/site-rules">Site Rules</a></p>
</div>
</div>
<div style="clear:both; height: 0px; font-size: 1px"></div>
<p><a class="open-menu" href="#side-bar"><br /></a></p>
<a class="close-menu" href="##"><br />
<img src="https://scp-wiki.wdfiles.com/local--files/nav:side/black.png" style="z-index:-1; opacity: 0.3;" alt="black.png" class="image" /><br /></a>
</div>
<!-- google_ad_section_end -->
<div id="main-content">
<div id="action-area-top"></div>
<div id="page-title">
Ad Astra
</div>
<div id="page-content">
<div style="text-align: right;"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+69</span></span><span class="rateup btn btn-default"><a title="I like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, 1)">+</a></span><span class="ratedown btn btn-default"><a title="I don't like it" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.rate(event, -1)">–</a></span><span class="cancel btn btn-default"><a title="Cancel my vote" href="javascript:;" onclick="WIKIDOT.modules.PageRateWidgetModule.listeners.cancelVote(event)">x</a></span></div></div>
<div class="flashing" style="text-align: center">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">EMERGENCY BROADCAST – 01/26/22 at 2:45 PM</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">Stop Broadcast</a></div>
<div class="collapsible-block-content"></div>
<div class="lightblock">
<h1 id="toc0"><span><span style="color:red">⚠️SECURITY NOTICE⚠️</span></span></h1>
<hr />
<p><strong><a href="/the-m-e-g">The M.E.G.</a> has issued this warning for all wanderers currently residing in <a href="/level-78">Level 78</a>. Failure to adhere to the following message will likely result in death. Ignore it at your own risk.</strong></p>
<p>The stability of Level 78 has been compromised — any people still inside the level are encouraged to enter the closest airlock possible. As a result of variations in gravity caused by an <a href="/entity-52">unforeseen electromagnetic pulse</a>, the station is currently on a collision course with a rupture in the space-time continuum. Attempts to alter the trajectory have failed, so the only option now is evacuation. Upon collision, which is expected to happen sometime between 2:00 to 6:00 AM on 07/26/22, Level 78's space station is likely to disintegrate completely, making it unfit for life.</p>
<p>We urge wanderers to refrain from viewing or photographing the anomaly. The intense light emitted can potentially overstimulate the receptors in the eye, causing neuron damage and permanent blindness. Camera lenses will fry in seconds when exposed to the light, although taking a quick picture is still possible. Ultimately, for the safety of everyone involved, please do not stare at the anomaly, let alone attempt to explore it. We are not responsible for the loss of vision or life caused by willful ignorance.</p>
<p><span style="white-space: pre-wrap;"> </span></p>
<div class="image-container aligncenter"><img src="https://backrooms-wiki.wdfiles.com/local--files/ad-astra/log" style="width:100px;" alt="log " class="image" /></div>
<div style="text-align: center;">
<h6 id="toc1"><span><tt>M.E.G. - To The Stars</tt></span></h6>
</div>
</div>
<br />
<div style="text-align: left;">
<p><span style="white-space: pre-wrap;"> </span></p>
<div class="top-box class-Astral color-90c8cf">
<div class="header-diamond">
<div class="diamond-color class-Astral color-90c8cf"></div>
<div class="diamond-pattern"></div>
<div class="diamond-image class-Astral url("http://backrooms-wiki.wdfiles.com/local--files/ad-astra/asstral")"></div>
</div>
<div class="gradient-box">
<div class="top-text">
<p>SURVIVAL DIFFICULTY:</p>
</div>
<div class="bottom-text">
<p>Class Astral</p>
</div>
</div>
</div>
<div class="bottom-box class-Astral">
<ul>
<li>Cosmic Anomaly</li>
<li>Spacetime-Altering Properties</li>
<li>Potential for Celestial Lifeforms</li>
</ul>
</div>
<p><strong>Blip-03</strong>, codenamed "Ad Astra" by M.E.G. researcher Dr. Hawkins for its relative proximity to multiple star clusters, is a distortion of space and time located within <a href="/level-78">Level 78</a>. It is expected to annihilate what remains of Level 78's space station following an energy wave's destruction of the station's devices on 01/19/22.</p>
<h1 id="toc2"><span><strong>Description</strong></span></h1>
<div class="scp-image-block block-right" style="width:300px;"><img src="http://backrooms-wiki.wdfiles.com/local--files/ad-astra/picture1" style="width:300px;" alt="Missing alt text." class="image" />
<div class="scp-image-caption" style="width:300px; displ{$captionless}y:none;">
<p><strong>Ad Astra emitting microwaves. Notice the grainy quality.</strong></p>
</div>
</div>
<p><strong>Ad Astra</strong> currently poses a threat to all organic matter inside Level 78. With an approximate diameter of 7.6 million kilometers, its estimated volume of 229.8 million km<sup>3</sup> far exceeds the size of the space station in Level 78, which is estimated to be no more than 50 million km<sup>3</sup>. Based on short video clips and eyewitnesses,<sup class="footnoteref"><a id="footnoteref-1" href="javascript:;" class="footnoteref" onclick="WIKIDOT.page.utils.scrollToReference('footnote-1')">1</a></sup> <strong>Ad Astra</strong> appears white to the human eye, with streaks of rainbow-colored light surrounding the main body.</p>
<p>Occasionally, <strong>Ad Astra</strong> will emit beams of microwave radiation without warning — the only indication of an incoming beam is a sudden increase in the anomaly's brightness. However, if one witnesses this occurrence, the beams will have already reached the station since microwaves and visible light travel at the same speed. Upon penetrating the station, these beams will temporarily disable all electronic communications for several seconds before the system reboots. Although generally harmless in the long run, these beams will cause wanderers to hear clicking noises<sup class="footnoteref"><a id="footnoteref-2" href="javascript:;" class="footnoteref" onclick="WIKIDOT.page.utils.scrollToReference('footnote-2')">2</a></sup> as a natural consequence of inner ear exposure to microwave radiation.</p>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">URGENT NOTICE – 01/27/22 at 2:00 PM</a><a href="javascript:;">Close Notice</a></div>
</div>
<div class="colmod-content">
<div class="lightblock">
<h1 id="toc3"><span><span style="color:red">⚠️CORRECTION TO PREVIOUS BROADCAST⚠️</span></span></h1>
<hr />
<p><strong>Failure to account for gravitational time dilation has resulted in a mistake in the expected collision date. Collision is still expected in 6 months for those outside of Level 78, but those inside the space station can expect collision in exactly 2 hours from the reception of this message. At the strength of gravity the station is experiencing, every second spent there equates to approximately 36 minutes in <a href="/level-11">Level 11</a>.</strong></p>
<p>Those who still have not evacuated are urged to do so. Time is running out.<br />
<span style="white-space: pre-wrap;"> </span></p>
<div class="image-container aligncenter"><img src="https://backrooms-wiki.wdfiles.com/local--files/ad-astra/log" style="width:100px;" alt="log" class="image" /></div>
<div style="text-align: center;">
<h6 id="toc4"><span><tt>M.E.G. - To The Stars</tt></span></h6>
</div>
</div>
</div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>
</ul>
</div>
<div style="text-align: left;">
<div class="scp-image-block block-right" style="width:300px;"><img src="http://backrooms-wiki.wdfiles.com/local--files/ad-astra/fail" style="width:300px;" alt="Missing alt text." class="image" />
<div class="scp-image-caption" style="width:300px; displ{$captionless}y:none;">
<p><strong>Attempted thermal reading on Ad Astra. Resulting image shows signs of corruption.</strong></p>
</div>
</div>
<p>Researchers' attempts to gather information on the properties of <strong>Ad Astra</strong> have been largely unsuccessful. Its reality-warping mechanisms do not abide by the laws of physics, so contemporary tools for predicting the potential consequences of a collision do not function correctly. Readings are frequently corrupted by unexplained deviations — it is unknown whether the microwaves or the strong gravitational field contribute to these discrepancies.</p>
<p>Regardless, researchers have come to a broad consensus concerning the result of a collision — destruction is imminent. The methods by which <strong>Ad Astra</strong> destroys matter (and anti-matter) are highly debated. Some researchers believe that matter entering the anomaly will simply cease to exist, while others believe that matter entering the anomaly will break down into quarks and be absorbed as fuel.</p>
</div>
<br />
<div style="text-align: left;">
<h2 id="toc5"><span>M.E.G. Researchers Report #823 — The Noises of Ad Astra</span></h2>
<blockquote>
<p><strong>Released By:</strong> Dr. Hawkins<br />
<strong>Published:</strong> February 7, 2022<br />
<strong>Subject:</strong> Ad Astra's Microwaves</p>
<hr />
<p>As proven in previous studies, Ad Astra emits several microwaves; the resulting heat causes expansion in the inner ear, which is responsible for the unusual clicking sounds wanderers hear in the moments after a surge. However, we have made a discovery that is inconsistent with current scientific knowledge of microwaves — every wanderer experiences the same clicking sounds at the same time, and each surge produces the same sounds. This should not be possible, as variations between wanderers in the structure of their inner ears should, in theory, cause every wanderer to experience a different noise.</p>
<p>Upon further inspection, it appears that the sounds mimic Morse code. Our researchers, after several attempts, have successfully translated the clicking sounds into Morse code, which has then been translated to English.</p>
<blockquote>
<p><strong><span style="white-space: pre-wrap;">. ...- . .-. -.-- / .- -. --. . .-.. / .. ... / - . .-. .-. .. ..-. -.-- .. -. --.</span></strong></p>
</blockquote>
<p>The message translates to "every angel is terrifying", a direct quote from the <em>Duino Elegies</em> by Rainer Maria Rilke, which primarily focus on existential suffering.</p>
<p>Our researchers do not believe this is coincidental and will follow up later on the supposed implications this may have on Ad Astra's current classification as a Sub-Layer.</p>
</blockquote>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">FINAL WARNING – 01/27/22 at 3:45 PM</a><a href="javascript:;">Close Notice</a></div>
</div>
<div class="colmod-content">
<div class="lightblock">
<h1 id="toc6"><span><span style="color:red">⚠️COLLISION IMPENDING⚠️</span></span></h1>
<hr />
<p><strong>This will be the final broadcast the M.E.G. sends before communications fall silent.</strong></p>
<p>We presume that everyone refusing to evacuate is willingly accepting their fate. However, we will detail Level 78's exit procedures one last time to minimize preventable loss of life. If you have delayed evacuation, this is your last chance to escape. Please follow these five simple steps:</p>
<div style="text-align: left;">
<ol>
<li>Find the closest pod bay. These semicircular rooms are located throughout the station and contain several airlocks labelled with a green EXIT sign.</li>
<li>Enter an airlock — verify that a usable porthole exists.</li>
<li>Look through the porthole. If you hear voices in your head or see nothing but the vacuum of space, leave the airlock immediately and find a different one.</li>
<li>Repeat Steps 2 and 3 until you find a porthole view displaying a city street.</li>
<li>Open the porthole, and step onto the streets of <a href="/level-11">Level 11</a>.</li>
</ol>
</div>
<br />
For any M.E.G. operatives still standing in Level 78, we thank you for your service.<br />
You will be missed dearly.<br />
<span style="white-space: pre-wrap;"> </span>
<div class="image-container aligncenter"><img src="https://backrooms-wiki.wdfiles.com/local--files/ad-astra/log" style="width:100px;" alt="log" class="image" /></div>
<div style="text-align: center;">
<h6 id="toc7"><span><tt>M.E.G. - To The Stars</tt></span></h6>
</div>
</div>
</div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>
</ul>
</div>
<div style="text-align: left;">
<h1 id="toc8"><span><strong>Entrances and Exits</strong></span></h1>
<h3 id="toc9"><span>Entrances</span></h3>
<p>The M.E.G. strongly advises against entering the anomaly, but those who wish to out of stubborn curiosity can stay inside <a href="/level-78">Level 78</a> until Ad Astra engulfs the station. Keep in mind that their fates after entry will be uncertain, and the M.E.G. will declare them dead until evidence emerges confirming their survival.</p>
<h3 id="toc10"><span>Exits</span></h3>
<p>Based on preliminary research suggesting that wanderers are killed upon entry, the M.E.G. has concluded that finding an exit is nearly impossible. Even if this research is incorrect, there is no evidence suggesting that anything has ever escaped Ad Astra.</p>
<h2 id="toc11"><span>Archived Audio Log #1032 — 01/27/22</span></h2>
<div class="dark-styled-quote">
<p>The following audio log is from M.E.G. Operative Paul Segal, who stayed behind in Level 78 to persuade any remaining wanderers to evacuate before the collision with Ad Astra. While the recorder was lost to Ad Astra, our M.E.G. database has successfully preserved the log.</p>
<hr />
<p><strong><Begin Log></strong></p>
<p><strong>Segal:</strong> This is Operative Segal, reporting from Level 78. Everyone has been evacuated as of T minus 2 minutes. Took some persuasion and a tad bit of coercion, but ultimately, everyone followed me to the exit. Now to—</p>
<p><em>[A loud explosion can be heard, followed by a thud.]</em></p>
<p><em>[The station's emergency alarm begins to blare.]</em></p>
<p><em>[Screaming can be heard in the distance. Fast-paced footsteps can be heard.]</em></p>
<p><strong>Segal [under his breath]:</strong> Damnit. We've made contact.</p>
<p><em>[He pauses.]</em></p>
<p><strong>Segal [yelling]:</strong> What the hell are you waiting for? Get out! Don't wait for me!</p>
<p><em>[More fast-paced footsteps can also be heard. The alarm continues to blare.]</em></p>
<p><strong>Segal:</strong> As I was saying — the station is shaking violently, and gravity appears to be… all over the place.</p>
<p><em>[More explosions can be heard, followed by several more thuds.]</em></p>
<p><em>[Segal yelps in pain.]</em></p>
<p><strong>Segal [growing quieter]:</strong> Shoot. I dropped the reco–</p>
<p><em>[Loud clanging of metal can be heard; Segal's voice has been completely drowned out.]</em></p>
<p><em>[The alarms and metal noises continue for approximately 14 seconds.]</em></p>
<p><em>[A deafening high-frequency beep can be heard.]</em></p>
<p><em>[A conglomeration of several explosions, metal, and alarms can be heard.]</em></p>
<p><em>[All the sounds stop, replaced by seventeen clicking sounds in inconsistent fashion.]</em></p>
<p><em>[The noises resume, continuing for a minute before stopping suddenly again.]</em></p>
<p><em>[3 seconds of silence follow.]</em></p>
<p><em>[The alarms and the scraping of metal resume.]</em></p>
<p><strong>??? [in the distance]:</strong> John, are you seeing thi–</p>
<p><em>[A series of loud water splashes follow.]</em></p>
<p><strong>??? [muffled]:</strong> –like a whole hunk of metal just fell fro–</p>
<p><em>[Static.]</em></p>
<p><em>[A muffled explosion can be heard.]</em></p>
<p><strong>??? [growing quieter and more muffled]:</strong> Should we explo–</p>
<p><em>[Static.]</em></p>
<p><strong>??? [barely audible, heavily distorted]:</strong> –came out of some portal thi–</p>
<p><em>[Static.]</em></p>
<p><strong>??? [almost unintelligible]:</strong> –that appeared(?) [???] sky–</p>
<p><em>[Static.]</em></p>
<p><strong><Communications Lost></strong></p>
</div>
</div>
</div>
</div>
</div>
<hr />
<div style="text-align: right;">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">Author</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">Hide Information</a></div>
<div class="collapsible-block-content">
<p>Written by <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/sky3" onclick="WIKIDOT.page.listeners.userInfo(7870251); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=7870251&amp;size=small&amp;timestamp=1758382363" alt="Sky3" style="background-image:url(https://www.wikidot.com/userkarma.php?u=7870251)" /></a><a href="http://www.wikidot.com/user:info/sky3" onclick="WIKIDOT.page.listeners.userInfo(7870251); return false;">Sky3</a></span> (<a href="/the-skyrooms">Author Page</a>)</p>
</div>
</div>
</div>
</div>
<div class="footer-wikiwalk-nav">
<div style="text-align: center;">
<p>« <a href="/level-78">Level 78</a> | Ad Astra</p>
</div>
</div>
<div class="licensebox">
<div class="collapsible-block">
<div class="collapsible-block-folded"><a class="collapsible-block-link" href="javascript:;">‡ Licensing / Citation</a></div>
<div class="collapsible-block-unfolded" style="display:none">
<div class="collapsible-block-unfolded-link"><a class="collapsible-block-link" href="javascript:;">‡ Hide Licensing / Citation</a></div>
<div class="collapsible-block-content">
<p>Cite this page as:</p>
<div class="list-pages-box"> <div class="list-pages-item">
<blockquote>
<p>"<a href="/ad-astra">Ad Astra</a>" by Sky3, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/ad-astra">https://backrooms-wiki.wikidot.com/ad-astra</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</p>
</blockquote>
</div>
</div>
<div class="colmod-block">
<ul>
<li class="folded">
<ul>
<li style="list-style: none">_</li>
</ul>
<div class="colmod-link-top">
<div class="foldable-list-container"><a href="javascript:;">+ Embed citation as HTML</a><a href="javascript:;">- Embed citation as HTML</a></div>
</div>
<div class="colmod-content"><div class="list-pages-box"> <div class="list-pages-item">
<div class="code" style="user-select: all;">
<p><span style="white-space: pre-wrap;">"<a href="https://backrooms-wiki.wikidot.com/ad-astra">Ad Astra</a>" by Sky3, from the <a href="http://backrooms-wiki.wikidot.com/">Backrooms Wiki</a>. Source: <a href="https://backrooms-wiki.wikidot.com/ad-astra">https://backrooms-wiki.wikidot.com/ad-astra</a>. Licensed under <a href="https://creativecommons.org/licenses/by-sa/3.0/">CC-BY-SA-3.0</a>.</span></p>
</div>
</div>
</div></div>
<div>
<div class="foldable-list-container"></div>
</div>
</li>