SCP-6159-ARC
thumbnail.png

777

評価: +11+x

⚠️ コンテンツ警告
button.png

: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)); }
}
アイテム番号: SCP-6159-ARC
レベル3
収容クラス:
keter
副次クラス:
belial
撹乱クラス:
amida
リスククラス:
critical

uthariasmaller.png

SCP-6159。ブラウザで開く場合は画像をクリックしてください。.最古の書物はエジプト、中国、メソポタミアといった古代文明にまで起源を遡り、それらはパピルス、絹、粘土板などに書き記されていた。リンクス病に感染する最も簡単な方法は刑務所の庭の粘土に接触することだ。刑務所の受刑者の28.7%はプロテスタントである。店から牛乳を買ってきてくれる?私は刑務所には行かないよ、アダム。アブラハムの宗教には、何千年もの間に世界を形成してきた宗教文書、伝統、文化的慣習の豊富な歴史がある。

今日では、書籍はペーパーバック、ハードカバー、電子書籍などの多種多様な形式で存在し、図書館、書店、オンラインで入手できる。ほとんどのアブラハム宗教は全知全能の慈悲深い神の存在を信じている。無限を表す記号(∞)は1655年に数学者ジョン・ウォリスによって初めて使われた。サタニック・パニックとは、1970年代後半から1980年代にかけて、アメリカ合衆国やその他の国々で起こった広範な恐怖とヒステリーの時期である。

お前にはもううんざりだよ、トニー。自神論はしばしば、権力や権威が自己の外部にある神や 高次の力にあるとする、より伝統的な有神論的信仰に代わるものと捉えられる。あなたにパイを焼いたよ。無限という観念は数千年前から存在していたが、19世紀・20世紀まで完全には理解されず、発展もしなかった。

それは人々でできている。9382。アブラハムの宗教は歴史を共有しており、その信仰には天使が存在するという信念、預言者、聖典、贖罪の概念など数多くの共通点がある。チーズスティックは売り切れだよ。みんな死んで壁の中にいる。死後硬直は歯には直接影響しないが、顎の筋肉を硬直させ、口を開けにくくする。歯肉炎は虫歯の主な原因である。この信仰は特定の宗教や文化に限ったものではなく、多くの異なる哲学的・精神的伝統に見られる。

歴史上、物議を醸す内容や思想のために数多くの本が発禁処分や検閲を受けてきましたが、本を読む自由、入手する自由は多くの国で基本的な権利であり続けています。それは決してあなただけでは終わらない。古代ギリシャではリンゴを投げるのが伝統的な求婚の方法でした。強盗は世界で最も一般的な犯罪の一つで、住宅でも商業施設でも発生する。君は一人なの?

誰も真に一人きりではないんだよ、私たちは誰しも多数の多細胞生物と単細胞生物で構成されているからね。寄生生物は原虫、蠕虫(サナダムシなど)、節足動物(ダニやシラミなど)、真菌など数種類に分かれる。先週マリーをファックしたらしいな。通説や期待に反して、圧倒的多数の悪魔崇拝カルトは生贄を捧げない。チームの一員を担ってくれてありがとう、相棒。


配属サイト サイト管理官 研究責任者 担当機動部隊
サイト-68 ジャック・スプリング博士 メイプル・リン博士 MTF タウ-9 (“本の虫”)

特別収容プロトコル: SCP-6159は異次元サイト-68の安全な保管ロッカーに収容されます。 SCP-6159は異次元サイト-68の高セキュリティ収容庫4323内に封印されます。SCP-6159-1がSCP-6159から退出した場合、SCP-6159-1に対する致死的な武力の行使は厳重に禁止されます。SCP-6159-1の捕獲を試みる際、全ての実行職員はSCP-6159-1から気付かれないようにするか、必ず捕獲前に適切な距離 (~700-800m) を保つ必要があります。

SCP-6159-1が提示する契約に、職員がO5評議会の承認無く応じることは禁止されています。

SCP-6159-2の捕獲は、尋問のために可能な限り早急に実施されます。SCP-6159-1とSCP-6159-2の双方を研究し、より現実的な収容対策を講じることは最優先事項です。

説明: SCP-6159は、破壊不可能と思われる無題の書籍と、その内部を構成する異次元空間の総称です。

SCP-6159の外装は金の縁取りが施された青い革表紙です。SCP-6159に記載されているテキストは一見ランダムで、観察されていない時には常に変化しています。SCP-6159を開いた人間は、その機能を理解し、SCP-6159を使用して内部の異次元空間に通じる安定した双方向ポータルを開くことができます。

SCP-6159の内部は、不明な数の - 理論上は無限の - 書籍が収蔵された巨大な多層構造の図書館からなる局所的次元です。これらの書籍には、一般的に入手可能な出版物も、いかなる出版社のデータベースにもない未知の文献も含まれます。

書籍は組織的に分類されている様子がなく、配置は完全にランダムのようです。同様に、書籍に含まれるテキストもランダムで、各文章は完全に異なる作品に由来するようです。この図書館がSCP-6159のページに表出するテキストの出典だと考えられています。更に、ある人物がSCP-6159の内部を移動している時、その人物はSCP-6159のいずれかのページに、テキストと共に、インクで描かれたイラストとして現れる場合があります。

SCP-6159-1は、SCP-6159内の異次元空間で発見されたアルファ・クラス妖魔界実体、もしくは“大悪魔”アークデーモンです。1 SCP-6159-1は“プリムローズ・ファティッシュ・フォン・トレヴィル”を自称し、“第七圏” - “暴力者の圏”としても知られる領域 - の出身だと主張しています。SCP-6159-1は外見上、セグロジャッカル (Lupulella mesomelas) に似た特徴を有する女性ヒト型実体であり、身長は約2.13m (7フィート) です。

SCP-6159-1に対する全ての攻撃的な物理干渉は、SCP-6159-1が負った傷害が、SCP-6159-1に選択された標的にも再現される結果となります。SCP-6159-1が指定できる標的の上限は不明です。SCP-6159-1が負傷前に標的を指定できなかった場合、または対象者がSCP-6159-1から少なくとも22m離れている場合、この効果は発生しません。SCP-6159-1は敵意は無いと主張していますが、接触する際には細心の注意を払うことが推奨されます。

SCP-6159-2は、SCP-6159内の異次元空間に随意で出現できる未収容のオメガ・クラス妖魔界実体、もしくは“小悪魔”インプです。2 SCP-6159-2は“エイドリアン”を自称し、SCP-6159-1の使い魔だと主張しています。SCP-6159-2は身長0.6m (2フィート) で、漠然とイヌ科に似た特徴を帯びており、頭部に2本の短い角を有し、性別は不明確です。SCP-6159-2は、SCP-6159-1を出身地に連れ帰って“家族”と再会させるのが目的だと主張しています。SCP-6159-1との交流を基に、SCP-6159-2は現在の姿になる前は人間だったと考えられています。

SCP-6159-2は財団職員に直接的な危害を加える様子を見せていませんが、妖魔界実体と交流する際には常に注意を維持すべきです。

更新 2021/12/27 7:05 PM: 現在、SCP-6159-1及びSCP-6159-2の完全収容に有効な方法は確立されていません。SCP-6159には下位分類 Belial が付与されており3、現時点ではメイプル・リン博士と機動部隊タウ-9 (“本の虫”) が外交的手段を通した収容を模索しています。“プリムローズ・ファティッシュ・フォン・トレヴィル”、“エイドリアン・ファティッシュ”、“ウサリア遺言書”、並びにSCP-6159-1及び-2が言及した諸組織の名称については調査が進行中です。

序文-6159

SCP-6159文書

forward.png

以下の文書は、SCP-6159-1の発見、リン博士による尋問、SCP-6159内部におけるSCP-6159-1とSCP-6159-2の会話の音声ログ、並びにその他の情報から成ります。

ここで提示されていない情報は、SCP-6159-1とSCP-6159-2の出自に関する詳細な説明と、ウサリア遺言書の既知の内容及び起源であり、6159文書-2に掲載されています。

特に指定がない限り、このサイトのすべてのコンテンツはクリエイティブ・コモンズ 表示 - 継承3.0ライセンス の元で利用可能です。