@supports(display: grid) { :root { --sidebar-width-on-desktop: calc((var(--base-font-size) * (14 / 15)) * 19); --body-width-on-desktop: 45.75rem; } @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: unset; bottom: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; background: unset; opacity: 1; pointer-events: all; z-index: -1; } #side-bar .close-menu img { color: transparent; } #side-bar .close-menu::before, #side-bar .close-menu::after { content: ""; box-sizing: border-box; position: fixed; display: block; top: unset; bottom: 0.5rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask:url("data:image/svg+xml,%3C%3Fxml version='1.0' encoding='utf-8'%3F%3E%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Hamburger' x='0' y='0' baseProfile='tiny' overflow='visible' version='1.2' viewBox='0 0 32 32' xml:space='preserve'%3E%3Cpath d='M4 10h24c1.1 0 2-.9 2-2s-.9-2-2-2H4c-1.1 0-2 .9-2 2s.9 2 2 2zm24 4H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2zm0 8H4c-1.1 0-2 .9-2 2s.9 2 2 2h24c1.1 0 2-.9 2-2s-.9-2-2-2z'/%3E%3C/svg%3E"); z-index: -1; background-color: var(--toggle-icon-color, rgb(var(--sidebar-links-text))) !important; -webkit-mask: var(--mask); mask: var(--mask); -webkit-mask-repeat: no-repeat; mask-repeat: no-repeat; -webkit-mask-position: 50% 50%; mask-position: 50% 50%; -webkit-mask-size: 60%; mask-size: 60%; } #side-bar .close-menu::after { z-index: -2; background-color: var(--toggle-button-bg, rgb(var(--sidebar-bg-color))) !important; border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--sidebar-links-text))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu { pointer-events: none; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; pointer-events: none; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::before, #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover .close-menu::after { opacity: 0; pointer-events: none; } #side-bar { display: block; position: fixed; top: 0; left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); border-radius: 0; border-left-width: 0px; border-right-width: 0px; } #main-content::before { content: ""; display: block; position: fixed; top: 0; right: 0; z-index: -1; opacity: 0; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, width 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; margin-left: var(--sidebar-width-on-desktop); background: rgba(var(--swatch-menubg-black-color), .3) 1px 1px repeat; padding-right: 0; width: 100%; height: 100vh; pointer-events: none; z-index: 99; } #side-bar:focus-within ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #side-bar:not(:has(.close-menu:hover)):not(:focus-within):hover ~ #main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } @supports (-moz-appearance:none) and (background-attachment:local) and (not (-moz-osx-font-smoothing:auto)) { #side-bar { padding: inherit; } } #content-wrap { display: flex; flex-direction: row; width: calc(100vw - (100vw - 100%)); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); flex-grow: 2; height: auto; position: relative; margin: 0 auto; max-width: inherit; } #main-content { width: 100%; position: initial; max-height: 100%; padding: 2rem 1rem; max-width: var(--body-width-on-desktop, 45.75rem); margin: 0 auto; } #page-content { max-width: min(90vw, var(--body-width-on-desktop, 45.75rem)); } @supports (-webkit-hyphens:none) { #side-bar { transition: left 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, padding-right 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms, background-color 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; padding-right: 0; background-color: rgb(0, 0, 0, 0); pointer-events: all; overflow-x: visible; overflow-y: visible; z-index: 999; } #side-bar::-webkit-scrollbar { opacity: 0; -webkit-transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; transition: opacity 500ms cubic-bezier(0.4, 0, 0.2, 1) 100ms; } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before, #side-bar:hover .close-menu::after { opacity: 0; } #side-bar:hover { left: 0; background-color: rgba(var(--swatch-menubg-color), 1); padding-right: 0; } #side-bar:hover::-webkit-scrollbar { opacity: 1; } #side-bar:hover~#main-content::before { width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } } }
:root { --timeScale: 1; --timeDelay: 0s; } /* Converting middle divider from box-shadow to ::before pseudo-element */ .anom-bar > .bottom-box { box-shadow: none!important; } .anom-bar > .bottom-box::before { position: absolute; content: " "; width: 100%; height: 0.5rem; background-color: rgb(var(--black-monochrome, 12, 12, 12)); transform: translateY(-0.74rem); } /* DIVIDER */ .anom-bar > .bottom-box::before { animation-name: divider; animation-duration: calc(0.74s * var(--timeScale)); animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; } /* CLASSIFIED LEVEL BARS */ div.top-center-box > * { animation-name: bar; animation-duration: calc(0.45s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } div.top-center-box > :nth-child(1) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.32s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.45s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.61s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.95s * var(--timeScale) + var(--timeDelay)); } /* TOP TEXT */ div.top-left-box, div.top-right-box { clip-path: polygon( 0% -50%, 150% -50%, 150% 100%, 0% 100%); } div.top-left-box > *, div.top-right-box > * { position: relative; animation-name: bottomup; animation-duration: calc(0.65s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /*-----------------------------------*/ /*-----------------------------------*/ /* CONTAINMENT, DISRUPTION, RISK CLASSES */ div.text-part > * { clip-path: polygon( 0% 0%, 100% 0%, 100% 100%, 0% 100%); animation-name: expand2; animation-duration: calc(0.5s * var(--timeScale)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.text-part > :nth-child(1) { animation-name: expand1; } div.text-part > :nth-child(1) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(2) { animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); } div.text-part > :nth-child(3) { animation-delay: calc(0.86s * var(--timeScale) + var(--timeDelay)); } div.main-class::before, div.main-class::after { animation-name: iconslide; animation-duration: calc(0.45s * var(--timeScale)); animation-delay: calc(0.8s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } /* BOTTOM TEXT */ div.main-class > *, div.disrupt-class > *, div.risk-class > * { white-space: nowrap; animation-name: flowIn; animation-duration: calc(0.42s * var(--timeScale)); animation-delay: calc(0.75s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: ease-out; animation-fill-mode: backwards; } /*-----------------------------------*/ /*-----------------------------------*/ /* DIAMOND */ div.arrows { animation-name: arrowspin; animation-duration: calc(0.7s * var(--timeScale)); animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.quadrants > * { animation-name: fade; animation-duration: calc(0.3s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.top-icon, div.right-icon, div.left-icon, div.bottom-icon { animation-name: nodegrow; animation-duration: calc(0.4s * var(--timeScale)); animation-delay: calc(1.4s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.12,.41,.27,.99); animation-fill-mode: backwards; } div.diamond-part { clip-path: polygon( -10% 0.37%, 120% 0.37%, 120% 100%, -10% 100%); animation-name: diamondBorder; animation-duration: calc(0.8s * var(--timeScale)); animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); animation-iteration-count: 1; animation-timing-function: cubic-bezier(.32,.38,.39,.94); animation-fill-mode: backwards; will-change: box-shadow; } /* MOBILE QUERY */ @media (max-width: 480px ) { .anom-bar > .bottom-box::before { display:none; } .anom-bar > .bottom-box { box-shadow: 0 -0.5rem 0 0 rgb(var(--black-monochrome, 12, 12, 12))!important; } div.top-center-box > * { animation-name: bar-mobile; animation-duration: calc(0.9s * var(--timeScale)); } div.top-center-box > :nth-child(1) { animation-delay: calc(0.1s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(2) { animation-delay: calc(0.2s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(3) { animation-delay: calc(0.3s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(4) { animation-delay: calc(0.4s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(5) { animation-delay: calc(0.5s * var(--timeScale) + var(--timeDelay)); } div.top-center-box > :nth-child(6) { animation-delay: calc(0.6s * var(--timeScale) + var(--timeDelay)); } } /*--- Motion Accessibility ---*/ @media screen and (prefers-reduced-motion: reduce) { div.anom-bar-container { --timeScale: 0!important; } } /*-------------------------*/ @keyframes divider { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar { from { max-width: 0%; } to { max-width: 100%; } } @keyframes bar-mobile { from { max-height: 0%; } to { max-height: 100%; } } @keyframes bottomup { from { top: 100px; } to { top: 0; } } @keyframes expand1 { from { opacity: 0; clip-path: inset(0 calc(100% - 0.75rem) 0 0); } to { opacity: 1; clip-path: inset(0); } } @keyframes iconslide { from { opacity: 0; transform: translateX(-5rem); } to { opacity: 1; transform: translateX(0); } } @keyframes expand2 { from { opacity: 0; width: 1%; } to { opacity: 1; width: calc(100% - 0.25rem); } } @keyframes fade { from { opacity: 0; } to { opacity: 1; } } @keyframes flowIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } } @keyframes arrowspin { from { clip-path: circle(0%); transform: rotate(135deg); } to { clip-path: circle(75%); transform: rotate(0deg); } } @keyframes nodegrow { from { transform: scale(0);} to { transform: scale(1);} } @keyframes diamondBorder { from { box-shadow: -0.5rem -20rem 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } to { box-shadow: -0.5rem 0 0 0 rgb(var(--black-monochrome, 12, 12, 12)); } }
配属サイト | サイト管理官 | 研究責任者 | 担当機動部隊 |
サイト-126 | キャスパー・ニルソン管理官 | アントニア・ザウアー博士 | MTF μ-83 “アッツアツのポテト、舞台間近の特等席” |
特別収容プロトコル: ロバート・コーツの遺骨は異常オブジェクト保管ロッカーに保管されます。このロッカーを収容する部屋には遮音対策を施します。SCP-7623と遭遇した職員は、その存在を完全に無視することが推奨されます。SCP-7623を異常な脅威存在の攪乱や無力化に用いる実験が進められています。
説明: SCP-7623は、イギリスのアマチュア俳優 ロバート・コーツの遺骨の近傍に出現する、レベル2ヒト型幽体1です。SCP-7623は様々な凝った舞台衣装を着用したコーツの半透明な霊体という形状を取ります。この霊体は通りかかる人物に向けて、シェイクスピア劇 (特に“ロミオとジュリエット”を好む) から抜粋した一場面を、感情を激しく露わにしながら大声で演じ、自らの演技に向けられたあらゆる反応を肯定的なものと解釈します。
SCP-7623は、かつてSCP-2264-B — 異次元に所在する王国、アラガッダ — にまつわる一事件に関与したことで特筆に値します。
補遺7623.1: 略歴
ロバート・コーツ (1772-1848) は、シェイクスピア劇での下手な演技で悪名を馳せた摂政時代の俳優です。コーツが1809年にロミオ役で出演した“ロミオとジュリエット”を観劇したリース・グロノフ大尉は、回想録において、当時のコーツが“ふんだんに宝石を散りばめた空色の絹のマント、赤い長ズボン、白いモスリンのベストを身に纏い、その上には無闇に分厚いクラバットを付け、しかもチャールズ2世風の鬘とオペラハットを被っていた”と記述しています。
グロノフは上述の公演に他にも多数の問題があったと付記しています。コーツのズボンはきつすぎたために破れ、下着が露出していました。また、コーツは演技を一時中断して観客に嗅ぎタバコを勧め、出番の締めくくりではジュリエット役の女優が止めに入るまでロミオの死亡シーンを繰り返し演じ続けました。
コーツの自費公演は稚拙な演技と派手な衣装で広く知られるようになり、悪評を呼びましたが、コーツは自分が嘲笑されていることを全く認識していなかったようです。彼は1848年、辻馬車に撥ねられて死亡しました。
補遺7623.2: 歴史的資料
以下は1813年3月にレディ・キャロライン・グレナーヴォンから妹のヘレーネに送られた手紙の抜粋であり、ロバート・コーツに関連する最初の異常事象の発生に言及しています。
… そしてまた、先の日曜日にマダム・ルフロイが主催した仮面舞踏会には、大変奇妙なお客様が来ていました。黄色のローブと仮面を身に着けたイタリア人の貴族で、おかしなことに、アラベスク模様の服の布地はまるで甲虫の殻のような触り心地でした。彼はアスルフのイスブランド伯爵であると紹介されました2。
伯爵は、ある大使をもてなすための芝居を上演するので、急遽“イングランドで最も高名な俳優”を探しているのだと重々しく語りました。「キーンだ!」「ケンブルだ!」といった提案が次々と伯爵に寄せられましたが、やがてヘドン氏がこんなことを言い出しました。
「いやぁ、やはりあのロバート・コーツ一択でしょう! 彼の“ロミオ”を観ましたが、ありゃ例え忘れたくても無理ですな!」
周りの笑いと賛同を見て取った伯爵は、私たちが冗談を締めくくる間もないうちに、足早に去ってしまいました。ヘドン氏の有名な機知が外交問題に発展しないことを願いましょう! …
この時期以降のコーツの出費記録は、SCP-701 — “吊られた王の悲劇”の題名でも知られる異常な舞台劇 — の上演を企画するイスブランド伯爵から、彼が多額の報酬を受け取ったことを示しています。コーツは主人公のアントニオを演じる予定になっていました。
補遺7623.3: 異常事象の記録
SCP-701の上演は、ロンドンのグラフトン劇場で、占星術的に重要な6つの星の結合3が起こる1813/██/██に予定されていました。イスブランド伯爵の意図は明らかに、SCP-701の結末に発生する人身御供を、星辰結合の異常性が最高潮に達するごく短い時間帯と重なるように上演を行うことにありました。適切に執行されていれば、この儀式はアラガッダに通じる長期安定型双方向ポータルを開通させていたと考えられます4。
イスブランド伯爵がロンドンに現れたことを察知した聖ユダ秘密騎士団5は、コーツの終了処分、もしくはその他の手段による公演妨害のために3名のエージェントを派遣しました。
以下のイタリア語から翻訳された手紙は、ある匿名のエージェントが公演中の体験を記録する目的で執筆したものです。
毒薬や短剣を携えていても無意味でした。劇場に近付いた時点で、我々は自らの行動を制御する力を奪われました。着席すると (観客は街路から入って来た雑多な人々の集まりで、誰もが同じように目を奪われていました) 、黄色の長衣を纏った伯爵が、愉悦らしきものを目に浮かべて枡席から見下ろしているのが分かりました。
そして幕が上がりました。取り乱していながらも、ゴンサーロ役の見事な演技に気付かされたのを覚えています。彼の最初の独白は荘厳な哀愁を帯びて語られました。ところが、最初の場面の終わりにアントニオが登場しました — あの切り込みを入れた特大の黒と金のダブレット、銀の長靴下、肩幅よりも広かろうかという首周りのフリル。あまりにも異様なコーツの出で立ちを目にして、魅了されていたにも拘らず、私は笑いを堪えました。
程なくして、私は、コーツが全く意図せずして伯爵の儀式を妨害していることに気付きました。出演者たちは星の配列と一致する適切な瞬間に殺される手筈になっていました。しかし、劇の魔力に支配されていても尚、コーツは際立ってお粗末な役者のままでした — 慎重に見定められた儀式の時機を掻き乱すほどに酷い演技でした。第三幕でアントニオがイザベラを殺すくだりに差し掛かると、彼は殺しの途中で中断を挟み、その瞬間の哀愁を高めようとして、なお一層涙ぐましい口調で先程までの台詞全体をもう一度読み上げたのです。彼が慈悲深くもイザベラの命と場面に終止符を打つまでに、少なくとも五分は掛かりました。
劇が進むにつれ、情景は明滅し始め、舞台後方の壁は暗い塔や松明で照らされた城の世界へと開かれていきました。第五幕の終わりに、ゴンサーロを吊るして血の生贄を完成させるべく、天井から一本の輪縄が降りてきました。アラガッダの大使の幻影が王座の前に佇んでおり、その姿を見るのも苦痛だったのを覚えています。ゴンサーロの首が輪縄に通されると、コーツはその腹を裂こうと短剣を手にしました。その頃にはもう、舞台は荒れ狂う渦のようで、アラガッダの光が我々の世界を焼き焦がしていました。
しかしその時、コーツは跪いて短剣を取り落とし、きっと悔恨と罪悪感を表現しようとでもしたのでしょう、自らの胸を叩き始めました。彼はレースの袖口で滂沱の涙を拭い、舞台を縦横に駆け回りました。短剣を拾ったかと思えば、またしても神経が高ぶり、床に倒れ込んで泣くのですが、その苦悩の発作の中ですら、膝を突く前に丁寧に床の埃を払うのを怠りませんでした。
星辰の結合が解けるまで残り数分と迫った時、頭巾を被った大使の幻影が遂に進み出て、コーツの肩を掴み、彼の手に短剣を押し込みました。しかし、自らの演技に没頭していたコーツは、静かにしろと大使に合図し、手を振って下がらせようとしたのです。
どうやら、強大な魔物でさえ驚くことがあるようです。大使も伯爵も、この役者の不遜さに仰天するあまり、動くのを躊躇いました — 結合の力が衰えるのに十分長く。見る間に、アラガッダの燻る尖塔は舞台上から薄れていきました。数時間後に私が正気に戻ると、グラフトン劇場は崩落していました。コーツは朦朧としつつも、近所の酒場で祝杯を挙げておりました。
クル=マナスの堂守との取引で得られた情報によると、イスブランド伯爵は儀式に失敗し、アラガッダ大使の尊厳を侮辱したとして、惑星メルヴェリックでの永久拷問刑に処せられました。コーツの死後、秘密騎士団は更なる研究のために彼の遺体を回収し、SCP-7623を発見しました。1993年に財団に移管されるまで、コーツの遺体は遮音構造の地下墓地に保管されていました。
補遺 7623.4: 事案報告書 (2023/██/██)
2023/██/██、1813/██/██と同じ星辰結合が発生しました。結合が始まった時、アントニア・ザウアー博士は研究施設の一棟にバリケードを張って立て籠もり、不正に入手したSCP-701の複写を朗読し始めました。6 儀式を中断させるため、MTF ミュー-83が派遣されました。
以下はMTF ミュー-83遠征ログの書き起こしです。
アルファ: 司令部、我々は通路を進んでいる — たった今、異常オブジェクト保管庫を通過。
フォックストロット: 廊下の先に — 気を付けろ!
ザウアー博士に先導された行列が廊下を進んでくる。ザウアー博士は虚ろな表情でSCP-701を朗読している。彼女の隣には、後に錬金勲爵士ジバと特定される、黄色の鎧と仮面を着用した人物がいる。行列は研究員たちと仮面を被った異常な人物らで構成されている。
アルファ: 撃て! 撃つんだ!
ザウアー博士が朗読を止める。勲爵士が奇跡術的な身振りを行うと、MTF ミュー-83の武器は手の中で崩れ、隊員たちは強制的に跪かされる。勲爵士は短剣を抜く。
勲爵士: 死の中に歓喜がある、切り裂かれた喉と迸り出る赤き生命。全ては、全ては今夜殺められる… 暗き腐敗が樹を枯らすように、諸君らも全て殺—
淡い光が現れる。精巧な舞台衣装に身を包んだSCP-7623が、半透明の霊体として出現する。
勲爵士: 此奴は一体、何の悪霊だ、何処の愚か者だ。
SCP-7623: おやおや! あなたは私の昔の後援者によく似ていらっしゃる — どうです、伯爵はお元気ですかな? 劇の途中で突然お帰りになられたようですが、きっと満足してくださったのでしょう。私の観客は皆そうなのです。
勲爵士は困惑した様子で行列に目を走らせる。
勲爵士: 貴様が何者であろうと構うものか。失せよ、さもなくば苦痛を—
SCP-7623: 私の声は分からずとも、エイヴォンの白鳥7の声は勿論ご存知でしょう?
SCP-7623は勲爵士の両肩を掴み、情熱的な大声で暗唱を始める。
SCP-7623: “おゝ、我が愛よ、我が妻よ! 死は汝の息吹の蜜を吸い尽くせども—”
勲爵士はSCP-7623を荒々しく押し退けるが、その際に短剣を取り落とす。ミュー-83 フォックストロットが短剣を掴んで前に飛び出し、ザウアー博士の喉を刺突する。直後、勲爵士と行列の仮面を被った人物らが非実体化し始める。
ザウアー博士: ありがとう。ありがとう。
ザウアー博士が倒れる。勲爵士とその取り巻きたちは完全に消失する。
SCP-7623: “— 汝の美には未だ力を振るっておらぬ! 汝は征服されてはおらぬ! 美の印が —”