SCP-5715


: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)); }
}
評価: +10+x

財団歴史連続性委員会より通達

以下のファイルには現在形成済の歴史経過との関連で多数の誤りが含まれていると判明しています。時間異常部門との協力を通じて、これはここに記述される逆因果的アノマリーの結果であると確認されました。以下に記述されるイベントの進行は前回またはそれ以前の歴史経過において発生したと98.6%の確度で確認することができます。


アイテム番号: 5715
レベル4
収容クラス:
keter
副次クラス:
none
撹乱クラス:
amida
リスククラス:
notice

特別収容プロトコル: SCP-5715イベントを防ぐ手段が存在しないため、収容の努力は代わりにSCP-5715-2により引き起こされた全変更を文書化することに焦点が置かれます。この目標に向け、時間サイト-02に複数の財団データベースバックアップを保管可能なデータセンターを設置します。これらバックアップはSCP-5715イベント前後での情報喪失を確実に最小化するために継続的に更新されます。

時間サイト-02にはタキオン流監視システムTachyon-Flux Monitoring Systemが配備されています。TFMSは私たちの基底次元内のタキオン濃度を測定することでSCP-5715イベントが発生したか否かを判定します。SCP-5715イベントの検出後、TFMSは自動的にプロトコル・ヴェリタスを開始します。

SCP-5715-1はサイト-17内のマークⅠ XACTSデバイスの備えられた標準人型収容室に居住します。SCP-5715-1はサイトの精神分析医と毎週面会し、継続的に精神面の健康を確かなものとしなくてはなりません。

逆因果的改竄を防止するため、このファイルは時間サイト―02内の内部データベースに単独で保存されます。特定の端末からのみアクセスできます。

説明: SCP-5715は反復現象です。この現象では、宇宙タキオン流が止まることで非決定的期間の間、事実上時間が停止します。これらイベントの間隔は、完全にランダムであると示されてきました。加えて、あらゆる先行する兆候の欠如は、SCP-5715イベントがその発生後にのみ確認できることを意味します。現時点での検出手段は、SCP-5715-1への確認またはプロトコル・ヴェリタスによるデータ解析です。1

SCP-5715は、現在SCP-5715-1であり元財団研究員であるジョセフ・カーターにより、最初に発見されました。指向性タキオン放射用アプリケーションの開発を目標とする取り組みであるプロジェクト・カイロスにカーター博士は割り当てられていました。一連の実験中、カーター博士は誤作動を起こしたタキオン放射装置に直接曝露し、理由は不明ですがSCP-5715イベントの間自意識を保つ能力を得ました。SCP-5715-2の発見以前、カーター博士にのみ異常性が適用されていると当初信じられていたため、カーター博士がSCP-5715として分類されていました。

SCP-5715-2はSCP-5715イベントの間のみ顕現する実体です。大きさと形態は実例間で大変大きく異なっていますが、テレビのスノーノイズに類似し、同じく深度刺激2を欠くことで全ての角度から見ても平面的に見える外見を恒常的に揺らめかせるという点が全実体間において共通しています。彼らはあらゆる生理学的機能を持たず、事実上非物理的です。SCP-5715-2実例はSCP-5715イベントの半分以上の間をしばしば充実性の物質を透過しながら目的なく彷徨うことに費やします。3SCP-5715-2が存在する唯一の物理的証拠は、彼らが訪れた場所ではタキオン濃度が平均より高値であるということです。

SCP-5715-2実例は物品・構造・生命体(標的と指定されます)を追加して存在するようにするか、または削除して存在しないようにすることが可能です。これは遡及的に対象とのそれ以前の全ての干渉を変更し、歴史・記録・関連記憶を対象の新しい存在状態に沿って変えます。ブラディオン4と縺れているタキオンの動きに対する複雑な操作によってこの干渉は実行され、新しい歴史経過が生じる、という仮説が立てられています。実例には知性があると信じられていますが、しかしながら双方向コミュニケーションを図る全ての有意義な試行はこれまでの所失敗してきました。


補遺5715-1: 初期発見

補遺5715-2: SCP-5715-2の発見

補遺5715-3: 収容プロトコル更新

SCP-5715-2の現実改変能力に示される脅威に対応するべく、効果的な収容方法を決める一連の議論が行われました。SCP-5715-2全実例の無力化5からXACTS機器の広範な埋設6まで幅広い提案がなされました。2006/09/24に時間サイト-02の素案がRCT-Δtに提出され、即座に実行に移されました。時間サイト-02は時間の遅れと操作技術を利用して2006/10/15に運用開始されると思われます。

補遺5715-4: SCP-5715-1の個人記録

新しい収容プロトコルの開発後、SCP-5715-2からより多くの情報を収集することが必要不可欠であるとみなされました。この目的のため通常のインタビューに参加することに加えて、SCP-5715-1はその経験とSCP-5715イベントの記憶を記録する任務を与えられました。以下はSCP-5715-1の日誌からの一連の抜粋と、SCP-5715-2の性質またはSCP-5715-1の精神的健康に関連するとみなされたインタビューです。

補遺5715-5: さらなる進展

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