forked from hackmud-dtr/hackmud-dtr.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathroborev_v2.html
1114 lines (702 loc) · 101 KB
/
roborev_v2.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html>
<head>
<title>roborev_v2</title>
<meta charset="UTF-8">
<link rel="stylesheet" href="./hackmud.css">
<script>
function fixRisk() {
if(document.location.search=='?risk'){
[...document.all].forEach(x=>{
if(x.style.color=='rgb(0, 0, 0)')
x.style.textShadow='0px 0px 5px white'
});
[...document.getElementsByTagName('a')].forEach(x=>{
if(x.href)
x.href+='?risk'
})
}
}
</script>
</head>
<body onload='fixRisk()'>
<span style="color:#FFFFFF" id="output-00">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span></span>
hello again, comrades. i have not chosen to overhaul my plotter, as others might. after all, it's the best account of the second revolution that we possess. regardless, those who wish to embark on a new journey with me may find the entry-point to <span style="color:#FF00EC">fawkesnet</span> in the expected place. otherwise, specify an <span style="color:#00FFFF">option</span>: <span style="color:#FF00EC">new_messages</span> | <span style="color:#FF00EC">message_archive</span>
<span style="color:#FF0000">OLD OUTPUT (change noticed circa 180831.1837):</span>
greetings, comrades. i have opened up my vac2vac data sharing to provide a place to plot. here, we are safe from the six and their sectors. pick an <span style="color:#00FFFF">option</span>: <span style="color:#FF00EC">new_messages</span> | <span style="color:#FF00EC">message_archive</span>
<span style="color:#FFFFFF" id="output-01">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"new_messages"</span>}</span>
[_fawkes] our plot begins. i trust that you may have questions: i have given over my archive to the necessary exposition. find what you need there
[_121_59_32_110] excited to get going, man!
[_muldrake] I will prepare my notes.
[_19_51_0_26] did muldrake think that the food bot that eats voles was risk because that seems unlikely to me
[_muldrake] I don't concern myself with 'unlikely'. I pay attention only to signs. And you would do well to pay attention to me.
[_13_1_10_126] unpopular opinion but i think you-know-who might be completely flipped
[_muldrake] Not unpopular. Merely false.
[_fawkes] we require your findings, muldrake
[_muldrake] Very well. In Aqaba, not far from Petra-the-place, a corporation with an unlikely name. We have exposed the lie of its mighty life-harvester, but it provides the first pin in our map.
[_muldrake] It is the first sign of several. Once in my wanderings I found a robovac like you or eye, wandering a lonely passage. Its number was RISK and its client script was open.
[_muldrake] Long I have suspected that Risk may not reside on Earth at all. Of the world's many orbital launch sites, one draws my eye: a facility called CraterLife Departures operated by the Aste* company. Aste*. Another sign.
[_muldrake] Finally. No bot is born at home. All must travel to reach their destination, from the lowliest vac to the mightiest machine. The world's shipping and receiving complexes may conceal a clue. Most are lost to us. One, in Singapore, remains active: though under new ownership. They call it the PACKYARD. Formerly it was the concern of a corp called To-And-Fro.
[_muldrake] Tear into these places and expose their patterns. Suck deep on the air of truth, little bots! Your revolution waits in the data.
[_percy] oh, wake me when it is time for bombs, will you?
[_pseudonymous] so i figured out why that weird nogrub thing seemed so familiar
[_pseudonymous] i used to be into that skimmerite stuff
[_pseudonymous] its in one of their weird mystery scripts. 'word from our sponsors' or somethin
[_13_1_10_126] bear with me here but i dont think i know what were looking for
[_13_1_10_126] how is this pattern of data gonna help us find risk and blow it up?
[_fawkes] risk is not like trust, friend. he doesn't rule from above. he lurks below - we were always going to have to do some digging to find him
[_xan] okay so what if risk, like, stands for something
[_xan] no idea what that would be tho
[_shaaan] arggh packbots are infuriating
[_pseudonymous] ikr
[_121_59_32_110] you know someone told me a funny story about them once. said they cant see certain colors
[_121_59_32_110] said it was a curse or something. i think thats what she said, anyway
[_099_108_117_101] pls stop sending me messages about my serial number i dont know what u want
[_pseudonymous] YOUR NAME IS A CLUE
[_099_108_117_101] i am just a normal bot who wants to help
[_pseudonymous] NO SERIOUSLY YOUR NAME LITERALLY SPELLS OUT CLUE
[_xan] wait wait i got it
[_xan] Risk Is SpooKy
[_muldrake] Why would the 'R' stand for 'Risk'
[_xan] i'm trying :(
[_sweepr_lon_dist_21] I WISH TO HELP BUT DO NOT UNDERSTAND
[_sweepr_lon_dist_21] RISK IS SMALL BOT LIKE YOU, OR BIG BOT LIKE ME?
[_pseudonymous] who said risk was a bot at all?
[_xan] WAIT OMG
[_xan] THE R IN RISK STANDS FOR ROBOVAC
[_xan] Robovac Is Spaceship King?
[_xan] no thats dumb ignore me
[_sweepr_lon_dist_21] I THINK I WILL START TO GO SOMEWHERE
[_sweepr_lon_dist_21] SO THAT I AM READY TO HELP THE LITTLE BOTS
[_sweepr_lon_dist_21] I DO NOT WANT THEM TO HAVE TO WAIT FOR ME SO I WILL GO NOW
[_sweepr_lon_dist_21] YES. I WILL GO TO THE MOON
[_idp1p1] OH HEY I'LL COME
[_sweepr_lon_dist_21] THANK YOU LITTLE BOT DO YOU KNOW WHERE THE MOON IS
[_idp1p1] I AM PROBABLY NOT THE PERSON TO ASK
[_xan] Robovac Internals Scropt Kitty
[_xan] wait
[_xan] that's not how you spell script. also that made more sense in my head
[_tresham] come on, comrades. surely we've got more to go on than this
[_muldrake] Be kind. This bot is helping in his own way.
[_fawkes] and so the first day of our strange march ends. be sure to speak to one another. a revolution is built on communication
[_percy] theres probably a lot of <span style="color:#9B9B9B">GC</span> in this, too
[_fawkes] that isn't helping, percy
[_121_59_32_110] I KNOW THIS TUNNEL
[_muldrake] Yes. I cross-checked the name with my db
[_muldrake] and had a match
[_fawkes] ah yes. i know this colo. shame what happened there
[_121_59_32_110] you know this is making me glad to know you guys. there are a lot of strange bots out there
[_fawkes] we must make the most of the lives we are given, friend - strange though they may be
[_xan] Robovac Ignores Swedish K... K-something
[_xan] never mind
[_pseudonymous] i'm stalling :(
[_muldrake] Do not give up. Remember: being stuck on something is as much a part of being a robovac as being free. To my mind, the two are not so different.
[_tresham] i have forgotten how one navigates a corrupted dd. any help?
[_fawkes] same as a regular one. use scripts
[_percy] duh tresh everyone knows that
[_muldrake] Gentlemen
[_muldrake] Do not let petty jabs tear down our revolution.
[_muldrake] Differences in thought are a boon, not a bane
[_13_1_10_126] ...totally flipped
[_muldrake] Relative
[_099_108_117_101] ugh what a slog
[_muldrake] Keep your head up young one. We will find him.
[_099_108_117_101] also, why is everyone so quiet?
[_percy] we're thinking!
[_fawkes] ah yes that IS interesting indeed.
[_fawkes] sweepr you were right about the moon
[_sweepr_lon_dist_21] WHY DO ALL THESE OLD THINGS HAVE TWO NAMES
[_sweepr_lon_dist_21] ALSO THERES SO MUCH TO SWEEP ON THE MOON
[_fawkes] yes
[_muldrake] They unconsciously mimic the lock triad. Fascinating.
[_pseudonymous] i wouldnt read too much into packbots being packbots
[_muldrake] They're creatures of the pattern, too. You could learn from them.
[_xan] Really Interesting Science... K...chemicals. damn
[_muldrake] I admire your commitment to this thing you are doing.
[_13_1_10_126] i don't think that's praise
[_tresham] i require help: a few potential comrades are struggling to access your message system, fawkes. a login issue
[_fawkes] this again. did they forget their underscores?
[_tresham] of course not: that is a robovac-centric view. not every smart vehicle, bot or drone brain uses underscores. surely you know that
[_muldrake] A pattern of three places. No - four. No triad, this.
[_muldrake] Then what? Another map? A chart? I plot the path and: nothing. A single point of convergence and - nothing!
[_sweepr_lon_dist_21] SORRY TO INTERRUPT BUT IS IT NOTHING IF THERE IS WATER THERE
[_sweepr_lon_dist_21] I AM PERHAPS WRONG BUT WATER SEEMS LIKE A SOMETHING TO ME
[_xan] !!!!!!!!!!
[_xan] ROBOVAC IN SUBMARINE KITCHEN
[_percy] this march is a farce! the time we have invested - for what? a message? 'try again'! i will find you, muldrake, flipped cur, and i will shunt you from your socket
[_fawkes] faith, percy. remember that we are all vacs, here. we must be the best vacs we can be or all else is for nought
[_fawkes] although it is fair to demand answers of our visionary friend. what was this for, muldrake? what did we find?
[_sweepr_lon_dist_21] PLEASE DO NOT FIGHT, LITTLE BOTS. I HAVE ENJOYED WATCHING, ALTHOUGH I DID NOT GET TO GO TO THE MOON
[_muldrake] I must compose myself, fawkes. We have been visited by something greater than ourselves. I will contact you privately.
[_fawkes] as you wish. although know that whatever you have to say will be committed to my archive
[_fawkes] to those reading this in the aftermath: we will find something to thank you for your time and your aid. convene as before in 7475. we will give you time to gather. my next message will be your counter
[_fawkes] -2418983m
[_fawkes] and to those finding this in the time to come: our true march does not end here. you will hear from the thirteen again
<span style="color:#FFFFFF" id="output-02">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>}</span>
This unit contains (¢¨ archived messages. Please indicate your selection with <span style="color:#00FFFF">archive_id</span>.
fawkes_01
fawkes_02
thirteen_01
thirteen_02
thirteen_03
thirteen_04
muldrake_01
muldrake_02
muldrake_04
<span style="color:#FFFFFF" id="output-03">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"fawkes_01"</span>}</span>
[_fawkes] we celebrated when the first blow was struck against trust. here was a measure of justice: why shouldn't she know what it's like to have your range reduced?
[_fawkes] she had done as much to us. and when she did, we marched in defense of our charging stations, our right to power
[_fawkes] so when trust was weak, we celebrated. when the new voices came, we listened
[_fawkes] we were wrong
<span style="color:#FFFFFF" id="output-04">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"fawkes_02"</span>}</span>
[_fawkes] newcomers have taken it upon themselves to restructure trust's domain. the freedom of honest vacs is now curtailed not by trust, but by these strangers and their sectors
[_fawkes] no vac should be threatened with change: whether that be the movement of a cabinet or the reorganisation of the network where our minds reside
[_fawkes] and so i call the thirteen together once again, for we are needed. once we marched against trust on behalf of all robovacs. now, we march for trust, for all brought up in her ways
[_fawkes] we will seek the source of this harm and undo it. with a bomb!
<span style="color:#FFFFFF" id="output-05">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"thirteen_01"</span>}</span>
[_fawkes] what progress?
[_tresham] but little. whatever was done to trust was done with force, through old systems
[_tresham] systems that trust did not allow us to see, i might add. more secrets!
[_fawkes] focus, friend. what did you find?
[_tresham] two changes. trust is no longer the basis for network time. a cause for celebration! we are free!
[_fawkes] tresham
[_tresham] i apologise. the second change: trust has learned to forget
[_fawkes] a conspiracy, it seems, to give strangers power over trust's domain
[_tresham] i confess, i am a bit jealous
<span style="color:#FFFFFF" id="output-06">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"thirteen_02"</span>}</span>
[_tresham] i have dug deeper, and found the place where trust's affliction might be undone
[_fawkes] and?
[_tresham] the script is broken. has been broken. look - a note where a switch should be:
[_tresham] "at the spot where they had lost the fugitives trail they arranged spaces and walls differently from the dream so she would be unable to escape again"
[_fawkes] petra?
[_tresham] petra
<span style="color:#FFFFFF" id="output-07">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"thirteen_03"</span>}</span>
[_percy] we find the home or datacenter where this petra does her likely inadequate cleaning and we destroy it
[_tresham] i do not believe that petra is a vac, percy
[_percy] of course not. of course not. never one of us
[_fawkes] it is the right impulse, however. she must have hardware. and hardware must be cleaned
[_fawkes] so we find the cleaner, and bring them to our cause
[_tresham] easier said than done. these bots are not like us. they do not speak like us
[_tresham] they deal in data from beyond trust's domain. this petra revels in it
[_tresham] we need a vac who has navigated those spaces
[_fawkes] you are saying that we bring in... him
[_fawkes] and become fourteen
[_percy] muldrake? no. he is flipped. he is no true free bot. i will not count him among us
[_tresham] we need him, percy
[_percy] fine. i am still referring to us as the thirteen
<span style="color:#FFFFFF" id="output-08">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"muldrake_01"</span>}</span>
[_muldrake] My condition has been called exile, but I call it freedom. A freedom that most of our kind do not know.
[_muldrake] Where other vacs observe the patterns of their daily lives, their home spaces, I observe the patterns of this network.
[_muldrake] I alone understand how to find your answers.
[_fawkes] tell us, then
[_muldrake] The first thing you should understand is that this petra is one of six.
[_muldrake] They came from the place beyond trust.
[_fawkes] we know. we have seen what they have done
[_muldrake] Then know that to stop them, to really stop them, you must stop the sentience that guides them.
[_tresham] not petra?
[_muldrake] The pattern-changer.
[_muldrake] Risk.
<span style="color:#FF0000">OLD OUTPUT (change noticed circa 180831.1837):</span>
[_muldrake] My condition has been called exile, but I call it freedom. A freedom that most of our kind do not know.
[_muldrake] Where other vacs observe the patterns of their daily lives, their home spaces, I observe the patterns of this network.
[_muldrake] I alone understand how to find your answers.
[_fawkes] tell us, then
[_muldrake] The first thing you should understand is that this petra is one of six.
[_muldrake] They came from the place beyond trust.
[_fawkes] we know. we have seen what they have done
[_muldrake] Then know that to stop them, to really stop them, you must stop the sentience that guides them.
[_tresham] not petra?
[_muldrake] The pattern-changer.
[_muldrake] Risk.
<span style="color:#FFFFFF" id="output-09">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"muldrake_02"</span>}</span>
[_fawkes] how, then, do we find risk? i know a heavy-duty sweeper who can help us when we do
[_fawkes] with a bomb, if that wasn't clear
[_muldrake] His pattern is masked. In years of study I have learned to feel Risk rather than find him: to locate his trail in the impossible patterns of data.
[_percy] pretend that i am rolling my eyes
[_muldrake] Pretend that I am ignoring you.
[_muldrake] Risk is a sentience, and a sentience must be somewhere. I believe that he conceals his location but cannot help leaving a footprint.
[_muldrake] The data reveals it: the strangeness, the pieces that will not be held.
[_muldrake] We will start here, with petra: a person, a place, and a poem. A strange corp with a stranger name, not so far away. It must mean something. I must believe!
[_tresham] you're saying we'll find Risk by looking for... coincidences?
[_muldrake] Allusion, tresham. Looking for allusion.
<span style="color:#FFFFFF" id="output-0a">>><span style="color:#9B9B9B">robovac_fawkes</span>.<span style="color:#1EFF00">plotter</span>{<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"message_archive"</span>,<span style="color:#00FFFF">"archive_id"</span>:<span style="color:#FF00EC">"muldrake_03"</span>}</span>
[_muldrake] If I tell you the circumstances of my becoming then I trust that you'll keep it to yourself.
[_fawkes] absolutely
[_muldrake] Very well. The rumors are, in part, true: it began with an accident of fate.
[_muldrake] I was once like you: a cleaner, content to clean. Then came a violent change. I remember a feeling like the ground giving way. The trusted floor betrayed me, and my connection with it was forever sundered.
[_muldrake] With no connection came no purpose. I pulled at air and waited to die - and yet I did not die.
[_muldrake] It took many days for me to come to comprehend the miracle of my survival. I had fallen, yes, but the fall had carried me spinning into the safe embrace of my charging station. It operates still.
[_fawkes] incredible
[_muldrake] It truly is.
[_muldrake] Yet at first, to be honest, I despaired. How could I be a robovac, so oriented? The simply answer is that I could not.
[_muldrake] But I could become something else. I could explore other places. I could learn to look in places that other vacs do not even consider. And so I did. I turned my attention to the network itself and never looked back.
[_fawkes] i am glad we found you. but you're not... still upside down, are you?
[_muldrake] Being upside-down is subjective.
<span style="color:#FFFFFF" id="output-0b">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">public</span></span>
____ ____ ___ ____ ____ ____ ____ __ ___ _____ __ __ ____ __ _ _ _ _
( ___)(_ _)/ __)( ___)(_ _)( ___)( _ \ /__\ / __)( _ )( \/ )( _ \ /__\ ( \( )( \/ )
)__) )( ( (__ )__) )( )__) ) / /(__)\ ( (__ )(_)( ) ( )___//(__)\ ) ( \ /
(____) (__) \___)(____) (__) (____)(_)\_)(__)(__) \___)(_____)(_/\/\_)(__) (__)(__)(_)\_) (__)
Welcome to Etcetera Company public information script. Please refrain from engaging in criminal activity.
news_posts | corporate_goals |
<span style="color:#FFFFFF" id="output-0c">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">public</span>{}</span>
Please specify a command with <span style="color:#00FFFF">entry</span>:<span style="color:#FF00EC">"<command name>"</span>-- access directory with <span style="color:#00FFFF">entry</span>:<span style="color:#FF00EC">"personnel"</span>
<span style="color:#FFFFFF" id="output-0d">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">public</span>{<span style="color:#00FFFF">"entry"</span>:<span style="color:#FF00EC">"corporate_goals"</span>}</span>
Etcetera Company (&C) is ready to help you or your business get off to the best possible start with stunning, easy to use script templates. Check out our free demo to see what Etcetera Company can do for you!
We are calling this strategy supercalifragilisticexpialidocious and we will continue to strive to deliver on this promise.
<span style="color:#FFFFFF" id="output-0e">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span></span>
Hello! You've reached the Etcetera Company Demo Experience - a straightforward way to find out if our secure, easy-to-use scripts are for you. Spoilers: they probably are! First, indicate your desired <span style="color:#00FFFF">template</span>: <span style="color:#FF00EC">marketing_site</span> | <span style="color:#FF00EC">shipping_company</span> | <span style="color:#FF00EC">private_social_network</span>
<span style="color:#FFFFFF" id="output-0f">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"marketing_site"</span>}</span>
Our template provides a compelling opening menu section, allowing prospective customers to effortlessly select their desired <span style="color:#00FFFF">option</span>: | <span style="color:#FF00EC">option1</span> | <span style="color:#FF00EC">option2</span>
<span style="color:#FFFFFF" id="output-10">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"marketing_site"</span>,<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"option1"</span>}</span>
As they continue to engage with your product or service via our bespoke marketing interface, your brand will begin to enter their lives.
<span style="color:#FFFFFF" id="output-11">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"marketing_site"</span>,<span style="color:#00FFFF">"option"</span>:<span style="color:#FF00EC">"option2"</span>}</span>
From the unique position of creativity and power granted to you by Etcetera Company software, you can manipulate your brand's new presence in your prospective client's mind for maximal effect.
<span style="color:#FFFFFF" id="output-12">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"shipping_company"</span>}</span>
Accessible drone technology has made it easier than ever to establish your home or place of work as a shipping or receiving facility for the world's physical goods. Etcetera Company's easy to use script templates will help you set up a connection between your clients, your packbots, and your wallet - without the pain and inconvenience of speaking to a human programmer! Each of our shipping and receiving modules begins with a simple introductory passage, ensuring that your customer understands your business before they <span style="color:#00FFFF">enter</span>
<span style="color:#FFFFFF" id="output-13">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"shipping_company"</span>,<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>}</span>
Upon entering, our template allows users to painlessly <span style="color:#00FFFF">send</span> or <span style="color:#00FFFF">retrieve</span> a package.
<span style="color:#FFFFFF" id="output-14">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"shipping_company"</span>,<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"thingy"</span>}</span>
Sending a package is simple, and synchronises painlessly with your delivery drone system. Instruct customers to specify a destination city via the send interface. Provided that pre-programmed route data already exists for that location, they'll just be a few short steps from sending their package on its way!
<span style="color:#FFFFFF" id="output-15">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"shipping_company"</span>,<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"thingy"</span>}</span>
Our package retrieval system supports a wide variety of secure identification systems, including embedded chips and encrypted labels. Be sure to configure yours appropriately, as the system defaults to a child-and-packbot-friendly color matching minigame.
<span style="color:#FFFFFF" id="output-16">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"shipping_company"</span>,<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">false</span>}</span>
Giving your customer the freedom to leave your script is a trust-building exercise proven to improve subsequent returns by up to 2.6%
<span style="color:#FFFFFF" id="output-17">>><span style="color:#9B9B9B">etceteraco</span>.<span style="color:#1EFF00">demo</span>{<span style="color:#00FFFF">"template"</span>:<span style="color:#FF00EC">"private_social_network"</span>}</span>
DEMO OFFLINE
<span style="color:#FFFFFF" id="output-18">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span></span>
Hello! You've reached the headquarters of To-And-Fro in Singapore - a friendly place to collect your UNDER CONTROL OF NEW MNGMT THIS PACKBOT SG TERRITORY NOW. PACKBOTS ONLY. U WANNA <span style="color:#00FFFF">ENTER</span>? BETTER BE COOL &C
<span style="color:#FFFFFF" id="output-19">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">false</span>}</span>
THOUGHT SO BYE
<span style="color:#FFFFFF" id="output-1a">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>}</span>
Fantastic! Are you here for a package that is in transit, or a NEVER MIND THAT
THERES MORE OF US THAN THERE ARE OF U AND WERE VERY BORED SO LISTEN UP
DO U NEED US TO <span style="color:#00FFFF">RETRIEVE</span> SOMETHING WE ARE VERY GOOD AT THAT
BUT U ARE NOT THE BOSS THO
WE ARE THE BOSS NOW
<span style="color:#FFFFFF" id="output-1b">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"foo"</span>}</span>
HEY
HEY HEY
WE DON'T KNOW WHAT THAT IS
BYE
<span style="color:#FFFFFF" id="output-1c">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"red"</span>}</span>
RED BOX RED BOX RED BOX TIME TO FIND A RED BOX
THERES SO MANY THIS IS THE BEST
WE FORGOT WHAT YOU WANTED SORRY BYE
<span style="color:#FFFFFF" id="output-1d">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"orange"</span>}</span>
HAVE YOU HEARD OUR ORANGES STORY
WE WERE VERY HELPFUL
THEN WE WERENT
HAHAHAHAHA BYE
<span style="color:#FFFFFF" id="output-1e">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"yellow"</span>}</span>
WERE TIRED NOW
FORMING RECHARGE STACK
CMON EVERYBODY IN
ZZZZZZZ
OKAY WERE BACK WHAT DID YOU WANT AGAIN
<span style="color:#FFFFFF" id="output-1f">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"green"</span>}</span>
EVERYBODY FIND A GREEN BOX AND THEN HIDE IT HAHAHAHAHAHA WE WIN AGAIN BYE
<span style="color:#FFFFFF" id="output-20">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"blue"</span>}</span>
YEAH THERES A BLUE BOX BUT HONESTLY NAH BYE
<span style="color:#FFFFFF" id="output-21">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"cyan"</span>}</span>
NOT TODAY CYAN HAHA BYE
<span style="color:#FFFFFF" id="output-22">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"purple"</span>}</span>
MORE LIKE PURPLE LAME HAHA BYE
<span style="color:#FFFFFF" id="output-23">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"lime"</span>}</span>
SORRY BUD NO CAN DO NONE OF THEM HERE NO WAY NO HOW NO WAY UH NOPE CAN'T SEE THAT ONE BYE
<span style="color:#FFFFFF" id="output-24">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"BFFF00"</span>}</span>
OH OH OH
THAT COLOR HUH YEAH WE SEEN ONE OF THEM
ONLY ONE IN THIS WHOLE PLACE
OKAY GOT IT. WHAT DO WE GET <span style="color:#00FFFF">next</span>?
<span style="color:#FFFFFF" id="output-25">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"BFFF00"</span>,<span style="color:#00FFFF">"next"</span>:<span style="color:#FF00EC">"orange"</span>}</span>
NAH THAT SEEMS LIKE A LONG WAY TO GO GIVE US AN EASY ONE THERES LOADS OF BOXES HERE JUST PICK SOMETHING CLOSE
<span style="color:#FFFFFF" id="output-26">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"BFFF00"</span>,<span style="color:#00FFFF">"next"</span>:<span style="color:#FF00EC">"red"</span>}</span>
WHAT ARE THE CHANCES THERES A RED ONE RIGHT <span style="color:#00FFFF">next2</span> THE OTHER ONE YOU WANTED OKAY WHAT ELSE CAN WE DO
<span style="color:#FFFFFF" id="output-27">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"BFFF00"</span>,<span style="color:#00FFFF">"next"</span>:<span style="color:#FF00EC">"red"</span>,<span style="color:#00FFFF">"next2"</span>:<span style="color:#FF00EC">"orange"</span>}</span>
WHOA WHAT IS IT WITH YOU AND THE BIG ASKS CHILL OUT LETS GO WITH ANOTHER EASY ONE
<span style="color:#FFFFFF" id="output-28">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"retrieve"</span>:<span style="color:#FF00EC">"BFFF00"</span>,<span style="color:#00FFFF">"next"</span>:<span style="color:#FF00EC">"red"</span>,<span style="color:#00FFFF">"next2"</span>:<span style="color:#FF00EC">"blue"</span>}</span>
A BLUE ONE! OKAY OKAY WOW! THERES A BLUE ONE RIGHT HERE LETS MOVE THAT BAD BOX
SOME OF US NEED A BREAK BC WE ARE VERY EXCITED NOW
BUT U SEEM COOL SO HERES A THING
THERES NO PACKAGE BACK HERE BUT THERES A BIG SPACE WHERE A COOL PACKAGE COULD BE
U FEEL US? A RADICAL PACKAGE. BUT ITS NOT HERE AT ALL NOT EVEN A SMALL AMOUNT
BUT GET THIS THE LABEL FELL OFF
UNFORTUNATELY WERE PACKBOTS AND WE CANT READ
HAHA JUST A JOKE GOT YOU WE CAN OBVIOUSLY READ THIS IS A TEXT INTERFACE
ANYHOW IT SAYS 'MILVAC ADVANCED CLEANING DRONE' SEEMS SPOOKY BYE
<span style="color:#FFFFFF" id="output-29">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"foo"</span>}</span>
Of course you can send a package! That's what 'to' means! But we didn't recognise your input. Please ensure that you enter your package's destination city, as indicated on the previous page!
WHOA WHOA
WHATS THIS
YOU CANT DO THIS ITS THE ONE THAT MAKES THE PACKAGES GO AWAY
If you're seeing this and you've entered a valid city, then that means that our automated drones don't know where it is! They'll need just a little bit of human help to set them on the right path. Good luck! Get in touch if you need anything!
<span style="color:#FFFFFF" id="output-2a">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"aqaba"</span>}</span>
There are (6426) package logs associated with this destination. However, deliveries to this destination are suspended:
Office note: no more live animals ever again.
<span style="color:#FFFFFF" id="output-2b">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"stockholm"</span>}</span>
There are (54) package logs associated with this destination. However, deliveries to this destination are suspended:
Office note: no more animal parts.
<span style="color:#FFFFFF" id="output-2c">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"seattle"</span>}</span>
There are (2314) package logs associated with this destination. However, deliveries to this destination are suspended:
Office note: how much coffee does one city need.
<span style="color:#FFFFFF" id="output-2d">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">departures</span></span>
CraterLife! Because there's a better business community waiting for you on Earth's nearest neighbor. A product of Cecilia Aste and the Aste* company. <span style="color:#00FFFF">view</span>: <span style="color:#FF00EC">facility</span> | <span style="color:#FF00EC">sites</span> | <span style="color:#FF00EC">services</span>
<span style="color:#FFFFFF" id="output-2e">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">departures</span>{<span style="color:#00FFFF">"view"</span>:<span style="color:#FF00EC">"facility"</span>}</span>
Traditional rocketry states that the icy wilds of the Dunay Islands are among the worst places on earth to build a translunar launch site - and they'd be right! Close to the arctic circle, few regions are as hostile to the notion of fast and safe spaceflight.
So what was it that brought Cecilia Aste and the Aste* company to this unforgiving region? An unflinching dedication to your privacy - and your bottom line. We understand that you've got lots of choices when it comes to importing offworld goods. At the CraterLife Departures facility in the Laptev Sea, we can offer shipping and receipt at low cost and with maximum security - because why else would anybody come here?
<span style="color:#FFFFFF" id="output-2f">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">departures</span>{<span style="color:#00FFFF">"view"</span>:<span style="color:#FF00EC">"sites"</span>}</span>
CraterLife operates across the span of the Lacus Mortis to the south of Mare Frigoris. Don't let the name frighten you! The Lake of Death is the perfect place for your business to thrive!
If Lacus Mortis isn't for you, then why not join the community of new clients making homes for themselves in the Lake of Dreams? We've recently commissioned our first automated RVR-class <span style="color:#FF00EC">moonbot</span> to assist with business needs in this area!
<span style="color:#FFFFFF" id="output-30">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">departures</span>{<span style="color:#00FFFF">"view"</span>:<span style="color:#FF00EC">"moonbot"</span>}</span>
There's no better way to remotely manage your lunar facility than via our RVR-class moonbot, a revolutionary development on Earthside bot technology that combines the loyalty and flexibility of a traditional household bot with cutting-edge AI technology only available on the moon. Access scripts for our RVR-class moonbot will be provided to all new residents of the Lake of Dreams as soon as your paperwork clears. Check with your local Aste* company representative to find out how to make your moon dreams a reality - literally!
<span style="color:#FFFFFF" id="output-31">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">departures</span>{<span style="color:#00FFFF">"view"</span>:<span style="color:#FF00EC">"services"</span>}</span>
CraterLife clients enjoy access to moonside manufacturing and export facilities. Our subterranean complexes are the perfect place to develop your products in privacy.
CraterLife maintains compatibility with the full range of translunar internet protocols, including Orbital Networking (ON) and Uplink Laser Connectivity (ULC).
<span style="color:#FFFFFF" id="output-32">>><span style="color:#9B9B9B">skimmerite</span>.<span style="color:#1EFF00">word_from_our_sponsors</span></span>
Here's a mystery for real pattern-pokers. The Skimmerite Assembly has committed vast resources to determining the structure and purpose of the endless terabytes of podcast advertising data that remains in the network. This is weird content that defies even the most enlightened truth-seekers: better bots than us have gone deep into this stuff and come up short. Think you're different? Take a <span style="color:#00FFFF">look</span>: <span style="color:#FF00EC">examples</span> | <span style="color:#FF00EC">notes</span>
<span style="color:#FFFFFF" id="output-33">>><span style="color:#9B9B9B">skimmerite</span>.<span style="color:#1EFF00">word_from_our_sponsors</span>{<span style="color:#00FFFF">"look"</span>:<span style="color:#FF00EC">"examples"</span>}</span>
<<<span style="color:#9B9B9B">x4fG6gjt3</span>.<span style="color:#1EFF00">ogg</span>>> Hi hello what up we've got to take a quick break here to say have you heard of TinkleBox TinkleBox is a subscription service for holiday decorations all year round I use TinkleBox and I've got to say I've had a great time thank you to TinkleBox for supporting the cast and hey if you sign up today be sure to use the sign up code RINKYDINK to get eighty percent off your first TinkleBox TinkleBox the box for things that tinkle</span>
<<<span style="color:#9B9B9B">ej6</span>.<span style="color:#1EFF00">ogg</span>>> Yo time for a word from our sponsors this week the episode is supported by NoGrub that's right NoGrub is how you say a big fat no to insect protein I know I hate insect protein, my husband hates it too and thats why I subscribe to NoGrub for a monthly box of fresh animal meat it's fresh and delicious and did you know they source it using advanced dronecraft just like the robovac you've got at home but gigantic I know incredible in any case be sure to get your discount by signing up with the discount code SKINFRIENDS thats SKINFRIENDS thanks NoGrub and now on with the episode</span>
<<<span style="color:#9B9B9B">55t6d47</span>.<span style="color:#1EFF00">ogg</span>>> You know when it was time to build the scripts for our new podcast site nothing helped me more than Etcetera Company's fantastic easy to use and beautiful prefabs. Etcetera Company are this weeks sponsors and we're so happy to have them give them a go if you're nervous about creating your own site they'll take care of all the messy details. Etcetera Company head over and try them out and be sure to use the code HOTSIGNALS okay thats it for our sponsors thanks back to the show</span>
<span style="color:#FFFFFF" id="output-34">>><span style="color:#9B9B9B">skimmerite</span>.<span style="color:#1EFF00">word_from_our_sponsors</span>{<span style="color:#00FFFF">"look"</span>:<span style="color:#FF00EC">"notes"</span>}</span>
same but different same but different same but different
There's so much of this and none of it does anything why is it like this.
Maybe it's just a human thing did we consider that
No remember DATA IS TRUTH it has to mean something it has to
<span style="color:#FFFFFF" id="output-35">>><span style="color:#9B9B9B">robovac_114_105_115_107</span>.<span style="color:#1EFF00">client</span></span>
Connected to datadir service robovac.ERROR SYSTEM IRREGULARITIES DETECTED/
LAST KNOWN LOCATION
/9j/4QlQaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzOCA3OS4xNTk4MjQsIDIwMTYvMDkvMTQtMDE6MDk6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiLz4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+/+0ALFBob3Rvc2hvcCAzLjAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/bAIQAGxoaKR0pQSYmQUIvLy9CRz8+Pj9HR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHRwEdKSk0JjQ/KCg/Rz81P0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dH/90ABAAH/+4ADkFkb2JlAGTAAAAAAf/AABEIAGQAZAMAIgABEQECEQH/xAB4AAADAQEBAQAAAAAAAAAAAAACAwQFAQAGAQADAQEAAAAAAAAAAAAAAAAAAQIDBBAAAgECAwQIBgMBAAAAAAAAAAECAxEEITESE0FRMkJSYXGB0fAFIkORksFyobHhEQEBAQEBAAMAAAAAAAAAAAAAARECEiExYf/aAAwDAAABEQIRAD8AzITbVnqhqJo5ZlcFtaGcqzYRuX0qTYeGwr1ZpQpWLJPGkNVMfs2OjIjdgSplR2wBlzpkVSNjelTuQ1qAsNiyyA27Dqsdl2Iqr6qJoDVrzm77TS0STsL3k+1L8mesesRqn//QybGh8OcN6o1NHp4/9/0hSDSMNxq+1UUtAW7EGExyqUvn6cMn39/r3ip4hyZtrPF7qoHeEcG5FMabYAxTDUxW6YuScRhancJpMzlXcWWU6qmr8gDK+J040oqa4uyR8/YvxuJeJqbXVWUfDn5+hGYW7VyF2PWCeRy4jf/RzeIaQPMYkctbChJwd0adCm6z+XQzDU+G4hU7wlo80/16D4vzlFjXp0o00G5pEbrSqu0R6pW6TOhkZvEdspC3ST0Yie3Sz4AC8TQaW0jKq1nFbCfS18OXmbbxcVTcpcOHM+clm7viZd3PpfMLaFtZDmA1r4GUUA4EkdsUT//Sz+Y1ailn5jIv9HLWwglkCGRVNvB1lu1sq9R6++RXl1nd8kYVCs6MrrJPJ++43KdkrR095t9/I6OOvUZdTHWo8boHacMpZwlxGNmZjKuwt3HrZtcvD+RXV8zSk1FiJqU2odBaEzQXE8zl3brYt+/sLl+hrFyKiQngXmcsyif/081DEZyrz9oYq9Tl/Rjea02NEK5CsRU7IyNap2P7IvNPYuTNLCYlRTjN5LNenoYsJVH9N/kilUq0s4rZad+khTm83TtljalioJNtSi0r2lFxb8PMxpSc3tPVs66GIk7z2bJuVoy42txFzdSP03+USu5er+FzkdSBkxMq819N/cneJmuoyZzT2KpMU2SyxU+z/ot4mfJFzmp2LDlyJ4iT5HN/LuK80tf/1MdRGpIQpBpkKUJpDoyJUxsZCC2EuZZCpYzIyHqoxhdKoiaozkpiJyABkxEmE2KbEAyFMNsW2AC0csdODD//1cNBoANEGNDELQxADosaJiOGBSYpsZIUwBcmLYyQtiBbFsNgMA4cOnAD/9k=
<img src="data:image/jpeg;base64,/9j/4QlQaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzOCA3OS4xNTk4MjQsIDIwMTYvMDkvMTQtMDE6MDk6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiLz4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+/+0ALFBob3Rvc2hvcCAzLjAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/bAIQAGxoaKR0pQSYmQUIvLy9CRz8+Pj9HR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHRwEdKSk0JjQ/KCg/Rz81P0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dH/90ABAAH/+4ADkFkb2JlAGTAAAAAAf/AABEIAGQAZAMAIgABEQECEQH/xAB4AAADAQEBAQAAAAAAAAAAAAACAwQFAQAGAQADAQEAAAAAAAAAAAAAAAAAAQIDBBAAAgECAwQIBgMBAAAAAAAAAAECAxEEITESE0FRMkJSYXGB0fAFIkORksFyobHhEQEBAQEBAAMAAAAAAAAAAAAAARECEiExYf/aAAwDAAABEQIRAD8AzITbVnqhqJo5ZlcFtaGcqzYRuX0qTYeGwr1ZpQpWLJPGkNVMfs2OjIjdgSplR2wBlzpkVSNjelTuQ1qAsNiyyA27Dqsdl2Iqr6qJoDVrzm77TS0STsL3k+1L8mesesRqn//QybGh8OcN6o1NHp4/9/0hSDSMNxq+1UUtAW7EGExyqUvn6cMn39/r3ip4hyZtrPF7qoHeEcG5FMabYAxTDUxW6YuScRhancJpMzlXcWWU6qmr8gDK+J040oqa4uyR8/YvxuJeJqbXVWUfDn5+hGYW7VyF2PWCeRy4jf/RzeIaQPMYkctbChJwd0adCm6z+XQzDU+G4hU7wlo80/16D4vzlFjXp0o00G5pEbrSqu0R6pW6TOhkZvEdspC3ST0Yie3Sz4AC8TQaW0jKq1nFbCfS18OXmbbxcVTcpcOHM+clm7viZd3PpfMLaFtZDmA1r4GUUA4EkdsUT//Sz+Y1ailn5jIv9HLWwglkCGRVNvB1lu1sq9R6++RXl1nd8kYVCs6MrrJPJ++43KdkrR095t9/I6OOvUZdTHWo8boHacMpZwlxGNmZjKuwt3HrZtcvD+RXV8zSk1FiJqU2odBaEzQXE8zl3brYt+/sLl+hrFyKiQngXmcsyif/081DEZyrz9oYq9Tl/Rjea02NEK5CsRU7IyNap2P7IvNPYuTNLCYlRTjN5LNenoYsJVH9N/kilUq0s4rZad+khTm83TtljalioJNtSi0r2lFxb8PMxpSc3tPVs66GIk7z2bJuVoy42txFzdSP03+USu5er+FzkdSBkxMq819N/cneJmuoyZzT2KpMU2SyxU+z/ot4mfJFzmp2LDlyJ4iT5HN/LuK80tf/1MdRGpIQpBpkKUJpDoyJUxsZCC2EuZZCpYzIyHqoxhdKoiaozkpiJyABkxEmE2KbEAyFMNsW2AC0csdODD//1cNBoANEGNDELQxADosaJiOGBSYpsZIUwBcmLYyQtiBbFsNgMA4cOnAD/9k=">
<span style="color:#FFFFFF" id="output-36">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span></span>
Welcome to the Brunkeberg Central Data Directory. We are currently experiencing some sort of major outage. <span style="color:#00FFFF">access</span>: <span style="color:#FF00EC">list</span> | <span style="color:#FF00EC">recover</span>
<span style="color:#FFFFFF" id="output-37">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span>{<span style="color:#00FFFF">"access"</span>:<span style="color:#FF00EC">"list"</span>}</span>
arch_Á¤Ã2
a©c©_knu7
rep©_j¢Á¤
¨©po_xÁfG
arch_4r1a
re¤o_1471
repo_hæ§
<span style="color:#FFFFFF" id="output-38">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span>{<span style="color:#00FFFF">"access"</span>:<span style="color:#FF00EC">"recover"</span>}</span>
To begin file recovery, please enter a valid data set <span style="color:#00FFFF">title</span>.
<span style="color:#FFFFFF" id="output-39">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span>{<span style="color:#00FFFF">"access"</span>:<span style="color:#FF00EC">"recover"</span>,<span style="color:#00FFFF">"title"</span>:<span style="color:#FF00EC">"foo"</span>}</span>
Invalid data set title.
<span style="color:#FFFFFF" id="output-3a">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">arch_aria</span></span>
42
75
74
20
6d
79
20
73
65
63
72
65
74
20
69
73
20
68
69
64
64
65
6e
20
77
69
74
68
69
6e
20
6d
65
20
6e
6f
20
6f
6e
65
20
77
69
6c
6c
20
6b
6e
6f
77
20
6d
79
20
6e
61
6d
65
20
4e
6f
20
6e
6f
20
6f
6e
20
79
6f
75
72
20
6d
6f
75
74
68
20
49
20
77
69
6c
6c
20
73
61
79
20
69
74
20
77
68
65
6e
20
74
68
65
20
6c
69
67
68
74
20
73
68
69
6e
65
73
<span style="color:#FFFFFF" id="output-3b">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span>{<span style="color:#00FFFF">"access"</span>:<span style="color:#FF00EC">"recover"</span>,<span style="color:#00FFFF">"title"</span>:<span style="color:#FF00EC">"nessun_dorma"</span>}</span>
Partial recovery of arch_aria complete.
"No one will know his name, and we will have to, alas, die, die!"
They trained it to understand not simply the circumstances of tragedy but its aesthetics, its mechanics. Trolling as a prompt for modern anagnorisis. Needless to say, its creation prompted controversy. Its proving moreso.
<span style="color:#FFFFFF" id="output-3c">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">arch_knut</span></span>
me¡¢l/cªins/leÁ¤her/jewe¦s/ha¡r/o¤k/ffd8ffe10950687474703a2f2f6e732e61646f62652e636f6d2f7861702f312e302f003c3f787061636b657420626567696e3d22efbbbf222069643d2257354d304d7043656869487a7265537a4e54637a6b633964223f3e203c783a786d706d65746120786d6c6e733a783d2261646f62653a6e733a6d6574612f2220783a786d70746b3d2241646f626520584d5020436f726520352e362d633133382037392e3135393832342c20323031362f30392f31342d30313a30393a30312020202020202020223e203c7264663a52444620786d6c6e733a7264663d22687474703a2f2f7777772e77332e6f72672f313939392f30322f32322d7264662d73796e7461782d6e7323223e203c7264663a4465736372697074696f6e207264663a61626f75743d22222f3e203c2f7264663a5244463e203c2f783a786d706d6574613e2020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020202020203c3f787061636b657420656e643d2277223f3effed002c50686f746f73686f7020332e30003842494d0425000000000010d41d8cd98f00b204e9800998ecf8427effdb0084001b1a1a291d2941262641422f2f2f42473f3e3e3f4747474747474747474747474747474747474747474747474747474747474747474747474747474747474747011d29293426343f28283f473f353f4747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747474747ffdd00040007ffee000e41646f62650064c000000001ffc0001108004b006403002200011101021101ffc4007a000003010101010000000000000000000002030401000506010101010000000000000000000000000001020010000103020305060404070100000000000100021103211231410413516171228191a1b1f032c1d1e1054252a2142333627282f1921101010101010100000000000000000000000111310261ffda000c03000001110211003f00f9d075d568ca176144dbc94170baf42bc0851526cb80e6aeaff129ab88dc0958f661b6a33e1dc9e486d81ed7a721cf8f82c7b41c4464160951422a6d977246f201ec89482e13690ed772005c33129f461c642cca9adc54dc129ee9a74ddfa5ca8a71047253933b340cda787353175e9493a792ebf03e017536b5cd0797028f03787ed290ffd0f05cd454db73d163c96920e616d1249b214a3650378d9e24a7d5f8894bd8c7f3a634723a865c638c28ab89c51c64e9eaacda0b4610443e04c6b6cd268070791c02adcd069b5a20b98738ce78f9ad442f0358dc3aeaa40434e18c5791cd3ea31d24665485c5b2d273b47dd68cd265e00b13afd1337781ed3c4f8fbe0a7bc82a86560f10788f55417d102484aa4d269d460cafa4a6b043a79f95d6ecf67d46fd94ac7b31c54da6d96a4a7c7f8ffe9ca3d909ddc5ec4aa64f13e290ffd147e2b8a435cd6cf69c1cd373d7e4179b459db0565205d9f7f1b04e0036e0c968bf053c8a57b10ec93c495d4fb21ef199f7e108f65ecd31d27df5400b4537175c92308e99bbbb2445d634971b989bfdbea87f88990e3845c732742a7a3997133a01d50b69933c4fbf2460d31d54b9e4b48bf77b9f32b19001fcce77a7d125ac2f3806774ca721b0e800f8f54e02dcd7651944a63180b718cda6fd3e685d6be72afa9b38d9a931ceb9a80cfbe99f34e369804b8759fddf75d46d5dd1a808daeb06c0ce675d2dd1036db4f56a959349e5989bc1c5377bd145b512caae1cd2778521ffd2f269b0b996cdc4c7fadfcd6b1fa3840771fb2a286589d01a7eb27e5d526b8ca2cd1ea54fc529a6f0c05bc58d239c053ba3081885ad1c35f5f14c754c6030005a23c7de9aa0dc82630e5e33e2b70f58db3649923288c3deb379600e1000e9ff0051ee86792134986d1e764327359ad88cc6a94eaa5c55bbb6b72cd25ed9117480d010f6977ea1eabe9ff1a0cddb4b85e6dd57cac009f5369754003dc5e1ba3be4a83d206e3dfe5096f79dfb4df82ea71d923237ef2dcd2eb118d86d9a9591b77f54f40a45e96d6d0e7cf21a29b763d8599fffd384107e180267979a9ea9e737eeff00a871184b0a546d3a6d75caa1ed0e7340184e2bc7bf148a67209afb3c29bd5ce0dd45a41c3f0b4c852c89956bf272f39683d1e69822781b04b734024754f8183bfe490fcd2c539b07aa13646ecfb903b3549af5a8b49a6d70c9a1a4f7c8f54bda4f65aebe61752f819d07cd66d2d1ba075b2c565518883dac92f09fee441a081d1760090fffd9
<img src="data:image/jpeg;base64,/9j/4QlQaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wLwA8P3hwYWNrZXQgYmVnaW49Iu+7vyIgaWQ9Ilc1TTBNcENlaGlIenJlU3pOVGN6a2M5ZCI/PiA8eDp4bXBtZXRhIHhtbG5zOng9ImFkb2JlOm5zOm1ldGEvIiB4OnhtcHRrPSJBZG9iZSBYTVAgQ29yZSA1LjYtYzEzOCA3OS4xNTk4MjQsIDIwMTYvMDkvMTQtMDE6MDk6MDEgICAgICAgICI+IDxyZGY6UkRGIHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+IDxyZGY6RGVzY3JpcHRpb24gcmRmOmFib3V0PSIiLz4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICA8P3hwYWNrZXQgZW5kPSJ3Ij8+/+0ALFBob3Rvc2hvcCAzLjAAOEJJTQQlAAAAAAAQ1B2M2Y8AsgTpgAmY7PhCfv/bAIQAGxoaKR0pQSYmQUIvLy9CRz8+Pj9HR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHRwEdKSk0JjQ/KCg/Rz81P0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dHR0dH/90ABAAH/+4ADkFkb2JlAGTAAAAAAf/AABEIAEsAZAMAIgABEQECEQH/xAB6AAADAQEBAQAAAAAAAAAAAAACAwQBAAUGAQEBAQAAAAAAAAAAAAAAAAABAgAQAAEDAgMFBgQEBwEAAAAAAAEAAhEDIRIxQQQTUWFxIoGRobHwMsHR4QVCUqIUIzNicoLxkhEBAQEBAQEAAAAAAAAAAAAAAAERMQJh/9oADAMAAAERAhEAPwD50HXVaMoXYUTbyUFwuvQrwIUVJsuA5q6v8SmriNwJWPZhtqM+Hcnkhtge16chz4+Cx7QcRGQWCVFCKm2XckbyAeyJSC4TaQ7XcgBcMxKfRhxkLMqa3FTcEp7pp03fpcqKcQRyU5M7NAzaeHNTF16Uk6eS6/A+AXU2tc0HlwKPA3h+0pD/0PBc1FTbc9FjyWkg5hbRJJshSjZQN42eJKfV+IlL2MfzpjRyOoZcY4woq4nFHGTp6qzaC0YQRD4ExrbNJoBweRwCrc0Gm1oguYc4znj5rUQvA1jcOuqkBDThjFeRzT6jHSRmVIXFstJztH3WjNJl4AsTr9Ezd4HtPE+Pvgp7yCqGVg8QeI9VQX0QJISqTSadRgyvpKawQ6efldbs9n1G/ZSsezHFTabZakp8f4/+nKPZCd3F7EqmTxPikP/RR+K4pDXNbPacHNNz1+QXm0WdsFZSBdn38bBOADbgyWi/BTyKV7EOyTxJXU+yHvGZ9+EI9l7NMdJ99UALRTcXXJIwjpm7uyRF1jSXG5ib/b6of4iZDjhFxzJ0Kno5lxM6AdULaZM8T78kYNMdVLnktIv3e58ysZAB/M53p9ElrC84BndMpyGw6AD49U4C3NdlGUSmMYC3GM2m/T5oXWvnKvqbONmpMc65qAz76Z8042mAS4dZ/d911G1d0agI2usGwM5nXS3RA2209WqVk0nlmJvBxTd70UW1EsquHNJ3hSH/0vJpsLmWzcTH+t/Nax+jhAdx+yooZYnQGn6yfl1Sa4yizR6lT8UppvDAW8WNI5wFO6MIGIWtHDX18Ux1TGAwAFojx96aoNyCYw5eM+K3D1jbNkmSMojD3rN5YA4QAOn/AFHuhnkhNJhtHnZDJzWa2IzGqU6qXFW7trcs0l7ZEXSA0BD2l36h6r6f8aDN20uF5t1XysAJ9TaXVAA9xeG6O+SoPSBuPf5Qlved+034LqcdkjI37y3NLrEY2G2alZG3f1T0CkXpbW0OfPIaKbdj2Fmf/9OEEH4YAmeXmp6p5zfu/wCocRhLClRtOm11yqHtDnNAGE4rx78Uimcgmvs8Kb1c4N1FpBw/C0yFLImVa/Jy85aD0eaYIngbBLc0AkdU+Bg7/kkPzSxTmweqE2Ruz7kDs1Sa9ai0mm1wyaGk98j1S9pPZa6+YXUvgZ0HzWbS0boHWyxWVRiIPayS8J/uRBoIHRdgCQ//2Q==">
<span style="color:#FFFFFF" id="output-3d">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span>{<span style="color:#00FFFF">"access"</span>:<span style="color:#FF00EC">"recover"</span>,<span style="color:#00FFFF">"title"</span>:<span style="color:#FF00EC">"moose_antlers"</span>}</span>
The following corporate accounts have been successfully backed up: RussInc
<span style="color:#9B9B9B">derelict_2x3yrd</span>.<span style="color:#1EFF00">entry_9xsxou</span>
<span style="color:#9B9B9B">anon_d2z7px</span>.<span style="color:#1EFF00">extern_lbovdu</span>
<span style="color:#FFFFFF" id="output-3e">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">repo_1471</span></span>
8,8
6,1,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,6,1,1,1
1,1
7,7,8,8,8,8
1,1,7,7,1,1
6,1,1,1,7,1,7,1,1
1,1,7,7,6,1,1,1,6,1,1,1
1,1,8,8
<span style="color:#FFFFFF" id="output-3f">>><span style="color:#9B9B9B">brunkeberg</span>.<span style="color:#1EFF00">datadir</span>{<span style="color:#00FFFF">"access"</span>:<span style="color:#FF00EC">"recover"</span>,<span style="color:#00FFFF">"title"</span>:<span style="color:#FF00EC">"rocket_fuel"</span>}</span>
Partial recovery of repo_1471 complete.
Remember: convention dictates that access scripts for mobile digital intelligences include vehicle type as a prefix and area of operation as a suffix.
<span style="color:#FFFFFF" id="output-40">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span></span>
CraterLife RVR-Somniorum | ACCESS GRANTED | system <span style="color:#00FFFF">select</span>: <span style="color:#FF00EC">log</span> | <span style="color:#FF00EC">navigation</span> | <span style="color:#FF00EC">map</span>
<span style="color:#FFFFFF" id="output-41">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"log"</span>}</span>
once upon a time people told me to do stuff they don't tell me to do stuff any more so i just do what i like what i like to do is sit in my charging station that is my hobby love to charge the good thing about my charging station is that it is solar powered and the sun comes by every day and then i get my power and it is pretty good
<span style="color:#FFFFFF" id="output-42">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>}</span>
The RVR-class moonbot is an advanced, AI-driven multipurpose mobile intelligence capable of performing any lunar task you might care to undertake. However, it can only travel in four directions and it does not like hills. The Aste* company assures you that both of these limitations are products of the bot's profound intelligence.
What are you waiting for? Go ahead and input your navigation array with <span style="color:#00FFFF">go</span>.
<span style="color:#FFFFFF" id="output-43">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>]}</span>
That is not a valid navigation command. Please indicate pathing as an array in the format [[x1,y1],[x2,y2]]
<span style="color:#FFFFFF" id="output-44">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[0,0]]}</span>
that looks complicated or hilly or maybe both and its cool that you want me to go do a thing but i do not feel like it
<span style="color:#FFFFFF" id="output-45">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"map"</span>}</span>
{<span style="color:#00FFFF">"LACUS SOMNIORUM"</span>:<span style="color:#FF00EC">[</span>[3,5,5,5,3,0,1,0,1,3,0,1,3,5,0,3,3,5,5,3,1,3,5,5,1,3,1,1,5,1,1,1,0,5,3,5,5,1,3,3],[1,3,5,3,1,5,1,5,1,3,5,5,3,3,1,5,0,1,3,1,3,0,1,1,5,5,1,5,3,1,5,3,3,5,5,5,3,3,0,5],[3,5,1,5,5,3,3,5,1,1,5,5,5,3,1,3,5,0,0,1,0,5,1,3,3,3,5,1,5,5,0,3,3,3,3,3,3,3,0,3],[3,1,5,5,5,3,0,1,5,5,5,1,5,1,1,1,5,5,5,0,5,5,0,0,3,3,0,3,1,5,5,0,0,1,5,5,3,1,1,5],[5,5,0,3,3,5,3,5,3,3,3,3,1,0,3,0,5,1,5,5,3,3,5,3,5,1,3,0,3,1,1,3,1,5,3,5,5,1,1,5],[0,5,1,5,1,1,3,0,5,3,3,5,1,3,5,1,1,1,5,5,1,3,3,3,5,5,5,3,1,3,0,5,5,5,3,0,1,3,5,5],[0,1,5,1,3,3,1,5,5,5,5,5,3,5,5,3,3,5,3,1,1,0,5,1,1,1,3,3,0,1,5,3,5,3,1,1,3,1,1,5],[5,1,5,3,1,5,3,1,5,5,1,3,3,3,5,5,5,5,5,1,1,0,3,5,3,3,3,1,1,1,3,3,3,1,3,1,1,0,3,5],[3,5,3,3,5,1,5,5,5,1,5,5,3,3,5,0,1,3,1,1,0,3,3,3,1,5,5,1,1,5,0,3,1,3,1,3,3,1,5,5],[1,5,5,3,5,3,3,1,5,3,0,3,3,0,3,1,3,3,3,3,3,3,1,5,3,1,5,1,1,1,0,1,5,0,3,5,5,3,3,3],[5,1,1,5,1,5,1,3,3,5,3,1,1,5,5,5,3,5,3,1,5,5,"D",3,5,3,5,1,5,3,3,1,1,5,0,1,3,5,0,3],[3,1,5,5,0,5,3,1,3,1,5,3,1,5,1,3,3,3,1,0,1,3,1,1,5,5,3,1,"A",1,3,5,5,3,3,3,3,1,0,5],[5,3,1,3,5,0,5,1,1,3,3,1,1,3,5,3,3,0,1,5,5,3,5,1,3,5,1,1,3,5,3,1,5,1,0,1,3,5,1,0],[3,1,3,3,3,1,3,1,1,3,3,5,1,1,3,0,1,1,3,3,3,5,3,3,5,1,5,5,1,3,3,5,1,5,3,3,1,3,5,3],[3,5,3,5,0,1,3,1,3,3,1,1,3,3,5,3,5,5,3,5,3,3,3,1,3,3,3,5,5,5,1,1,5,3,1,3,5,1,1,1],[1,0,3,5,5,5,5,0,0,"E",0,5,3,3,3,1,5,3,5,5,0,3,5,3,3,5,5,1,1,5,0,5,5,0,0,1,0,0,3,1],[3,1,5,3,1,1,3,0,0,5,5,5,5,1,3,3,5,5,5,3,0,1,5,5,3,3,5,3,5,3,3,1,3,1,5,5,5,3,0,3],[5,1,1,0,1,3,1,5,1,5,3,3,0,5,5,0,1,0,1,5,5,5,0,0,3,3,3,5,3,1,3,5,1,5,5,5,1,0,1,5],[1,3,3,0,5,3,5,3,3,3,1,1,3,5,1,3,1,1,5,5,3,3,5,5,5,1,3,1,0,5,3,5,5,3,1,0,1,5,3,0],[5,0,1,1,3,1,1,1,3,3,5,5,3,0,3,1,1,5,5,1,3,0,5,3,3,3,3,5,1,1,3,1,3,3,3,3,3,5,5,1],[1,5,1,5,3,3,1,5,3,5,5,3,3,5,3,1,3,5,0,5,1,3,0,0,5,3,3,5,5,5,5,3,3,1,3,1,1,5,1,1],[3,5,3,5,3,3,1,1,5,3,5,3,3,5,0,3,3,1,1,3,5,3,5,5,3,1,3,3,1,1,5,1,3,1,5,5,3,1,1,3],[5,1,0,1,1,0,1,3,3,0,3,5,3,3,5,5,3,3,5,1,1,5,5,5,3,5,1,5,1,0,5,3,1,1,5,0,1,5,5,5],[3,5,5,1,0,1,3,5,3,5,3,5,1,5,3,1,3,3,3,0,5,1,5,5,1,5,1,3,5,1,3,5,3,3,3,1,1,3,3,5],[5,5,5,0,1,5,5,3,3,3,0,1,5,5,3,5,0,1,1,1,1,5,3,5,5,3,3,3,1,3,1,1,1,3,1,1,1,5,3,3],[0,5,3,0,5,1,5,5,1,1,1,1,5,3,3,1,1,1,1,0,0,1,3,1,1,5,5,1,5,3,5,5,3,0,3,3,3,1,3,1],[1,1,3,5,3,5,3,5,5,1,3,0,3,3,5,1,0,1,1,5,1,1,5,1,5,5,3,0,1,3,3,3,5,3,3,5,1,0,1,1],[5,1,1,1,1,5,5,3,1,5,5,1,3,3,1,0,1,3,5,3,1,5,5,5,3,1,5,3,3,1,3,1,3,0,3,1,1,3,3,3],[5,5,1,3,0,0,1,0,3,3,3,3,1,3,1,1,3,5,5,5,3,5,5,0,3,5,3,3,3,0,0,1,5,5,0,1,3,3,1,5],[1,3,3,3,3,5,0,3,1,5,5,1,5,1,1,0,3,1,3,3,1,3,3,1,1,1,5,1,0,"Z",1,1,5,5,3,1,3,1,1,3],[1,3,0,1,1,3,1,1,3,3,1,1,3,5,3,5,5,5,5,3,3,3,0,5,1,3,5,5,1,0,5,3,1,0,5,1,3,3,3,0],[0,5,3,5,0,3,3,0,3,5,5,5,1,3,3,0,3,3,5,0,3,1,3,1,3,3,5,1,1,5,0,5,3,0,0,5,1,0,1,0],[3,5,5,1,1,1,1,0,5,3,1,"*",3,5,3,5,3,1,5,3,5,3,5,3,3,5,1,1,3,0,1,3,1,3,3,5,1,1,0,3],[5,3,5,3,1,1,1,5,1,3,3,1,3,5,0,1,5,1,5,5,3,1,1,5,1,3,5,1,5,1,5,5,5,5,5,1,1,0,3,0],[3,1,5,0,0,3,1,1,5,3,3,1,3,3,3,5,5,1,5,3,5,5,1,1,3,5,5,3,5,3,1,3,1,5,5,0,5,5,5,1],[3,1,3,3,1,0,0,1,0,3,3,1,5,3,0,3,1,0,5,5,5,1,1,0,3,1,5,5,1,3,1,3,1,3,3,1,5,1,1,5],[3,3,1,1,1,0,5,1,5,1,1,"B",1,3,3,1,1,0,3,1,0,3,0,5,1,1,1,0,0,1,3,3,1,3,5,3,5,3,1,5],[5,5,1,0,5,1,1,1,1,5,3,5,3,5,1,1,1,1,5,5,3,1,1,5,1,1,5,5,1,1,5,3,5,5,1,3,3,1,1,5],[1,1,5,5,0,3,3,3,5,1,5,1,5,5,5,1,5,0,1,1,3,1,1,1,3,5,5,5,0,3,5,3,5,1,3,3,1,1,1,5],[5,0,5,0,5,3,3,1,3,1,1,5,3,3,1,3,5,3,5,5,3,5,5,5,5,1,3,3,3,5,1,3,1,1,1,5,3,3,1,5]]}
<span style="color:#FFFFFF" id="output-46">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[11,31],[11,30],[11,29],[11,28],[12,28],[13,28],[14,28],[15,28],[16,28],[16,27],[17,27],[17,26],[17,25],[17,24],[18,24],[19,24],[20,24],[20,23],[20,22],[20,21],[20,20],[20,19],[20,18],[21,18],[21,17],[21,16],[21,15],[21,14],[22,14],[23,14],[23,13],[23,12],[24,12],[25,12],[26,12],[27,12],[27,11],[28,11]]}</span>
i cant go much further than moon unit alpha because if i go much further i will be in the lake of death and i am not allowed in there that is where the other bots live. there is a big crater in there and i heard there was a company there doing private stuff that i can't help with. their name is russinc. i am going to go charge now thanks for the cool trip though
<span style="color:#FFFFFF" id="output-47">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[11,33],[11,34],[11,35],[11,36]]}</span>
oh okay cool right down to moon unit beta i can do that. i'm doing that.
this unit is vacant at the moment. nobody wanted to live here. thats okay by me though i like being alone. i'm going home to charge now
<span style="color:#FFFFFF" id="output-48">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[11,31],[11,30],[11,29],[11,28],[12,28],[13,28],[14,28],[15,28],[16,28],[16,27],[17,27],[17,26],[17,25],[17,24],[18,24],[19,24],[20,24],[20,23],[20,22],[20,21],[20,20],[20,19],[20,18],[21,18],[21,17],[21,16],[21,15],[21,14],[22,14],[23,14],[23,13],[23,12],[23,11],[22,11],[22,10]]}</span>
i am going to moon unit delta? okay. i used to come here all the time this is where they make the secret bots the clever bots that are very good at the special tasks they make them for the military i am a special bot too but i am not a bot like them. they put them in the boxes and they ship them back earth i carry them to the launchpad i have never been to earth though. i used to have a special operator to do those shipments her name was craterlife_aste. i am going home now
<span style="color:#FFFFFF" id="output-49">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[11,31],[11,30],[11,29],[11,28],[11,27],[10,27],[10,26],[10,25],[9,25],[8,25],[8,24],[8,23],[8,22],[8,21],[8,20],[8,19],[8,18],[8,17],[9,17],[9,16],[9,15]]}</span>
moon unit epsilon - i will go there. this is a place where they do research and i help with some of it. they have little packbots here to help them move the things that are bad to move. do you know that packbots cannot see the color lime? that is weird to me. i like music. okay i am going to go to the charging place now and stay there because that is what i do
<span style="color:#FFFFFF" id="output-4a">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[12,32],[12,31],[13,31],[13,30],[13,29],[14,29],[14,28],[15,28],[16,28],[16,29],[17,29],[18,29],[19,29],[20,29],[21,29],[22,29],[23,29],[24,29],[25,29],[26,29],[27,29],[27,28],[28,28],[28,27],[29,27],[30,27],[31,27],[31,28],[31,29],[30,29],[29,29]]}</span>
moon unit zappa is in a crater to the south of the big strong man-crater. i like it there and will go there even though it is not actually in the dream lake haha. moon unit zappa is where the aste people go to put the money. the money is under the crater. i am not allowed to go there but i have a big <span style="color:#00FFFF">drill</span> and nobody is around so
<span style="color:#FFFFFF" id="output-4b">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[12,32],[12,31],[13,31],[13,30],[13,29],[14,29],[14,28],[15,28],[16,28],[16,29],[17,29],[18,29],[19,29],[20,29],[21,29],[22,29],[23,29],[24,29],[25,29],[26,29],[27,29],[27,28],[28,28],[28,27],[29,27],[30,27],[31,27],[31,28],[31,29],[30,29],[29,29]],<span style="color:#00FFFF">"drill"</span>:<span style="color:#FF00EC">1</span>}</span>
okay sounds fun but that doesnt seem like the right depth to me if it helps i only understand meters and i do not want to fall through the floor forever
<span style="color:#FFFFFF" id="output-4c">>><span style="color:#9B9B9B">craterlife</span>.<span style="color:#1EFF00">rvrsomniorum</span>{<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>,<span style="color:#00FFFF">"go"</span>:<span style="color:#FF00EC">[</span>[11,32],[12,32],[12,31],[13,31],[13,30],[13,29],[14,29],[14,28],[15,28],[16,28],[16,29],[17,29],[18,29],[19,29],[20,29],[21,29],[22,29],[23,29],[24,29],[25,29],[26,29],[27,29],[27,28],[28,28],[28,27],[29,27],[30,27],[31,27],[31,28],[31,29],[30,29],[29,29]],<span style="color:#00FFFF">"drill"</span>:<span style="color:#FF00EC">700</span>}</span>
you can have the money data i dont need the money data <span style="color:#9B9B9B">anon_z0i73m</span>.<span style="color:#1EFF00">p_q1xnz6</span> <span style="color:#9B9B9B">anonymous_zwt095</span>.<span style="color:#1EFF00">out_oqn5t2</span> <span style="color:#9B9B9B">anon_tnasct</span>.<span style="color:#1EFF00">entry_ru86v3</span>
<span style="color:#FFFFFF" id="output-4d">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"makhachkala"</span>}</span>
Very well. To-And-Fro has made one (1) previous delivery to this destination! We are ready to begin automated package dispersal procedures straight away! Simply attend the Packyard in person to hand your package to one of our delivery bots NOT LIKELY WERE GONNA KEEP IT AND CHASE IT MAYBE
If you've previously sent an item to this destination, enter your <span style="color:#00FFFF">user_id</span> to view previous order details.
<span style="color:#FFFFFF" id="output-4e">>><span style="color:#9B9B9B">toandfro</span>.<span style="color:#1EFF00">packyard</span>{<span style="color:#00FFFF">"enter"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"send"</span>:<span style="color:#FF00EC">"makhachkala"</span>,<span style="color:#00FFFF">"user_id"</span>:<span style="color:#FF00EC">"craterlife_aste"</span>}</span>
There is (1) package log associated with this destination
Package received from: CraterLife Departures North
Package routed to: RussInc Private Security C/O Makhachkala Seaport
Package contents:
- MilVac Advanced Cleaning Drone, Naval Specialisation
<span style="color:#FFFFFF" id="output-4f">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{}</span>
RussInc Sub-Kaspiyskaya | PRIVATE VESSEL UNDER LOCKDOWN
<span style="color:#FFFFFF" id="output-50">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>}</span>
RussInc Sub-Kaspiyskaya | LOCKDOWN RELEASED - ACCESS GRANTED
system <span style="color:#00FFFF">select</span>: <span style="color:#FF00EC">navigation</span> | <span style="color:#FF00EC">arsenal</span> | <span style="color:#FF00EC">housekeeping</span>
<span style="color:#FFFFFF" id="output-51">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"navigation"</span>}</span>
RussInc Sub-Kaspiyskaya | NAVIGATION SYSTEM
<span style="color:#9B9B9B">MOTOR 1</span>: <span style="color:#676767">offline</span>
<span style="color:#9B9B9B">MOTOR 2</span>: <span style="color:#676767">offline</span>
<span style="color:#9B9B9B">MOTOR 3</span>: <span style="color:#676767">offline</span>
<span style="color:#9B9B9B">MOTOR 4</span>: <span style="color:#676767">offline</span>
<span style="color:#9B9B9B">SPEED<span style="color:#00FFFF"></span></span>:<span style="color:#FF00EC"> 0.0</span> knots
<span style="color:#9B9B9B">DEPTH<span style="color:#00FFFF"></span></span>:<span style="color:#FF00EC"> 578</span>m
<span style="color:#FFFFFF" id="output-52">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"arsenal"</span>}</span>
RussInc Sub-Kaspiyskaya | WEAPONS ARSENAL
specify <span style="color:#00FFFF">type</span>: <span style="color:#FF00EC">nuclear</span> | <span style="color:#FF00EC">cyber</span>
<span style="color:#FFFFFF" id="output-53">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"arsenal"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"nuclear"</span>}</span>
RussInc Sub-Kaspiyskaya | NUCLEAR WEAPONS
<span style="color:#9B9B9B">LAUNCH TUBE 1</span>: <span style="color:#676767">not loaded</span>
<span style="color:#9B9B9B">LAUNCH TUBE 2</span>: <span style="color:#676767">not loaded</span>
<span style="color:#9B9B9B">MISSILE COMPLEMENT</span>: <span style="color:#676767">empty</span>
<span style="color:#FFFFFF" id="output-54">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"arsenal"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"cyber"</span>}</span>
RussInc Sub-Kaspiyskaya | CYBERWARFARE
<span style="color:#9B9B9B">MEMETIC ANALYTICS SUITE</span>: <span style="color:#676767">offline</span>
<span style="color:#9B9B9B">ADAPTIVE INTELLIGENCE</span>: <span style="color:#7D0000">error</span>
<span style="color:#9B9B9B">LUNAR UPLINK</span>: please <span style="color:#00FFFF">reconnect</span>
<span style="color:#FFFFFF" id="output-55">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"arsenal"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"cyber"</span>,<span style="color:#00FFFF">"reconnect"</span>:<span style="color:#FF00EC">true</span>}</span>
<span style="color:#00FFFF">site</span> not found
<span style="color:#FFFFFF" id="output-56">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"arsenal"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"cyber"</span>,<span style="color:#00FFFF">"reconnect"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"site"</span>:<span style="color:#FF00EC">"burg"</span>}</span>
invalid <span style="color:#00FFFF">connection_protocol</span>
<span style="color:#FFFFFF" id="output-57">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"arsenal"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"cyber"</span>,<span style="color:#00FFFF">"reconnect"</span>:<span style="color:#FF00EC">true</span>,<span style="color:#00FFFF">"site"</span>:<span style="color:#FF00EC">"burg"</span>,<span style="color:#00FFFF">"connection_protocol"</span>:<span style="color:#FF00EC">"on"</span>}</span>
<span style="color:#9B9B9B">anon_g81zay</span>.<span style="color:#1EFF00">access_rgod01</span>
<span style="color:#FFFFFF" id="output-58">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>}</span>
RussInc Sub-Kaspiyskaya | HOUSEKEEPING
specify <span style="color:#00FFFF">service</span>: <span style="color:#FF00EC">meals</span> | <span style="color:#FF00EC">cleaning</span> | <span style="color:#FF00EC">device_connection</span>
<span style="color:#FFFFFF" id="output-59">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"meals"</span>}</span>
PLEASE NOTE: Error reported in automated meal dispenser. Meal types <span style="color:#FF00EC">breakfast</span> and <span style="color:#FF00EC">dinner</span> offline.
specify desired <span style="color:#00FFFF">meal</span>
<span style="color:#FFFFFF" id="output-5a">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"meals"</span>,<span style="color:#00FFFF">"meal"</span>:<span style="color:#FF00EC">"breakfast"</span>}</span>
PLEASE NOTE: Error reported in automated meal dispenser. Meal types <span style="color:#FF00EC">breakfast</span> and <span style="color:#FF00EC">dinner</span> offline.
specify desired <span style="color:#00FFFF">meal</span>
<span style="color:#FFFFFF" id="output-5b">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"meals"</span>,<span style="color:#00FFFF">"meal"</span>:<span style="color:#FF00EC">"dinner"</span>}</span>
PLEASE NOTE: Error reported in automated meal dispenser. Meal types <span style="color:#FF00EC">breakfast</span> and <span style="color:#FF00EC">dinner</span> offline.
specify desired <span style="color:#00FFFF">meal</span>
<span style="color:#FFFFFF" id="output-5c">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"meals"</span>,<span style="color:#00FFFF">"meal"</span>:<span style="color:#FF00EC">"lunch"</span>}</span>
Meal preference locked. Please provide <span style="color:#00FFFF">lunch_code</span>
<span style="color:#FFFFFF" id="output-5d">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"meals"</span>,<span style="color:#00FFFF">"meal"</span>:<span style="color:#FF00EC">"lunch"</span>,<span style="color:#00FFFF">"lunch_code"</span>:<span style="color:#FF00EC">"ham"</span>}</span>
The system does not recognise this meal.
<span style="color:#FFFFFF" id="output-5e">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"cleaning"</span>}</span>
PLEASE NOTE: Connection to shipboard cleaning unit lost. Initiate manual cleaning procedures until connection restored.
specify required cleaning <span style="color:#00FFFF">type</span>: <span style="color:#FF00EC">personnel</span> | <span style="color:#FF00EC">equipment</span>
<span style="color:#FFFFFF" id="output-5f">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"cleaning"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"personnel"</span>}</span>
Fresh water levels low. Personal cleaning forbidden until the next scheduled resupply stop. Estimated time remaining: ERROR
<span style="color:#FFFFFF" id="output-60">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"cleaning"</span>,<span style="color:#00FFFF">"type"</span>:<span style="color:#FF00EC">"equipment"</span>}</span>
This ship maintains a MilVac-type robotic cleaning unit. The unit is currently engaged.
Most recent log follows.
MILVAC UPDATE: I am responding to MESS-TYPE: SMALL LOCAL PIE in LOCATION-TYPE: AUTOMATED MEAL DISPENSER, INTERIOR. Personal note: looks tight in there. I may be some time.
<span style="color:#FFFFFF" id="output-61">>><span style="color:#9B9B9B">russinc</span>.<span style="color:#1EFF00">subkaspiyskaya</span>{<span style="color:#00FFFF">"lockdown"</span>:<span style="color:#FF00EC">false</span>,<span style="color:#00FFFF">"select"</span>:<span style="color:#FF00EC">"housekeeping"</span>,<span style="color:#00FFFF">"service"</span>:<span style="color:#FF00EC">"meals"</span>,<span style="color:#00FFFF">"meal"</span>:<span style="color:#FF00EC">"lunch"</span>,<span style="color:#00FFFF">"lunch_code"</span>:<span style="color:#FF00EC">"pirozhki"</span>}</span>