-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy patha-late-letter-to-a-late-friend-1.html
More file actions
1353 lines (1169 loc) · 92.3 KB
/
a-late-letter-to-a-late-friend-1.html
File metadata and controls
1353 lines (1169 loc) · 92.3 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>A Late Letter to a Late Friend - 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 = "a-late-letter-to-a-late-friend";
OZONE.request.timestamp = 1763711678;
OZONE.request.date = new Date();
WIKIREQUEST.info.lang = 'en-corrections';
WIKIREQUEST.info.pageUnixName = "a-late-letter-to-a-late-friend";
WIKIREQUEST.info.pageId = 1458610408;
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="A Late Letter to a Late Friend"/>
<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(https://backrooms-wiki.wikidot.com/component:theme/code/1);
</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>
.isle {
color:#b56777;
}
.footnotes-footer {
display:none;
}
.islequote {
border: #fcf0f4 inset 2px;
background-color: #f5dfe6;
margin: .5em 40px;
padding: 0 1em;
}
.islespan {
border: #fcf0f4 inset 2px;
background-color: #f5dfe6;
}
.kat {
color:#67B5A5;
}
.footnotes-footer {
display:none;
}
.katquote {
border: #F0FCF8 inset 2px;
background-color: #DFF4ED;
margin: .5em 40px;
padding: 0 1em;
}
</style>
<style>
.creditRate {
float: right;
}
</style>
<style>
#u-infobox {
opacity: 0 !important;
pointer-events: none;
will-change: opacity;
transition: 0.2s;
display: flex;
width: 100vw;
height: 100vh;
top: 0;
left: 0;
position: fixed;
z-index: 20;
background-color: rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.5);
justify-content: center;
align-items: center;
}
#page-content div.rate-box-with-credit-button > .creditButton > p > a::after {
background-color: rgb(var(--swatch-primary));
}
#u-infobox:target {
opacity: 1 !important;
pointer-events: unset;
}
.infobox-title {
--wght: 800;
display: flex;
justify-content: flex-start;
margin: 0;
padding: 1.5ex 1.25rem;
background-color: rgb(var(--modal-header-bg, var(--swatch-primary-darker)));
background-image: linear-gradient(125deg,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 25%,transparent 25%,transparent 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 50%,rgba(var(--modal-header-stripe, var(--swatch-primary)),.75) 75%,transparent 75%,transparent 100%);
background-size: 3rem 4.35rem;
color: rgb(var(--modal-header-txt, var(--swatch-text-secondary-color)));
font-family: var(--header-font);
font-size: 1.5em;
font-weight: var(--wght);
line-height: 1ex;
text-transform: uppercase;
}
.infobox {
display: grid;
width: 60vw;
border: 0;
background-color: rgb(var(--modal-bg, var(--white-monochrome)));
box-shadow: inset 0 0 0 .125rem rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25),.5rem .25rem 1rem 0 rgba(var(--swatch-alternate-color, var(--gray-monochrome)),.25);
color: rgb(var(--modal-body-text, var(--swatch-text-general)));
}
.infobox-footer {
width: 100%;
margin: 1rem 0 1em;
padding: 1rem 1rem 0 0;
box-shadow: 0-.0625rem 0 0 rgba(var(--modal-header-stripe, var(--swatch-primary)),.2);
text-align: right;
}
.infobox-title p, .infobox-footer p {
all: unset;
}
.infobox-body {
display: grid;
margin: 0 1rem;
padding: 0;
}
</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">
A Late Letter to a Late Friend
</div>
<div id="page-content">
<div class="creditRate">
<div class="rateBox">
<div class="rate-box-with-credit-button"><div class="page-rate-widget-box"><span class="rate-points">rating: <span class="number prw54353">+17</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 class="creditButton">
<p><a class="fa fa-info" href="#u-infobox"></a></p>
</div>
</div>
</div>
</div>
<br />
<div style="clear:both; height: 0px; font-size: 1px"></div>
<div id="u-infobox" style="z-index: 999;">
<div class="infobox">
<div class="infobox-title">
<p>Info</p>
</div>
<div class="infobox-body">
<div style="max-height: 60vh; overflow: auto; z-index: 999;">
<p>Taking the Terminator Dark Fate approach.</p>
<p>For anyone confused about potential continuity errors with other pages, I want to state that before going into making this page I knew <em>nothing</em> about Nostalgi lore other than the extreme basics. For my research, I only looked into the lore presented in <a href="/level-404">Level 404</a>, <a href="/a-river">A River</a>, <a href="/nostalgi-gaius">Nostalgi Gaius</a>, and elements from <a href="/eden-g">Eden G</a> that have been retrofitted to fit my vision for this page. There is also a degree of changes done to make this tale fit more in my own canon, but hopefully that's not as obvious.</p>
<p>To keep this page not only disconnected from the Pantheon, but also from pages that could be potentially inspired by the Pantheon, I ignored all other work using Gaius to ensure I wouldn't be influenced either. Sorry!</p>
<p>Written by <a href="/greggita-mahayfio">Boring Talkings</a>. >:-[<br />
This is also a secret santa for <span class="printuser avatarhover"><a href="http://www.wikidot.com/user:info/centurys-lute" onclick="WIKIDOT.page.listeners.userInfo(8580783); return false;"><img class="small" src="https://www.wikidot.com/avatar.php?userid=8580783&amp;size=small&amp;timestamp=1761062227" alt="centurys lute" style="background-image:url(https://www.wikidot.com/userkarma.php?u=8580783)" /></a><a href="http://www.wikidot.com/user:info/centurys-lute" onclick="WIKIDOT.page.listeners.userInfo(8580783); return false;">centurys lute</a></span>!</p>
<table class="wiki-content-table">
<tr>
<th></th>
<th><span style="font-size:70%;">Other pages by me</span></th>
</tr>
<tr>
<th>Levels</th>
<td><a href="http://backrooms-wiki.wikidot.com/level-2">Level 2</a> | <a href="http://backrooms-wiki.wikidot.com/level-4-4">Level 4.4</a> | <a href="http://backrooms-wiki.wikidot.com/level-11">Level 11</a> | <a href="http://backrooms-wiki.wikidot.com/level-13">Level 13</a> | <a href="http://backrooms-wiki.wikidot.com/level-19">Level 19</a> | <a href="http://backrooms-wiki.wikidot.com/level-22">Level 22</a> | <a href="http://backrooms-wiki.wikidot.com/level-25">Level 25</a> | <a href="http://backrooms-wiki.wikidot.com/level-38">Level 38</a> | <a href="http://backrooms-wiki.wikidot.com/level-41">Level 41</a> | <a href="http://backrooms-wiki.wikidot.com/level-74">Level 74</a> | <a href="http://backrooms-wiki.wikidot.com/level-82">Level 82</a> | <a href="http://backrooms-wiki.wikidot.com/level-100">Level 100</a> | <a href="http://backrooms-wiki.wikidot.com/level-106">Level 106</a> | <a href="http://backrooms-wiki.wikidot.com/level-108">Level 108</a> | <a href="http://backrooms-wiki.wikidot.com/level-111">Level 111</a> | <a href="http://backrooms-wiki.wikidot.com/level-120">Level 120</a> | <a href="http://backrooms-wiki.wikidot.com/level-134">Level 134</a> | <a href="http://backrooms-wiki.wikidot.com/level-145">Level 145</a> | <a href="http://backrooms-wiki.wikidot.com/level-174">Level 174</a> | <a href="http://backrooms-wiki.wikidot.com/level-179">Level 179</a> | <a href="http://backrooms-wiki.wikidot.com/level-185">Level 185</a> | <a href="http://backrooms-wiki.wikidot.com/level-196">Level 196</a> | <a href="http://backrooms-wiki.wikidot.com/level-206">Level 206</a> | <a href="http://backrooms-wiki.wikidot.com/level-208">Level 208</a> | <a href="http://backrooms-wiki.wikidot.com/level-320">Level 320</a> | <a href="http://backrooms-wiki.wikidot.com/level-368">Level 368</a> | <a href="http://backrooms-wiki.wikidot.com/level-369">Level 369</a> | <a href="http://backrooms-wiki.wikidot.com/level-370">Level 370</a> | <a href="http://backrooms-wiki.wikidot.com/level-371">Level 371</a> | <a href="http://backrooms-wiki.wikidot.com/level-409">Level 409</a> | <a href="http://backrooms-wiki.wikidot.com/level-421">Level 421</a> | <a href="http://backrooms-wiki.wikidot.com/level-427">Level 427</a> | <a href="http://backrooms-wiki.wikidot.com/level-445">Level 445</a> | <a href="http://backrooms-wiki.wikidot.com/level-511">Level 511</a> | <a href="http://backrooms-wiki.wikidot.com/level-557">Level 557</a> | <a href="http://backrooms-wiki.wikidot.com/level-587">Level 587</a> | <a href="http://backrooms-wiki.wikidot.com/level-600">Level 600</a> | <a href="http://backrooms-wiki.wikidot.com/level-602">Level 602</a> | <a href="http://backrooms-wiki.wikidot.com/level-603">Level 603</a> | <a href="http://backrooms-wiki.wikidot.com/level-605">Level 605</a> | <a href="http://backrooms-wiki.wikidot.com/level-606">Level 606</a> | <a href="http://backrooms-wiki.wikidot.com/level-607">Level 607</a> | <a href="http://backrooms-wiki.wikidot.com/level-608">Level 608</a> | <a href="http://backrooms-wiki.wikidot.com/level-609">Level 609</a> | <a href="http://backrooms-wiki.wikidot.com/level-669">Level 669</a> | <a href="http://backrooms-wiki.wikidot.com/level-713">Level 713</a> | <a href="http://backrooms-wiki.wikidot.com/level-790">Level 790</a> | <a href="http://backrooms-wiki.wikidot.com/level-812">Level 812</a> | <a href="http://backrooms-wiki.wikidot.com/level-910">Level 910</a> | <a href="http://backrooms-wiki.wikidot.com/level-948">Level 948</a> | <a href="http://backrooms-wiki.wikidot.com/level-998">Level 998</a> | <a href="http://backrooms-wiki.wikidot.com/level-999">Level 999</a> | <a href="http://backrooms-wiki.wikidot.com/blue-channel">Blue Channel</a> | <a href="http://backrooms-wiki.wikidot.com/middlesorts">The Middlesorts</a> | <a href="http://backrooms-wiki.wikidot.com/the-frontrooms">The Frontrooms</a> | <a href="http://backrooms-wiki.wikidot.com/pa98">PA98</a> |</td>
</tr>
<tr>
<th>Entities</th>
<td><a href="http://backrooms-wiki.wikidot.com/entity-1">Entity 1</a>* | <a href="http://backrooms-wiki.wikidot.com/entity-40">Entity 40</a> | <a href="http://backrooms-wiki.wikidot.com/hypothetical-creator">Hypothetical Creator</a> |</td>
</tr>
<tr>
<th>Phenomena</th>
<td><a href="https://backrooms-wiki.wikidot.com/phenomenon-31">Phenomenon 31</a> |</td>
</tr>
<tr>
<th>Objects</th>
<td><a href="http://backrooms-wiki.wikidot.com/object-22">Object 22</a> |</td>
</tr>
<tr>
<th>Tales</th>
<td><a href="http://backrooms-wiki.wikidot.com/a-late-letter-to-a-late-friend">A Late Letter to a Late Friend</a> | <a href="http://backrooms-wiki.wikidot.com/case-closed">Case Closed</a> | <a href="http://backrooms-wiki.wikidot.com/j-doe-and-his-night-with-your-mom">J. Doe and His Night With Your Mom</a> | <a href="http://backrooms-wiki.wikidot.com/permission-overwritten">Permission Overwritten</a> | <a href="http://backrooms-wiki.wikidot.com/the-war-for-scene-011">The War For Scene-01.1</a> |</td>
</tr>
<tr>
<th>The playground</th>
<td><a href="http://boringtalkingsandbox.wikidot.com">Click me!</a> |</td>
</tr>
</table>
</div>
<div class="infobox-footer">
<p><a class="button btn" href="###">Close</a></p>
</div>
</div>
</div>
</div>
<div class="lightblock">
<hr />
<h3 id="toc0"><span><Begin Transcript at: 03:04PM></span></h3>
<p><strong>Date:</strong> 22/05/16<br />
<strong>Location:</strong> <a href="/level-1">Level 1</a>, Base Alpha, The Overseers collective office space.<br />
<strong>Person/People of Note:</strong> Kat Zimals, Derek Jett.</p>
<hr />
<p><strong>Kat Zimals:</strong> <em>Gone</em>? Gone where??</p>
<p><strong>Derek Jett:</strong> I-I-I don't know-? I just got told they're not in their office and that… their office is weird.</p>
<p><strong>Kat Zimals:</strong> Weird <em>how</em>.</p>
<p><strong>Derek Jett:</strong> I don't know, just… Weird. Strange. I dunno.</p>
<p><strong>Kat Zimals:</strong> <em>Describe</em> it. What's going on in it. Don't pussyfoot around it.</p>
<p><strong>Derek Jett:</strong> It- there's some odd shapes around their office. Their chair, mostly, I guess.</p>
<p><strong>Kat Zimals:</strong> <em>Get out of my fucking way.</em></p>
<p><em>[Kat Zimals got up off of her chair, thankful that the other two Overseers weren't present to see how she was reacting and to see how her chair fell over behind her. She grabbed a few items from her desk, primarily her phone and a <a href="/object-14">Scaraback</a>, and brushed by Derek on the way to the door.]</em></p>
<p><strong>Derek Jett:</strong> Wait, where are you going??</p>
<p><strong>Kat Zimals:</strong> Considering what you told me, where the fuck do you think?</p>
<p><strong>Derek Jett:</strong> …Oh, right. Of course.</p>
<hr /></div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="islequote">
<p>Do I feel guilt about leaving? Yes, of course I do. But the good thing is that I'm here. Kat and Eden no doubt are fretting over my disappearance. As much as I may dislike the fact, I <em>am</em> instrumental enough in the M.E.G.'s operations, and I suppose I'm a core part of their life, too. But needs must, unfortunately, and my current needs are with… this.</p>
<p>I need her, I want her, I must have her. She's in my dreams, she's in my peripheral, and she is <em>everywhere.</em></p>
<p>I love her, but I can't let that spread.</p>
<hr />
<h5 id="toc1"><span><span class="isle">~ River</span></span></h5>
</div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="lightblock">
<hr />
<h3 id="toc2"><span><Begin Transcript at: 05:28PM></span></h3>
<p><strong>Date:</strong> 22/05/16<br />
<strong>Location:</strong> <a href="/level-4">Level 4</a>, Base Omega, senior office spaces.<br />
<strong>Person/People of Note:</strong> Justin Zimals, Kat Zimals.</p>
<hr />
<p><strong>Kat Zimals:</strong> <em>What do you mean you already knew-?</em></p>
<p><strong>Justin Zimals:</strong> We knew Asher was gone before everyone made their way in this morning, we just… We wanted to keep it under wraps as best we could until we knew what was going on, but word spread.</p>
<p><strong>Kat Zimals:</strong> Yeah, I fucking wonder why! Let me in, Justin.</p>
<p><strong>Justin Zimals:</strong> <em>I-I really don't think that's a good idea-</em></p>
<p><strong>Kat Zimals:</strong> <em>I already know what hir desk looks like; I had it explained to me already! I can deal with it!</em></p>
<p><strong>Justin Zimals:</strong> <em>People already know that much? Really?</em></p>
<p><em>[Instinctively making use of Justin's confusion, Kat immediately shoved him away from the doorway he was blocking, causing Justin to collide with the doorframe and spin on his foot in an attempt to regain balance. By the time he had steadied himself, Kat had already made her way inside the empty room where the senior members of the M.E.G. worked, and Justin hurried in after her.]</em></p>
<p><strong>Justin Zimals:</strong> I'm… I'm sorry.</p>
<p><em>[Steadily, Justin approached Kat, going by the empty office cubicles for the other senior members and lesser Underseers that had all been given the day off. He stopped at her side, taking his sister's hand gently as she stared ahead at the desk she had stopped in front of. It was one of the simpler desks, situated at the corner of the room and next to a long row of windows. Although ze never had much in the way of office space decor, her desk had been completely cleared of everything apart from her thick monitor, keyboard, mouse, and two office chairs. Kat's entire demeanour seemed to have changed; her shoulders were slumped, and her face had dropped. She was also completely silent.]</em></p>
<p><strong>Justin Zimals:</strong> There… wasn't anything we could do, Kat. I'm really sorry.</p>
<p><strong>Kat Zimals:</strong> <em>How long has ze been gone for.</em></p>
<p><strong>Justin Zimals:</strong> Um, I don't know, actually. They were working late last night, and… When the people who work here got here at the time that they did, they were gone, and <em>those</em> were there.</p>
<p><strong>Kat Zimals:</strong> Do we know what that is?</p>
<p><strong>Justin Zimals:</strong> No. Frankly, we don't dare touch it yet. And neither should you.</p>
<p><em>[Kat's attention gradually fixated onto the strange, geometric object that was currently sitting where Asher River once sat. It was a strange sight to behold, having the appearance of a two-dimensional artwork brought into a three-dimensional plane. It had no depth to it whatsoever and looked the same no matter what angle one viewed it from. It was far from static, however, as its mass of polygons was jittering and glitching randomly in the self-contained space of the chair.]</em></p>
<p><strong>Kat Zimals:</strong> …Asher's really not anywhere?</p>
<p><strong>Justin Zimals:</strong> We've called, radioed, checked their home, and a couple of their favourite spots… but there's nothing.</p>
<p><strong>Kat Zimals:</strong> <em>Are you sure?</em></p>
<p><strong>Justin Zimals:</strong> Of course I'm sure, Kat. Have <em>you</em> tried?</p>
<p><em>[Kat Zimals opened her mouth to reply but couldn't seem to get out a single syllable. Instead, her already deflated posture started to tremble, and her next breath shook just as much. Noticing her growing upset, Justin immediately turned her around, hugging her gently. His hug tightened as his sister started to cry.]</em></p>
<p><strong>Justin Zimals:</strong> Hey, hey… I'm here, I'm here… We'll find them, okay?</p>
<p><strong>Kat Zimals:</strong> <em>No, you… you don't understand… I know where ze's gone.</em></p>
<p><strong>Justin Zimals:</strong> Where?</p>
<p><strong>Kat Zimals:</strong> <em>Justin, don't be an idiot… River's going back.</em></p>
<p><strong>Justin Zimals:</strong> <em>To-?</em></p>
<p><strong>Kat Zimals:</strong> <em>Yes.</em></p>
<p><strong>Justin Zimals:</strong> <em>They wouldn't.</em></p>
<p><em>[Kat detached herself from Justin slowly, sighing in a long, shaky breath as she approached Asher's monitor, making sure to avoid the anomaly.]</em></p>
<p><strong>Justin Zimals:</strong> Kat! Careful!</p>
<p><strong>Kat Zimals:</strong> <em>I know how to avoid a static hazard, Justin. Calm down.</em></p>
<p><em>[With some great determination, Kat began to look through hir personal emails, drafts, to-do lists, and practically anything she could access with Asher's passwords that she was aware of.]</em></p>
<p><strong>Kat Zimals:</strong> <em>I think ze left in a hurry.</em></p>
<p><strong>Justin Zimals:</strong> What makes you say that?</p>
<p><strong>Kat Zimals:</strong> Well, come here, and I'll show you.</p>
<p><strong>Justin Zimals:</strong> I'm not going near that… glitchy thingy.</p>
<p><em>[Kat rolled her eyes, typing a momentary few characters on the keyboard before performing a flick and click of the mouse. A moment later, Justin's phone buzzed, and instinctively he pulled it out from his coat pocket.]</em></p>
<p><strong>Justin Zimals:</strong> What's this?</p>
<p><strong>Kat Zimals:</strong> It's a draft in hir inbox that I found. It looks finished, but it never got sent to anyone. It was <em>going</em> to be sent to me, you, Andrew, Eden, Somalia, Melody, Olivia, and… Uh, some others.</p>
<p><strong>Justin Zimals:</strong> A draft saying they were launching an expedition into Level 404… Again. <em>"If I'm not back in a week, assume I'm dead." Holy shit.</em></p>
<p><strong>Kat Zimals:</strong> And River never sent it. I assume ze meant to and was just in too much of a rush.</p>
<p><strong>Justin Zimals:</strong> Well, we don't know that.</p>
<p><strong>Kat Zimals:</strong> <em>What other explanation could there be?</em></p>
<hr /></div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="islequote">
<p>I half-contemplated letting them know where I was headed, but if I did that, I ran the risk of them stopping me or finding me before I got here. Getting from Level 4 to <a href="/level-12">Level 12</a> isn't exactly a difficult task. It only took me a few hours.</p>
<p>So now I stand here, within Level 12's singular room, writing these notes while sitting on its singular chair at its singular table. I can feel her love seeping through from <a href="/level-404">her level</a> into this one, as though her effects transcend dimensions and can use level exits just like we can. Either that, or she grows impatient.</p>
<p>Perhaps I didn't let them know where I was going because the email I drafted had lied. Or at the very least, it was far too optimistic.</p>
<p>I know she won't let me go, and that scares me, but I know it's the right thing. I need… her, and I need the people I hold closest to be safe from her.</p>
<p>I win either way. I just have to take the final plunge. A plunge I know will change me. A change that scares me.</p>
<p>But it's a change that has to be done. For the people I love.</p>
<p>If you find this Kat and Eden, I love you. Both of you.</p>
<hr />
<h5 id="toc3"><span><span class="isle">~ River</span></span></h5>
</div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="lightblock">
<hr />
<h3 id="toc4"><span><Begin Transcript at: 04:49PM></span></h3>
<p><strong>Date:</strong> 29/05/16<br />
<strong>Location:</strong> <a href="/level-1">Level 1</a>, Base Alpha, Kat's abode.<br />
<strong>Person/People of Note:</strong> Kat Zimals, Eden Gardenhigh.</p>
<hr />
<p><em>[Within the rather spartan furnishings of Kat's small home, Kat herself was sat upon her sofa chair, one that was flanked in her combined living and cooking space with mismatched sofa and dusty CRT television hooked up to a VCR. Kat's attention was not attached to either of those devices, as for the past week her attention had been on a packet given to her on the 23rd. It was a dossier, of sorts, specifically one containing the various items taken from <a href="/level-12">Level 12</a> that belonged to Asher River. She had some of its contents strewn across her lap, particularly a variety of letter scraps written by Asher hirself.</em></p>
<p><em>Kat picked one up at random while slouched far back into her chair, holding it up to her lazy eyes. She began to read its contents.]</em></p>
<div class="islequote">
<p>I've never been good at goodbyes. I feel that's obvious to anyone who's ever known me. Frankly, it's obvious to anyone who's reading these, considering I've written four separate goodbyes. This one, I think, is the last. I'm done stalling, and I'm ready.</p>
<p>To Kat and Eden, I love you both. You two understood me more than anyone else at the M.E.G., more than any of the other Overseers or Underseers, in fact. You know who I am, and you've accepted me for who I am. I'll never be more thankful for that. I hope that that can continue and that you can understand and accept why I've done what I've done.</p>
<p>I don't think I need to spell out where I'm going. If you've gone to a dumb backwater level like Level 12, you're only doing it to find me. Please, don't. You won't be a hero coming to find me, you'll just end up dead or changed. Depending on how late you find these, I may accidentally cause those, and that is the last thing I want. If things were better, I wish we could be together.</p>
<hr />
<h5 id="toc5"><span><span class="isle">~ River</span></span></h5>
</div>
<p><strong>Kat Zimals:</strong> <em>Did ze really see me that way?</em></p>
<p><em>[Kat seemed surprised at her own outburst of words once she'd finished reading, immediately clasping her mouth shut as her eyes widened. Without looking at it, Kat gently put the letter back into the dossier folder, alongside all the other letters she'd been eternally rereading and parsing for any deeper meanings. Once everything was put away, she dropped the dossier at the side of the sofa chair, and tried relaxing back in her seat.</em></p>
<p><em>After a minute or so, however, Kat was suddenly brought out of her quiet resting by a loud buzzing from her pocket, coupled with a tinny jingle. She sat up in surprise, taking her phone out of her pocket immediately to look at what she assumed was a phone call. Instead, though, it was an alarm set to go off at exactly 5pm, titled "Ring Eden". The sight of the wording made Kat's breathing shake, and though her thumb reached for the snooze button, it appeared that she had set up this alarm to lack one.]</em></p>
<p><strong>Kat Zimals:</strong> <em>Oh, fuck…</em></p>
<p><em>[Reluctantly, Kat unlocked her phone and made her way to her contacts, scrolling down to a contact labelled simply as "Eden". With a deep breath, she pressed on their name to call them and brought the phone to her ear.]</em></p>
<p><strong>Kat Zimals:</strong> Please be doing something else… let me leave a voicemail…</p>
<p><strong>Eden Gardenhigh:</strong> <tt>Hello?</tt></p>
<p><em>[Silently, Kat mouthed a curse, sighing quietly afterwards as she straightened up her back.]</em></p>
<p><strong>Kat Zimals:</strong> Eden? This is Overseer B. We need to talk.</p>
<p><strong>Eden Gardenhigh:</strong> <tt>What's wrong?</tt></p>
<p><em>[Kat, for a moment, fails to speak. She opens her mouth to form an opening syllable, but again the attempt falls flat.]</em></p>
<p><strong>Kat Zimals:</strong> River's gone, Eden.</p>
<p><strong>Eden Gardenhigh:</strong> <tt>Yeah, I'm aware. Ze went on an expedition to 404, right?</tt></p>
<p><em>[Kat winced at Eden's mention of Asher's "expedition", which was how hir final venture out of Level 4 was described in hir unsent email. After a brief council with the Overseers, it had been decided to send the email to the originally planned recipients, as it was believed to be what ze wanted.]</em></p>
<p><strong>Kat Zimals:</strong> Yeah. Ze did. A-And we have reason to believe that was hir last mission.</p>
<p><strong>Eden Gardenhigh:</strong> <tt>…What?</tt></p>
<p><strong>Kat Zimals:</strong> Myself and the other Overseers have been trying to contact hir, but we haven't been able to.</p>
<p><em>[Kat paused momentarily, biting her bottom lip and contemplating if to go further. She took a look down at the dossier, pushing out some of the files with her thumb that showed the complete inverse of the events she was describing.]</em></p>
<p><strong>Kat Zimals:</strong> Ze told us if ze didn't contact us in a week, that ze wasn't coming back.</p>
<p><em>[Eden didn't immediately reply, and the silence gradually allowed for a deep pit in Kat's stomach to begin opening and deepening. Worried she'd been caught out in her lie, Kat opened her mouth to speak but was cut off by Eden.]</em></p>
<p><strong>Eden Gardenhigh:</strong> <tt><em>I don't know what kind of sick joke this is-</em></tt></p>
<p><strong>Kat Zimals:</strong> It's not. I wish it was, but it's not. It's been a week, and River hasn't come back. M.E.G. policy is to declare hir dead.</p>
<p><strong>Eden Gardenhigh:</strong> <tt>No, no… <em>please…</em></tt></p>
<p><em>[Feeling herself begin to tear up, Kat moved the phone slightly away from her ear as Eden's tears became evident through the phone's speaker. To not let out a tear of her own, Kat scrunched her face and keep it balled up as she began to speak again in a flat tone.]</em></p>
<p><strong>Kat Zimals:</strong> I'm sorry. Everyone is just as upset as you are.</p>
<p><strong>Eden Gardenhigh:</strong> <tt>No! I don't care what the policy is! Send every field researcher we have! We can't just leave hir to die like that!</tt></p>
<p><em>[Kat kept her face scrunched tight, her free hand tightening on the armrest of her sofa chair.]</em></p>
<p><strong>Kat Zimals:</strong> Ze was a friend of mine too, but we… <em>The M.E.G. can't lose more people. We've already lost enough. Just take a moment to think about what you're saying-</em></p>
<p><strong>Eden Gardenhigh:</strong> <tt>NO! What, do you think I'm taking the death of my friend too seriously?? I-If you truly cared about hir, you would exhaust every possibility until you found hir.</tt></p>
<p><strong>Kat Zimals:</strong> <em>Eden…</em> We just lost River, if we lose another… We <em>can't</em> lose another. Everyone from the M.E.G. is upset, but that doesn't give an excuse to sacrifice more lives.</p>
<p><strong>Eden Gardenhigh:</strong> <tt>Oh yeah, and you did <em>so</em> well at making sure the first one didn't happen. I'll get hir myself.</tt></p>
<p><strong>Kat Zimals:</strong> Eden, wait-</p>
<p><em>[In a sudden moment of regretful panic, Kat's eyes widened at Eden's comment. Before Kat could fully reply, Eden had hung up. Kat brought the phone away from her ear, hastily attempting another call which went straight to voicemail.]</em></p>
<p><strong>Kat Zimals:</strong> <em>No, Eden. Pick up. Please pick up, I'm sorry.</em></p>
<hr /></div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="islequote">
<p>It's taken me over a week, but I've found her.</p>
<p>I've finally found her.</p>
<p>And she's beautiful.</p>
<p>It took days of wandering the binary halls, the cascading waterfalls of bisecting information, and a climb to the highest towers of geometry, but I'm <em>here.</em> With <em>her.</em> I've never felt more at home.</p>
<p>I continue to write, even if my body is hardly my own anymore. I do not know where the pen or paper comes from, but I still make.</p>
<p>She is not aware of my words. My love blinds her to it.</p>
<p>My love for <em>her</em> is pure, as is the love for those I truly hold close. I keep them safe. Here I love <em>everyone.</em></p>
<hr />
<h5 id="toc6"><span><span class="isle">~ River</span></span></h5>
</div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="lightblock">
<hr />
<h3 id="toc7"><span><Begin Transcript at: 21:59PM></span></h3>
<p><strong>Date:</strong> 30/05/16<br />
<strong>Location:</strong> <a href="/level-404">Level 404</a>.<br />
<strong>Person/People of Note:</strong> Eden Gardenhigh.</p>
<hr />
<p><strong>Eden Gardenhigh:</strong> Come on… Come on…</p>
<p><em>[For over a day, Eden had been struggling with the sharp terrains and rooms of Level 404. At present, she found herself traversing the steep incline of a mess of geometric shapes. She was very clearly out of breath and delirious, having to fight off her inclinations to stop and allow herself to wither into the hypnotic terrene. With a final huff, Eden made her way to the top of the polygonal mountain, only to almost fall in the other direction. She hastily slammed her foot into the ground, causing the area around her now nestled-in heel to explode into a flurry of triangles, which withered away in the air.]</em></p>
<p><strong>Eden Gardenhigh:</strong> Shit! Okay…</p>
<p><em>[With a trembling sigh, Eden found relief in her stability, her arms flaying out either side of her as her head rocked into the floor, laughing to herself. She stared up at the sky, taking her moment of relaxation to admire the distorted atmosphere above her. Slowly, she rolled onto her side and got herself up, brushing the stray polygons off of her jeans, and looked ahead.]</em></p>
<p><strong>Eden Gardenhigh:</strong> <em>Oh my god.</em></p>
<p><em>[In front of her, and down the slope of the other side of the summit she was standing on, was a monolith of incredible proportions. It looked to be a statue made out of a mix of stone and rudimentary 3D geometry, a type that felt almost indescribable and hard on the eyes. Though it appeared stationary in its crouched and hunched position, almost looking like it was in the foetal position if it weren't for its head looking aside and to the sky and the positions of its arms, its fingers were gently and rhythmically twitching. Its calves appeared to be melting into Level 404's floor, and much of the statue's abstract construction was floating slowly around it in a strange orbit.]</em></p>
<p><strong>Eden Gardenhigh:</strong> <em>That is… beautiful…</em></p>
<p><em>[Eden's eyes travelled higher, investigating the sharp series of spikes and thorns that grew off of the statue's back and travelled far into the sky. Much like how the statue's lower body was coalescing into the ground, this spike liquified into the skybox, creating a strange and dizzying illusion above her. Having got all she could from just staring from a distance, Eden began to walk towards the statue.</em></p>
<p><em>Actually reaching the statue took longer than Eden had expected, as its size coupled with its distance and the strangeness of the terrain towards it made it seem smaller and closer than it actually was. As she began to approach, her knees began to weaken, and her breathing got heavier and shakier. Eden stopped to check herself, wiping her tear duct and finding a single bead of water on her fingertip. Cautiously, she flicked it away with a single shake of her wrist and continued to approach.]</em></p>
<p><strong>Eden Gardenhigh:</strong> Uhm, hello? You’re the first living thing I’ve found here. Do you know where I am? Have you seen anyone around here the past few days? <em>Why am I talking to a statue.</em></p>
<p><em>[As Eden continued to ramble to herself, her already dazed focus was completely halted as a piece of pink paper floated down right in front of her face, the wind smashing it over her eyes. Eden halted after a stumble that almost made her fall, and pried the parchment from her face.]</em></p>
<div class="islequote">
<p>Even when here, when I’m isolated from those I love and simultaneously embraced by my one true soulmate, I know it will not be enough.</p>
<p>I know Eden and Kat will come looking, even if I didn’t tell them where I went. At first I did that to protect them, but thinking it over, I’m not sure that was the best move.</p>
<p>They may come here. They may find me and see me in a form I was never supposed to be in with a love they were not supposed to know about.</p>
<p>I have to pray they don’t find me, and if they do, I have to pray they leave before I make them.</p>
<hr />
<h5 id="toc8"><span><span class="isle">~ River</span></span></h5>
</div>
<p><strong>Eden Gardenhigh:</strong> River…?</p>
<p><em>[Confused at the note, Eden’s first instinct upon reading it was to look up, hoping to spy its origin. To her shock, above her and encircling the monolith she were approaching were yet more pink pieces of paper, forming an army tens of thousands strong. As Eden let go of the paper that had collided with her, it was picked up by the breeze and rejoined the flock. For reasons she wasn’t sure of, the very sight was beautiful to her, causing yet more tears to fall from her eyes that she could no longer control.]</em></p>
<p><strong>Eden Gardenhigh:</strong> Oh my god… Why do you have River’s diary?!</p>
<p><em>[At Eden’s loud shout, the wind carrying the papers seemed to change course, signified by a soft and angelic harmony. With a frightened stumble back where Eden almost lost her footing yet again, another paper launched itself at her, but this time it only landed on the front of her shoulder. Cautiously, she picked it up to read.]</em></p>
<div class="islequote">
<p>Well, I figured this would happen eventually. Where I am, where <em>she</em> is, I figured, was far. Already on the outskirts of a universe that by nature is antithetical to understanding, I imagined it would take years or even decades to be found.</p>
<p>I suppose I underestimated them. Perhaps that’s on me for being a bad friend, or just my wishful thinking that my hasty plan would work flawlessly. Though I hardly think it matters now.</p>
<p>My best hope is that they leave before things get worse, but there's only so much I can do. Without hurting them, that is.</p>
<hr />
<h5 id="toc9"><span><span class="isle">~ River</span></span></h5>
</div>
<p><strong>Eden Gardenhigh:</strong> Are you talking to me? <em>Are you trying to say something, River?</em></p>
<p><em>[As realisation set in, Eden clutched the note close to her chest and took a wobbling step backward, staring up at the incredible structure with widening eyes that were welling with tears. Despite the fact that Eden's revelation put a deep feeling of dread in the pit of her stomach, she couldn't fully explain where most of her melancholy was coming from. It was overwhelming, overpowering her body to the point of immobility that paradoxically kept her frozen in place and on the brink of collapsing entirely.]</em></p>
<p><strong>Eden Gardenhigh:</strong> River, please! What's happened to you??</p>
<p><em>[Overpowering Eden's sharp and loud tone was a rapidly rising melody, sounding both enchanting and disorienting. It sounded as though it was a key too high, and the various voices making up the choir were totally out of sync while singing the same tune. A fully formed tear finally fell down Eden's cheek, vibrating and falling off their chin from her trembling body and shaky breath. A leg finally moved, allowing Eden to take another step backwards.</em></p>
<p><em>The sound around her was already overwhelming, but it was impacted tenfold by the fluttering papers beginning to speed up in their orbit around the statue. The parchments brushed against each other and fluttered wildly in the wind, creating a second cacophony of loud noise that clashed sharply with the singing. As the papers rubbed against each other, they began to tear and descend towards Eden, their orbits shifting to surround her head. With a scream, she tried to swat the papers out of her pink-shrouded vision, but no matter how much paper she hit away, more descended upon her.]</em></p>
<p><strong>Eden Gardenhigh:</strong> River, please!</p>
<p><em>[When Eden spoke, she inhaled a good dozen or so of the paper strips, causing her to choke deeply and fall onto her back. With the sudden impact, the papers still in orbit fluttered away and rejoined the flock circling the monolithic statue. Despite her confusion, Eden hacked up the papers with a splutter, using her fingers to wrench some out of her throat.]</em><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I'm sorry-</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I hope they both unders-</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I'm sorry.</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I worry she won't leave, what would <em>she</em> do if she were to find out she was here?</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I'm sorry. I'm sorry. I'm sorry.</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">-I must not make it obvious. She can't know who has-</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I'm sorry.</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">What did I do to deserve this choice being given to <em>me?</em></span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan">I will make it as painless as possible, but I can't guarantee that-</span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan"><em>I'm sorry.</em></span><br />
<span style="white-space: pre-wrap;"> </span><br />
<strong>Eden Gardenhigh:</strong> R-River-?</p>
<p><em>[Despite the fact that the pieces of paper were torn, crumpled, and now covered in saliva, Eden could still read the excerpts from them with only a bit of strain. They almost formed a cohesive thought pattern, as statistically unlikely as that was. Slowly, Eden got back onto her feet, dropping the paper shreds to the ground and trying to ignore the fact that they melted into the floor. As she looked up, River noticed one final paper shred disentangling itself from the flock and floating softly down towards her. Cautious and curious, Eden cupped her hands and held them up to catch it, letting it land in her hands.]</em><br />
<span style="white-space: pre-wrap;"> </span><br />
<span class="islespan"><em>I love you.</em></span></p>
<h5 id="toc10"><span class="islespan"><span><span class="isle">~ River</span></span></span></h5>
<p><br />
<span style="white-space: pre-wrap;"> </span><br />
<strong>Eden Gardenhigh:</strong> I… I love you too, River.</p>
<p><em>[Despite her hairs being on end and the pit in her stomach still feeling deep, Eden mustered a smile as she looked down at the small shred of paper and its contents. She felt the parchment with her thumb, looking up to the statue afterward. Her mood changed like the flip of a switch, screaming in terror as she noticed that the statue was now staring directly at her. Despite the simplicity of its facial features, it unmistakably resembled River. Even though its eyes were blank orbs of stone, to Eden it still felt like it was looking right into her soul. The feeling of dread deepened, which was unfortunately added to by a sudden spike of pain across her entire body.</em></p>
<p><em>Eden screamed again, her face scrunching in pain as her body went rigid and still. Sharp jabs of agony coursed across her nerves, and from head to toe she felt the shuffling and strange rearrangement of her cells, clothes, and memories. Her voice changed in pitch and tune multiple times, deepening before becoming more melodic and even childlike. Each change in voice corresponded to a shift in her appearance, and with each shift, her body became more abstract, being covered in various geometric shapes that hurt the brain to try and give perspective to. Once the shapes were completely around her, she vanished, her screams echoing across the null space for a full minute.]</em></p>
<hr /></div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="katquote">
<p>It seems you have me writing letters of my own now. I always thought you were stupid for jotting down your thoughts, you know. So easy to pry into and read and cringe over. I think I understand why you do it now. Did it now, I mean. Past tense. You're dead, probably. I don't think I'll ever get over that.</p>
<p>God, I hope nobody finds these things, I'm burning them if someone even steps foot in my room.</p>
<p>We still talk about you, you know. Both you and Eden. I assume Eden is with you, if you're alive, which I doubt. If there's an afterlife, perhaps you're both there, mocking me. I want to say sorry to both of you.</p>
<p><span style="text-decoration: line-through;">River, I'm sorry that</span></p>
<p><span style="text-decoration: line-through;">Eden, I'm</span></p>
<p>I'm beginning to understand why you did these less and less.</p>
<hr /></div>
<br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span><br />
<span style="white-space: pre-wrap;"> </span>
<div class="lightblock">
<hr />
<h3 id="toc11"><span><Begin Transcript at: 05:28PM></span></h3>
<p><strong>Date:</strong> 12/06/16<br />
<strong>Location:</strong> <a href="/level-1">Level 1</a>, Base Alpha, Kat's Office.<br />
<strong>Person/People of Note:</strong> Justin Zimals, Kat Zimals.</p>
<hr />
<p><em>[Although it was close to the space she had used before, since the disappearance of both Asher River and Eden Gardenhigh Kat had moved her office into a more private room in Base Alpha. It was small and compact, having enough room for a professional desk, a few chairs to surround it, and some bookcases and filing cabinets to flank all four walls at random spots. Most of these wall furnishings were empty of contents, since things were still being moved from the now unused collective Overseer space and into the new ones. Despite its spartan nature, Kat was at peace. Or at least, she would be.</em></p>
<p><em>Slumped forwards on her chair, staring at the scan line screen of her computer idly, was Kat herself. She had the write-up for both Asher and Eden up, and right now was busy changing the present tense to past tense on the contents of their descriptions. Despite how monotonous and easy the task was, Kat was hardly working on it at all. Her eyes were fixated on the image used to display Asher, one that was now marred with graphical distortions around hir body. Even though the distortions covered both of Asher's eyes, Kat was acting as though she could still make eye contact with the image of hir. Without really thinking, her gaze became unfocused, and her head went closer to the screen, her breath heavy with angst. Just before anything happened, however, the door suddenly flung itself open. Likewise, Kat flew herself back from the monitor and slammed her fist on the desk.]</em></p>
<p><strong>Kat Zimals:</strong> Knock, you asshole!</p>
<p><strong>Justin Zimals:</strong> Sorry!</p>
<p><em>[Justin's eyes were wide with some panic at the sight he'd seen, frozen in the doorway with a tablet at his chest. He didn't say anything, and neither did Kat. The silence was initially broken by the latter sighing loudly and pinching the bridge of their nose, and it was finally shattered completely by Kat speaking.]</em></p>
<p><strong>Kat Zimals:</strong> <em>What do you want, Justin.</em></p>
<p><strong>Justin Zimals:</strong> I just wanted to see how the edits were going, as well as the documentation on the, uh… thing. <em>you know.</em></p>
<p><strong>Kat Zimals:</strong> Yes, I know, and it's… going fine, I guess? <em>Can't you have emailed me about that?</em></p>
<p><strong>Justin Zimals:</strong> I wanted to check up on you, too.</p>
<p><strong>Kat Zimals:</strong> <em>I don't need a fucking wellness check.</em></p>
<p><strong>Justin Zimals:</strong> Your best friend is… <em>I feel worried about you, Kat. As anyone would!</em></p>
<p><strong>Kat Zimals:</strong> Okay, well in that case I'm fine. You can leave.</p>
<p><strong>Justin Zimals:</strong> Kat, please. I'd prefer something a little more detailed than that. I'm your brother, you can speak to me.</p>
<p><strong>Kat Zimals:</strong> I'm. <em>Fine.</em> You also don't need to worry about me, because I'm busy. You should be busy, too.</p>
<p><strong>Justin Zimals:</strong> <em>Kat!</em> You know what? No. It's fine. I'm not going to get mad at you.</p>
<p><strong>Kat Zimals:</strong> …I'd hope not.</p>
<p><em>[Justin sighed at Kat's vague reply, glancing around the still new office without much motive before slowly and awkwardly slinking out of the space, silently closing the door behind himself. Once she was alone, Kat's head collapsed into her hands, taking a moment to let her rigidness switch into becoming almost completely limp. Once she'd composed herself enough, she looked back to the computer and hastily switched tabs from Asher's POI file to avoid the embarrassment of looking at it. In a hasty alt tab, she found herself at the page for the newly renamed "Nostalgi Gaius". Kat stared at that instead, going through the length of the document that she'd been editing for quite some time now. Her eyes glazed over the words and the transcribed notes that she'd included from Asher, but she found it difficult to actually add much else.]</em></p>