SCP-7749フラグメント1(fragment:goblincon-5257-rhineriver-0)

: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)); }
}
アイテム番号: 7749
レベル1
収容クラス:
keter
副次クラス:
none
撹乱クラス:
vlam
リスククラス:
danger

ninetrillion.png

Photograph of SCP-7749 taken at a safe distance of 12m. Note visual artifacts and spatial distortion caused by SCP-7749's anomalous properties./12mの安全な距離で撮影されたSCP-7749の写真。SCP-7749の異常特性による視覚的異常及び空間的歪曲に留意。


Special Containment Procedures: SCP-7749 is to be stored on a pedestal inside of a large Keter-class containment chamber at Site-86. This pedestal is not to be placed less than 10m from any side of the chamber. Personnel are not to enter SCP-7749's containment chamber at any time except for testing. The containment chambers directly above and below SCP-7749's are to remain unoccupied due to the height restrictions of SCP-7749's chamber.

特別収容プロトコル: SCP-7749はサイト-86の大型Keterクラス収容チャンバー内の台座で保管されます。この台座は収容チャンバーの全ての壁面から10m以上離される必要があります。試験時を除き、職員はSCP-7749の収容チャンバーに入室してはいけません。SCP-7749収容チャンバーの高さ制限の為、SCP-7749の直上及び直下のチャンバーは空のままにしておく必要があります。

As of 20/05/2023, finding a way to neutralize SCP-7749's anomalous effects or transport it off-site is considered a top level priority.

2023/05/20現在、SCP-7749の異常影響の無力化及びサイト外への輸送の方法の発見は最優先事項と見なされています。

Description: SCP-7749 is a dark-brown 12oz ceramic mug. SCP-7749 contains a light-brown liquid, identified by personnel to be standard coffee. The volume of liquid contained within SCP-7749 has not been seen to change during its time in Foundation custody.

説明: SCP-7749はダークブラウンの12オンス1の陶器のマグカップです。SCP-7749には薄茶色の液体が入っており、職員によって通常のコーヒーと同定されました。SCP-7749に入っている液体の容積は、財団の管理下にある間変動が見られませんでした。

SCP-7749 possesses a multitude of anomalous properties, including but not limited to:

  • Visual distortion in a roughly 10m radius around SCP-7749. Observers have reported the surrounding area as appearing "fuzzy" or reminiscent of a low-resolution image.
  • Spatial distortion within the same radius. This causes SCP-7749 to appear closer to or further from an observer than it actually is.
  • Spontaneous transmutation into various other shapes at random intervals for short periods of time, typically appearing jagged, irregular, and distorted.
  • Spontaneous teleportation at random intervals. Distance teleported has not been observed to exceed 10m in any direction.
  • General instability of space within the 10m radius. This has resulted in the alteration of objects within the area, often appearing distorted in a similar manner to SCP-7749 during its transformations. Sudden disappearance, acceleration, and teleportation of objects within the area has also been observed.

SCP-7749は以下を含むがこれに限定されない多数の異常特性を示します。

  • SCP-7749の周囲約10mの視覚的歪曲。観察者は周辺の空間が「ぼやけて」見え、低解像度の画像を連想させると報告しています。
  • 同様の半径での空間的歪曲。この影響により、SCP-7749は観察者から見て実際より近くまたは遠くにあるように見えます。
  • 短時間のランダムな間隔での形状の自発的変化。通常はギザギザ、不規則、歪みなどが見られる。
  • ランダムな間隔での自発的テレポート。どの方向にも10mを超えるテレポートは確認されていません。
  • 半径10m圏内での全般的な空間不安定性。この効果は領域内の物体の変化を引き起こし、多くの場合は変形中のSCP-7749と同様に歪曲して見えます。領域内の物体の突然の消失・加速・テレポートも観察されています。

SCP-7749 was discovered on May 18, 2023 inside a break room in Site-86 Facility 4 by multiple personnel. Upon initial reports of the anomaly, the break room was blocked off and attempts were made to transport the object to a containment chamber. Following multiple unsuccessful attempts to get near SCP-7749, a portable Scranton reality anchor (SRA) was deployed to allow agents to transfer the object into a portable containment locker for transportation, after which it was successfully contained. Both the SRA and the portable containment locker sustained significant alteration by SCP-7749 during the event and were rendered inoperable following containment.

SCP-7749は2023年5月18日にサイト-86施設4の休憩室で複数の職員によって発見されました。異常性の初期レポートを受けて休憩室が封鎖され、オブジェクトを収容チャンバーへと輸送する試みが行われました。SCP-7749への接近の試みの複数回の失敗の後、エージェントがオブジェクトを輸送用のポータブル収容ロッカーへと移動させるためにポータブルスクラントン現実錨(SRA)が展開され、成功裏に収容されました。SRAとポータブル収容ロッカーは共にSCP-7749によって大幅に改変され、収容後には動作不能になりました。


Addendum 7749.1: Related Documentation/補遺7749.1:関連文書

18/05/2023

SCP FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION — PANOPTICON

2023/05/18

SCP財団記録・情報保安管理局 — PANOPTICON

The following is the PANOPTICON ping report2 for the Southwest United States Region on May 18, 2023.

以下の文書は2023年5月18日の米国南西地域におけるPANOPTICON ping記録3です。


Ping sent: 13:00:00 UTC

Site-15 response: 13:00:21 UTC
Site-45 response: 13:00:20 UTC
Site-56 response: 13:00:21 UTC
Site-86 response: 13:00:19 UTC
Site-666 response: 13:00:17 UTC

ping送信: 13:00:00 UTC

Site-15 応答: 13:00:21 UTC
Site-45 応答: 13:00:20 UTC
Site-56 応答: 13:00:21 UTC
Site-86 応答: 13:00:19 UTC
Site-666 応答: 13:00:17 UTC
(訳注:以降のPANOPTICON ping記録の訳は全て同じ形式なので原文記載を省略します)


Ping送信: 13:05:00 UTC

サイト-15 応答: 13:05:20 UTC
サイト-45 応答: 13:05:18 UTC
サイト-56 応答: 13:05:22 UTC
サイト-86 応答: 13:05:23 UTC
サイト-666 応答: 13:05:19 UTC


Ping送信: 13:10:00 UTC

サイト-15 応答: 13:10:20 UTC
サイト-45 応答: 13:10:21 UTC
サイト-56 応答: 13:10:19 UTC
サイト-86 応答: 13:10:25 UTC
サイト-666 応答: 13:10:19 UTC

19/05/2023

SCP FOUNDATION EXPERIMENT LOG 5257-19/05/2023

2023/05/19

SCP財団実験ログ5257-2023/05/19

The following footage was recorded by security cameras within SCP-7749's containment chamber.
以下のログはSCP-7749収容チャンバー内部の監視カメラで撮影された物です。

[BEGIN LOG]/[ログ開始]

00:00: [SCP-7749 is seen sitting on its pedestal and shaking slightly, as normal.]

00:00: [SCP-7749が通常通り台座上でわずかに震えているのが見える。]

00:04: [SCP-7749 spontaneously moves forward half a meter in the direction of the door to the containment chamber. It continues to vibrate idly.]

00:04: [SCP-7749が収容チャンバーのドアの方向に自発的に半メートル前進する。SCP-7749はただ振動し続けている。]

00:09: [SCP-7749 jumps an additional two meters forward. It is now floating roughly one meter above the ground, as if it were still on its pedestal.]

00:09: [SCP-7749がさらに2メートル前進する。SCP-7749はまるでまだ台座の上にあるかのように床面から約1メートル浮いている。]

00:13: [SCP-7749's color changes to near-total black, including the liquid within it. One second later, it returns to its normal hue.]

00:13: [SCP-7749の色が内部の液体も含めほぼ黒色に変化する。1秒後に通常の色調に戻る。]

00:20: [Researcher Kenneth Carson enters SCP-7749's containment chamber. He watches SCP-7749 for ten minutes, recording observations on a clipboard.]

00:20: [ケネス・カーソン研究員がSCP-7749の収容チャンバーに進入する。カーソン研究員は10分間SCP-7749を観察し、観察結果をメモに記録する。]

10:26: [Researcher Carson produces a small metal bar and holds one end of it toward SCP-7749, allowing the bar to enter within SCP-7749's range of effect. The bar instantly vanishes for two seconds, during which Researcher Carson takes notes.]

10:26: [カーソン研究員は小さな金属棒を取り出し、その片側の端がSCP-7749の影響範囲に侵入するように近づける。金属棒は即座に2秒間消失する。その間、カーソン研究員はメモを取っている。]

10:28: [The bar appears directly above SCP-7749, and falls down toward it. Immediately before contact can be made, the bar instantly disappears and reappears in its prior position above SCP-7749, and begins to fall again. This repeats several more times.]

10:28: [金属棒がSCP-7749の直上に出現し、落下する。金属棒がSCP-7749に接触する直前に金属棒は消失し、再度SCP-7749の直上に出現し落下する。この繰り返しがしばらく続く。]

12:17: [The bar once again vanishes before making contact with SCP-7749, but does not reappear. Researcher Carson notes this and waits for the bar to reappear. After eight minutes of waiting, Researcher Carson appears mildly frustrated and exits the containment chamber.]

12:17: [金属棒はまたSCP-7749と接触する直前に消失するが、再出現しない。カーソン研究員はこのことを記録し、金属棒の再出現を待つ。8分の待機の後、カーソン研究員は軽く苛立ち、収容チャンバーから退出する。]

[END LOG]/[ログ終了]


Note(s): Volatile and unpredictable. I advise we move ahead with caution when it comes to experimentation.
追記: 不安定で予測不可能。実験は注意して行うことをお勧めします。

-Kenneth Carson, researcher
-ケネス・カーソン研究員

(訳注:前述の理由により原文記載を省略しています)
2023/05/20

SCP財団記録・情報保安管理局 — PANOPTICON

以下の文書は2023年5月20日の米国南西地域におけるPANOPTICON ping記録です。

Ping送信: 13:00:00 UTC

サイト-15 応答: 13:00:18 UTC
サイト-45 応答: 13:00:21 UTC
サイト-56 応答: 13:00:20 UTC
サイト-86 応答: 13:00:46 UTC
サイト-666 応答: 13:00:22 UTC


Ping送信: 13:05:00 UTC

サイト-15 応答: 13:05:20 UTC
サイト-45 応答: 13:05:17 UTC
サイト-56 応答: 13:05:23 UTC
サイト-86 応答: 13:05:55 UTC
サイト-666 応答: 13:05:19 UTC


Ping送信: 13:10:00 UTC

サイト-15 応答: 13:10:19 UTC
サイト-45 応答: 13:10:20 UTC
サイト-56 応答: 13:10:22 UTC
サイト-86 応答: 13:11:09 UTC
サイト-666 応答: 13:10:17 UTC

Following the above ping report, an investigation was launched into the incongruity. After faulty equipment was ruled out, SCP-7749, having been discovered at Site-86 the same day the issue began, was determined to be the most probable cause. As such, Dr. Evie Salem-Orden4 and Archivist Ryan River5 launched a joint operation to lessen SCP-7749's temporal impact on Site-86.

上記のpingレポートの後、この不一致についての調査が開始されました。機器の故障の可能性が除外され、不一致の発生と同日にサイト-86で発見されたSCP-7749が原因である可能性が高いと判断されました。そのため、エヴィ・セイラム=オーデン博士6及びライアン・リバー記録管理官7によってSCP-7749によるサイト-86への時間的影響を軽減する試みが開始されました。

21/05/2023
2023/05/21

SCP FOUNDATION INCIDENT LOGS 21/05/2023/SCP財団インシデントログ 2023/05/21

The following excerpts were recorded by various security cameras throughout Site-86 on May 21, 2023.
以下の抜粋は2023年5月21日にサイト-86のいくつかの監視カメラによって記録されたものです。

[BEGIN LOG]/[ログ開始]

10:02: [Ethics Committee liaison Henri Cosztonne is seen sitting at his desk. He appears to be reading something on his computer, though the screen cannot be seen.]

10:02: [ヘンリー・コズトーン倫理委員会リエゾンが机に座っている。コンピューターで何かを読んでいるようだが、画面は確認できない。]

10:04: [Cosztonne's office phone rings. He moves to pick it up, but ceases all movement, including breathing and blinking, shortly before he can reach the phone, remaining frozen in place with his hand directly above it.]

10:04: [コズトーンの内線電話が鳴る。彼は電話を取ろうとするが、受話器を取る直前で呼吸や瞬きを含むあらゆる動作を停止する。彼の手は受話器の直上で静止している。]

10:05: [The phone rings again. Cosztonne remains frozen in place.]

10:05: [電話が再び鳴る。コズトーンは静止したままである。]

10:06: [The phone rings a third time. Cosztonne remains frozen in place.]

10:06: [電話が三度鳴る。コズトーンは静止したままである。]

10:30: [Cosztonne finally resumes movement, picking up the phone, but expresses confusion upon finding no one on the line. He places the phone down and continues his previous activities, seemingly unaware of the event.]

10:30: [コズトーンはついに動作を再開し、受話器を取るが、電話口に誰もいないことに困惑する。彼は電話を置き、一連の出来事に気づいていないかのように以前の行動を再開する。]

[END LOG]/[ログ終了]


[BEGIN LOG]/[ログ開始]

13:25: [Dr. Charles Wendover is seen walking through the Site-86 greenhouse, holding a watering can.]

13:25: [チャールズ・ウェンドーバー博士がじょうろを持ってサイト-86の温室を歩いている。]

13:26: [Dr. Wendover approaches SCP-6664-B. As he attempts to water it, the watering can in his hand vanishes. He recoils slightly in confusion, and begins looking around for the watering can fruitlessly. After a few moments, he shrugs and walks out of frame.]

13:26: [ウェンドーバー博士がSCP-6664-Bに近づき水をやろうとすると、手に持っていたじょうろが消失する。彼は混乱して少し後ずさりし、じょうろを探し始めるが無駄に終わる。しばらくして、彼は肩をすくめて温室から出ていく。]

13:30: [Dr. Wendover returns with another watering can. He once more attempts to water SCP-6664-B. A few moments later a metal watering can, identified as the first one used by Dr. Wendover, appears in the air roughly 0.3 meters left of his head. It accelerates towards him, hitting him in the head and knocking him over, spilling both its and the other can's contents.]

13:30: [ウェンドーバー博士が別のじょうろを持って帰ってくる。彼はもう一度SCP-6664-Bに水をやろうと試みるが、その直後にウェンドーバー博士が最初に持っていた金属製のじょうろが彼の頭の約0.3m左に現れる。じょうろは彼の方へと加速し、彼の頭に衝突し倒す。両方のじょうろの中身がこぼれる。]

13:31: [Dr. Wendover stands. Blood is seen on his head and neck. He looks at the cans on the ground, slowly backs away from them, and runs out of frame.]

13:31: [ウェンドーバー博士が立ち上がる。頭と首に血が確認できる。彼は落ちたじょうろを見てゆっくりと後ずさり、温室から走り去る。]

[END LOG]/[ログ終了]

23/05/2023
2023/05/23

SCP FOUNDATION CONTAINMENT LOGS 21/05/2023/SCP財団収容ログ 2023/05/21

The following is an abridged summary of containment attempts of SCP-7749 as part of the joint operation by Dr. Salem-Orden and Archivist River, May 21, 2023.
以下は2023年5月21日にセイラム=オーデン博士とリバー記録管理官による共同作戦の一部として行われた収容試行の要約です。

Method: Installation of several Scranton reality anchors (SRAs) in SCP-7749's containment chamber.

方法: SCP-7749収容チャンバーに複数のスクラントン現実錨(SRA)を導入する。

Result: All installed SRAs were spontaneously altered in shape, distorting several critical components into jagged and inconsistent shapes. All units were rendered inoperable.

結果: 導入された全てのSRAは自発的に形状変化し、いくつかの重要な部品が歪んだ一貫性のない形状へと歪曲した。全ての機器が動作不能と宣言された。


Method: Relocation of SCP-7749 off-site.

方法: SCP-7749のサイト外への移送。

Result: All agents sent to place SCP-7749 into a portable containment locker were propelled away from the object at high speed. All agents were uninjured but were unsuccessful in getting close to SCP-7749.

結果: SCP-7749をポータブル収容ロッカーに収容しようと試みた全エージェントはオブジェクトから離れる方向に高速で押し出された。負傷者はいなかったが、SCP-7749に接近することに成功した者もいなかった。


Method: Installation of a Xyank/Anastasakos Constant Temporal Sink (XACTS) in SCP-7749's containment chamber.

方法: SCP-7749収容チャンバーにシャンク/アナスタサコス恒常時間溝(XACTS)を導入する。

Result: A metal bar (identified as the one used in Experiment Log 20/05/2023) materialized in front of SCP-7749 and was launched at the XACTS at high speed, destroying the unit.

結果: SCP-7749の前に金属棒(実験ログ2023/05/23のものと同定された)が物質化し、XACTSへと高速で発射された。XACTSは破壊された。

metalbar.jpeg

Warping pattern on metal bar caused by SCP-7749's anomalous effects./SCP-7749の異常影響によって金属棒に発生した紋様。

2023/05/22

SCP財団記録・情報保安管理局 — PANOPTICON

以下の文書は2023年5月22日の米国南西地域におけるPANOPTICON ping記録です。

Ping送信: 13:00:00 UTC

サイト-15 応答: 13:00:22 UTC
サイト-45 応答: 13:00:17 UTC
サイト-56 応答: 13:00:23 UTC
サイト-86 応答: 13:05:49 UTC
サイト-666 応答: 13:00:18 UTC


Ping送信: 13:05:00 UTC

サイト-15 応答: 13:05:20 UTC
サイト-45 応答: 13:05:17 UTC
サイト-56 応答: 13:05:19 UTC
サイト-86 応答: 13:11:55 UTC
サイト-666 応答: 13:05:20 UTC


Ping送信: 13:10:00 UTC

サイト-15 応答: 13:10:21 UTC
サイト-45 応答: 13:10:23 UTC
サイト-56 応答: 13:10:18 UTC
サイト-86 応答: 13:17:23 UTC
サイト-666 応答: 13:10:20 UTC

22/05/2023
2023/05/22

SCP FOUNDATION INCIDENT LOGS 22/05/2023/SCP財団インシデントログ 2023/05/22

The following excerpts were recorded by various security cameras throughout Site-86 on May 22, 2023.
以下の抜粋は2023年5月22日にサイト-86のいくつかの監視カメラによって記録されたものです。

[BEGIN LOG]/[ログ開始]

11:10: [Dr. Stephanie Mulberry is seen eating in the site cafeteria.]

11:10: [ステファニー・マルベリー博士がサイト内のカフェテリアで食事をしている。]

11:12: [Dr. Mulberry stands and begins walking towards a garbage can on the far side of the cafeteria.]

11:12: [マルベリー博士が立ち上がり、カフェテリアの逆側にあるゴミ箱へと歩き出す。]

11:13: [Before she is able to reach the garbage can, Dr. Mulberry is teleported 6m backwards from where she was walking. She continues walking, appearing not to notice. She once again teleports 6m back when she reaches her previous position in front of the can. This happens five more times.]

11:15: [The loop ends as Dr. Mulberry is flung several meters forward by an unseen force, crashing into the garbage can and several gathered onlookers.]

[END LOG]


[BEGIN LOG]

15:23: [Agent Roxanne Quaver is seen talking to several other agents in a hallway.]

15:28: [Agent Quaver vanishes for less than a second and reappears hovering 0.3m above the ground. Confusion ensues among the group.]

15:29: [Agent Zachary Mejnik attempts to pull Agent Quaver down to the ground. His hands pass through the body of the agent, leading to further unrest among the group. Several other members of the group attempt and are equally unsuccessful.]

15:33: [After four minutes of confused conversation between members of the group, Agent Quaver spontaneously inverts, remaining in her position above the ground, but hovering upside-down.]

15:34: [Agent Quaver ceases hovering and falls to the ground. Agent Mejnik attempts to catch her, knocking her off-course in the process and making her land on her arm instead of her head. Agent Quaver is uninjured aside from a minor bruise.]

[END LOG]

23/05/2023

SCP FOUNDATION CONTAINMENT LOGS 23/05/2023

The following is an abridged summary of containment attempts of SCP-7749 as part of the joint operation by Dr. Salem-Orden and Archivist River, May 23, 2023.

Method: Neutralization of SCP-7749 via the detonation of explosive charges.

Result: Site-86's entire Keter containment wing was temporally frozen immediately upon detonation. Over an hour later, the Keter wing was unfrozen, but had moved backward in time three days, leading to confusion among personnel. SCP-7749 was unaffected and the charges were missing upon resumption of temporal flow.


Method: Opening of a Way to transport SCP-7749 off-site.

Result: A Way was successfully created under SCP-7749, but it did not possess a corresponding emergence point. The area of space within the Way appeared as a solid wall of purple and black-checkered squares that SCP-7749 was unable to pass through.


Method: Use of thaumaturgy to teleport SCP-7749 off-site.

Result: Attempt failed for an unknown reason. The thaumaturge assigned claimed that the "request timed out", and refused to further elaborate.

22/05/2023

SCP FOUNDATION AUDIO LOG 23/05/2023

The following is a transcript of a meeting between Dr. Salem-Orden, Archivist River, and site director Anthony Joko on May 23, 2023.

[BEGIN LOG]

Dr. Salem-Orden: Director, this is becoming a problem. An even worse problem than it already is.

Dir. Joko: How bad is it?

[Arch. River produces a printed copy of the PANOPTICON ping report for May 23 and hands it to Dir. Joko.]

Dr. Salem-Orden: Site-86 is now over ten minutes behind the rest of the world.

Dir. Joko: All of Site-86?

Dr. Salem-Orden: Yes. All of Site-86.

Dir. Joko: Even the—

Dr. Salem-Orden: Even the external facilities. For some reason, this problem is exclusive to Site-86. All of the surrounding area is operating normally.

Dir. Joko: I've seen the security footage. You know this isn't just a temporal anomaly.

[Arch. River steps forward.]

Arch. River: Yeah— yes. The, uh, the region of space inhabited by Site-86 has become incredibly hazardous. SCP-7749's instability is not just limited to its "radius" anymore. I've stopped updating the main file at this point because this thing's parameters keep changing on us.

Dr. Salem-Orden: We're unable to diminish its effects and we're unable to move it. We've tried everything.

Dir. Joko: You've tried six things.

Dr. Salem-Orden: That's just what's in the file, Director. Ryan couldn't include all of them.

Arch. River: Sir, if you don't mind me butting in, I'm sure you've also noticed the, uh, the other problem that's been happening.

[Silence on recording for several seconds.]

Dir. Joko: The…?

[Arch. River clears his throat.]

Arch. River: Right. Yeah. Site-86's average temperature over the last week has inexplicably skyrocketed. The entire site is overheating, but no one's found any ventilation or air conditioning issues.

Dir. Joko: I suppose it is hot in here, yeah.

Arch. River: It's going to get worse. If the site's instability and temperature keep rising at this rate, Site-86 will be uninhabitable by the 25th.

Dir. Joko: I'm still not… entirely sure what you want me to do about it. This is your task force.

Dr. Salem-Orden: We're not proposing more experiments, Director. We're proposing we evacuate the site.

[END LOG]


Afterword: Following this meeting, Director Joko signed an executive order to evacuate the site of all personnel and anomalies, which would take place over the next two days. All anomalies would be transferred to nearby sites, such as Sites -56 and -45, or to temporary containment outposts. This evacuation would remain in effect until a solution to the SCP-7749 problem was discovered.

24/05/2023

SCP FOUNDATION RECORDS AND INFORMATION SECURITY ADMINISTRATION — PANOPTICON

The following is the PANOPTICON ping report for the Southwest United States Region on May 24, 2023.

Ping sent: 13:00:00 UTC

Site-15 response: 13:00:17 UTC
Site-45 response: 13:00:18 UTC
Site-56 response: 13:00:23 UTC
Site-86 response: 13:30:06 UTC
Site-666 response: 13:00:18 UTC


Ping sent: 13:05:00 UTC

Site-15 response: 13:05:23 UTC
Site-45 response: 13:05:20 UTC
Site-56 response: 13:05:19 UTC
Site-86 response: 13:46:57 UTC
Site-666 response: 13:05:21 UTC


Ping sent: 13:10:00 UTC

Site-15 response: 13:10:23 UTC
Site-45 response: 13:10:20 UTC
Site-56 response: 13:10:19 UTC
Site-86 response: 14:12:16 UTC
Site-666 response: 13:10:21 UTC

glitch.jpeg

Photograph taken on Site-86 grounds on May 24, 2023.

24/05/2023

SCP FOUNDATION INCIDENT LOGS 24/05/2023

The following excerpts were recorded by various security cameras throughout Site-86 on May 24, 2023.

[BEGIN LOG]

14:41: [Assistant site director Shannon Butler is seen leading a group of agents transporting several anomalies.]

14:52: [Asst. Dir. Butler pauses. The agents pause in response. Asst. Dir. Butler does not move for two minutes.]

14:54: [Asst. Dir. Butler screams. Her entire body becomes near-total black in color. The agents back away in caution.]

14:55: [Asst. Dir. Butler falls to the ground, continuing to scream. Her body rapidly flickers between near-total black, a pattern of purple and black-checkered squares, and completely vanishing. An agent from the group runs to get help. She is seen slamming her fists into the ground and frantically grabbing at her hair and face as her body begins significantly shaking.]

15:13: [Asst. Dir. Butler stops screaming. Her body slowly regains its typical form. She remains on the ground, crying and hyperventilating. After two minutes, an agent helps her to her feet and the group hesitantly resumes moving alongside her.]

[END LOG]


[BEGIN LOG]

15:23: [Archivist River is seen in the Safe containment wing, overseeing the transportation of several anomalous objects.]

15:31: [Arch. River vanishes, reappearing a second later 2m to the left, his body partially clipped into the wall next to him. He begins panicking, trying to escape the wall.]

15:34: [Arch. River pushes against the wall a final time, successfully passing back through it and freeing himself. Upon being freed, he hovers in the air for a second before falling, passing through the floor and falling through to the floor below. Security cameras on lower floors at this point capture Arch. River falling all the way down the site, passing through all solid objects in his way. He is heard screaming the entire time.]

15:34: [Cameras in Basement Level 3 capture Arch. River falling through the floor. As BL-3 is the lowest floor of Site-86, Arch. River is assumed lost, as he has not been recovered since.]

[END LOG]


Addendum 7749.2: Archival

This file is set to be archived following the May 25, 2023 incident at Site-86. For more information regarding the incident, click here for the current version of this file.


ページコンソール

カテゴリ

SCP-JP

本投稿の際にscpタグを付与するJPでのオリジナル作品の下書きが該当します。

GoIF-JP

本投稿の際にgoi-formatタグを付与するJPでのオリジナル作品の下書きが該当します。

Tale-JP

本投稿の際にtaleタグを付与するJPでのオリジナル作品の下書きが該当します。

翻訳

翻訳作品の下書きが該当します。

その他

他のカテゴリタグのいずれにも当て嵌まらない下書きが該当します。

コンテンツマーカー

ジョーク

本投稿の際にジョークタグを付与する下書きが該当します。

アダルト

本投稿の際にアダルトタグを付与する下書きが該当します。

既存記事改稿

本投稿済みの下書きが該当します。

イベント

イベント参加予定の下書きが該当します。

フィーチャー

短編

構文を除いた本文の文字数が5,000字前後か、それよりも短い下書きが該当します。

中編

構文を除いた本文の文字数が短編と長編の中間程度の下書きが該当します。

長編

構文を除いた本文の文字数が20,000字前後か、それよりも長い下書きが該当します。

事前知識不要

特定の事前知識を求めない下書きが該当します。

フォーマットスクリュー

SCPやGoIFなどのフォーマットが一定の記事種でフォーマットを崩している下書きが該当します。


シリーズ-JP所属

JPのカノンや連作に所属しているか、JPの特定記事の続編の下書きが該当します。

シリーズ-Other所属

JPではないカノンや連作に所属しているか、JPではない特定記事の続編の下書きが該当します。

世界観用語-JP登場

JPのGoIやLoIなどの世界観用語が登場する下書きが該当します。

世界観用語-Other登場

JPではないGoIやLoIなどの世界観用語が登場する下書きが該当します。

ジャンル

アクションSFオカルト/都市伝説感動系ギャグ/コミカルシリアスシュールダーク人間ドラマ/恋愛ホラー/サスペンスメタフィクション歴史

任意

任意A任意B任意C

ERROR

The mitsuki1729's portal does not exist.


エラー: mitsuki1729のportalページが存在しません。利用ガイドを参照し、portalページを作成してください。


利用ガイド

  1. portal:5644698 (04 Sep 2019 22:03)
特に明記しない限り、このページのコンテンツは次のライセンスの下にあります: Creative Commons Attribution-ShareAlike 3.0 License