@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: 0.5rem;
left: 0.5rem;
width: 3rem;
height: 3rem;
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: 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;
width: var(--body-width-on-desktop, 45.75rem);
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 {
/* header measurements */
--header-height-on-desktop: 10rem;
--header-height-on-mobile: 10rem;
--header-h1-font-size: clamp(2rem, 5vw, 2.8125rem);
--header-h2-font-size: clamp(0.875rem, 3vw, 0.9375rem);
--logo-image: url("https://nu-scptheme.github.io/Black-Highlighter/img/logo.svg");
}
#header {
--search-textbox-text-color: var(--swatch-secondary-color);
background: none;
}
#header::before {
content: " ";
position: absolute;
width: 100%;
height: 100%;
left: 0;
top: 0.75rem;
background-image: var(--logo-image);
background-repeat: no-repeat;
background-position: center 0;
background-size: auto calc(var(--header-height-on-desktop) - 1.5rem);
opacity: 0.8;
pointer-events: none;
}
#header h1,
#header h2 {
margin: 0;
padding: 0;
width: 100%;
height: var(--header-height-on-desktop);
display: flex;
align-items: center;
justify-content: center;
display: flex;
align-items: center;
justify-content: center;
}
#header h1 a,
#header h1 a::before,
#header h2 span,
#header h2 span::before {
margin: 0;
padding: 0;
z-index: 0;
display: block;
text-align: center;
}
#header h1 {
z-index: 1;
}
#header h1 a::before,
#header h1 a::after {
content: var(--header-title);
}
#header h1 a::before {
color: rgb(var(--swatch-text-tertiary-color));
z-index: -1;
-webkit-text-stroke: 0.325rem rgb(var(--swatch-text-dark));
}
#header h1 a::after {
color: rgb(var(--swatch-headerh1-color));
z-index: 1;
}
#header h2 {
z-index: 0;
text-transform: uppercase;
pointer-events: none;
}
#header h2 span {
margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - 2em);
}
#header h2 span::before,
#header h2 span::after {
--wght: 600;
content: var(--header-subtitle);
position: absolute;
left: 50%;
transform: translateY(-50%) translateX(-50%);
width: 100%;
text-align: center;
}
#header h2 span::before {
-webkit-text-stroke: 0.25rem rgb(var(--swatch-text-dark));
}
#header h2 span::after {
color: rgb(var(--swatch-headerh2-color));
z-index: 1;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
color: rgba(0, 0, 0, 0);
}
@media (min-width: 36rem) {
#login-status {
flex-grow: 1;
left: 3%;
right: initial;
}
#login-status::before {
--mask-image: none;
background-color: transparent;
}
#login-status:not(:focus-within) {
color: rgb(var(--login-line-divider-color));
-webkit-user-select: initial;
-moz-user-select: initial;
-ms-user-select: initial;
user-select: initial;
}
#login-status #account-topbutton,
#login-status:not(:focus-within) #account-topbutton {
--clip-path:
polygon( 0 0, 100% 0, 100% 100%, 0 100% );
background-color: rgba(var(--login-arrow-color), 0);
}
#login-status #account-topbutton::before{
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: rgba(var(--login-arrow-color), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton::before,
#login-status:not(:focus-within) #account-topbutton:hover::before {
--clip-path:
polygon( 30% 35%, 70% 35%, 50% 60%, 50% 60% );
--mask-image: initial;
}
#login-status:not(:focus-within) #account-topbutton::after {
display: none;
}
#login-status:not(:focus-within) *:not(#account-topbutton):not([href*="account/messages"]) {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
pointer-events: all;
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#login-status:not(:focus-within) *:not(#account-topbutton):not(#account-options):not([href*="account/messages"]) {
opacity: 1;
}
#login-status #my-account {
--wght: 300;
}
#account-options {
background: var(--gradient-header);
}
#search-top-box {
top: 1.5em;
right: 3%;
background: rgba(var(--search-focus-textbox-bg-color), 0.4);
box-shadow: calc(var(--search-height) / 2 * -1) 0 calc(var(--search-height) / 2) rgba(var(--search-focus-textbox-bg-color), 0.4);
}
#search-top-box:focus-within ~ #login-status {
opacity: 1;
}
#search-top-box::after {
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
transition:
background-color 150ms cubic-bezier(0.4, 0, 0.2, 1),
clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1),
-webkit-clip-path 150ms cubic-bezier(0.4, 0, 0.2, 1);
}
#search-top-box:not(:focus-within)::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0% 100%
);
background-color: rgba(var(--search-icon-bg-color, --dark-accent), 1);
-webkit-clip-path: var(--clip-path);
clip-path: var(--clip-path);
}
#search-top-box:not(:focus-within):hover::after {
--clip-path:
polygon(
0 0,
100% 0,
100% 100%,
0 100%
);
background-color: rgb(var(--search-icon-hover-bg-color));
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) {
max-width: var(--search-width);
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="text"] {
max-width: var(--search-width);
padding: 0 var(--search-height) 0 1em;
outline-width: 0;
background-color: rgb(var(--search-focus-textbox-bg-color), 0.35);
color: rgba(var(--search-textbox-text-color), 0.4);
cursor: pointer;
}
#search-top-box form[id="search-top-box-form"]:not(:focus-within) input[type="submit"],
#search-top-box form[id="search-top-box-form"]:focus-within input[type="submit"] {
pointer-events: all;
border: none;
}
}
#page-title::after,
.meta-title::after,
#page-title::before,
.meta-title::before {
content: "";
flex-grow: 1;
height: 0.0625rem;
background: rgb(var(--swatch-primary));
}
#page-title::before,
.meta-title::before {
margin: auto 1.25rem auto auto;
}
Info
Article: SCP-033-PT-EX — Dream-Catcher
Author:
Battata
Translator:
L200
3/033-PT-EX LEVEL 3/033-PT-EX
SECRET
|
 |
Item #: SCP-033-PT-EX
Object Class: Safe
Explained
|
Threat Level: Yellow
Special Containment Procedures: The entrance to the road where SCP-033-PT is located is blocked and a new road has been drawn to divert civilians from the anomaly. Foundation personnel and members of MTF PT47-ε ("Children of Leshii") are stationed at a base installed near the area of effect of SCP-033-PT for anomaly analysis, under the assumption that they would be studying the soil and vegetation of the location.
Personnel must request authorization from the base commander to use SCP-033-PT for testing and sample collection. Samples of SCP-033-PT can be analyzed at the same location, being studied in a more complex way, tested with living beings and stored in Site PT10.
HAZMAT suits are required before entering the area of effect of SCP-033-PT. In the event that an individual comes into contact with the anomaly without protection, they must undergo respiratory assistance via a pulmonary ventilator, and be subsequently transferred and replaced from the local facility.
Description: SCP-033-PT is located on a 10 m wide side road in the municipality of Salgueiro, close to the BR-232 and BR-116 highways, in Pernambuco, Northeastern Brazil. Its area of effect is approximately 20 m n diameter.
SCP-033-PT appears to be a gas-based anomaly. Inhalation causes effects such as sluggishness, blurred vision, and muscle relaxation. Its main hallucinogenic effect causes individuals to experience dreams, fantasies, nightmares, or nostalgic imaginings that they experienced in life. Effects will last 2-3 hours.
Characteristically, SCP-033-PT resembles neurotoxins that affect the nervous system and, essentially, the brain. Regions such as the mesencephalon, along with the limbic system, and the hippocampus, are the areas most affected by the immediate consumption of SCP-033-PT. Continuous consumption can lead to, including but not limited to: death of long-term memory-related neurons; shortness of breathe; memory, vision, or reasoning loss; compulsive behaviors and hallucinations and, later, the individual's death.
History and Discovery: The first disclosure made about SCP-033-PT to the Foundation was from undercover field agents in the Federal Highway Police of Pernambuco, on 26/11/1999, during the Operation for the Guarantee of Law and Order, with the objective of "preserving public order and the safety of people and property".
During a police approach, two individuals under the influence of psychotropic drugs were observed driving a freight truck, claiming to have seen fictional characters from television cartoons, as they passed along a "bumpy and cloudy path". The subjects did not carry hallucinogenic drugs, only tablets of pressed Cannabis Sativa were found in the vehicle's load. Subjects received Class A amnestics and were apprehended.
The mentioned road was located by field agents, and after realizing and suffering from the hallucinogenic effects of SCP-033-PT, they contacted the Foundation. On the side of the road, burned carcasses of an overturned truck were identified, with no clear signs of their place of origin.
A document belonging to the self-named "Bad Trip" Group of Interest, containing information about the exposed anomaly, was found near the remains of the burned truck. Below follows the bulletin:
Document found near SCP-033-PT.
In an attempt to find out more information about SCP-033-PT, the Foundation used the MTF PT47-ε to spy and obtain inside information about Bad Trip. A document was found that proves the use of SCP-033-PT as an anomalous psychotropic drug sold by the organization. This document was written by Paulo Gouveia, an individual identified as a member of the GoI Hunting Club of the Fauna and the Flora, who has contact with Bad Trip:
After the disclosure of said document to the CCFF, the organization contacted and contracted the GoI Anonymous Eyes, Ltda, to obtain further information regarding the expedition made by Mr. Gouveia and other individuals associated with the case.
The following documents are a set of reports made by the OA regarding Paulo Gouveia, who was observed and interrogated by a member of Anonymous Eyes:
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
INTELLIGENCE REPORT No. 847/1999
Individual Target: Paulo Gouveia
Subject: Collection of information through target
Date: 11/12/1999
Client: Hunting Club of the Fauna and the Flora
Designated Employee: ███████ ████████████
Observation Period: 06/12/1999 - 09/12/1999
Attachments: Target Interrogation Transcript
Introduction
The target, known as Paulo Gouveia, businessman and owner of 19 nightclubs throughout Brazil and member of the Hunting Club of the Fauna and the Flora, smuggled anomalous animals to the group called Bad Trip for the production of anomalous psychotropic drugs, in addition to ordering such artifacts later. However, said goods never reached their final destination in Salgueiro, where one of Paulo Gouveia's properties is located.
Goals
Subdue the target, in order to obtain information about the shipments made by them and other individuals of the Hunting Club, and the ordered goods.
Summary
Due to the scarcity of information about the shipments made and the whereabouts of the goods reserved by the target, the use of involuntary interrogation with the subject was needed.
Report
The target revealed information about the shipments and the ordered goods. Read "Target Interrogation Transcript" for full understanding of the facts.
Final Notes
Target released after interrogation. Operation completed.
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
TARGET INTERROGATION TRANSCRIPT
Date: 09/12/1999
Target: Paulo Gouveia
Designated Employee: ███████ ████████████
Preface
Target was located on one of their residential properties in a rural area in Mato Grosso.
Agent: Starting interrogation, 22 hours 13 minutes.
Paulo Gouveia: I already said that I'm not gonna answer a goddamn thing!
Agent: Mister Gouveia, I'm here just to collect information about some goods you ordered on… the 10th of November that would have arrived on the 13th of November…
Paulo Gouveia: How do you know that? Are you from the Reliquary? If so, I want you to fuck off!
Agent: No, Sir. I was hired to obtain this information.
Paulo Gouveia: Oh, yes, Anonymous Eyes, am I right? Look, whoever wants to know about the drug I ordered, it didn't arrive, and I didn't even pay for it!
Agent: I know that you have contact with who supplied you with the drugs, and I know it's Bad Trip. They must have gotten in touch to talk about what happened with the shipment.
Paulo Gouveia: Yes, they called me the day after what would be delivery day. I was pissed at them. They said that an armored car and some well-armed men intercepted the truck and then shit happened. A firefight broke out and the truck ended up exploding, and the cargo was lost. The way they said it… it seemed to me to be the work of the Reliquary.
Agent: And how did they end up finding out about the transport? Actually, a better question, who did you tell about this?
Paulo Gouveia: I only told those who participated in the hunting expeditions with me… I mean, the illegal expeditions I used to do to sell to Trip. It's not possible that they would betray me in this…
Agent: Anything is possible. Now, you will give me the name of everyone who participated in these expeditions.
Paulo Gouveia: R-right. Y-you won't kill me later, right?
Agent: I didn't get paid for this. Ending interrogation, 22 hours 19 minutes.
Afterword
Target presented individuals who participated in poaching with them. Target released.
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
6 names were disclosed by Mr. Gouveia after the interrogation with the Anonymous Eyes agent. The individuals were observed and questioned for further information regarding the possible involvement of the Reliquary with SCP-033-PT.
One of the names disclosed by Mr. Gouveia is Fabrício Duarte Júnior. Like the other subjects, he had been observed and interrogated by an Anonymous Eyes member. The following documents are a set of reports made by the OA regarding Fabrício Duarte:
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
INTELLIGENCE REPORT No. 854/1999
Individual Target: Fabrício Duarte Júnior
Subject: Collection of information through target
Date: 29/12/1999
Client: Hunting Club of the Fauna and the Flora
Designated Employee: ███████ ████████████
Observation Period: 24/12/1999 - 27/12/1999
Attachments: Target Interrogation Transcript
Introduction
The target, known as Fabrício Duarte Júnior, is a member of the Hunting Club of the Fauna and the Flora, and has participated in illegal hunting expeditions with Paulo Gouveia and others. Possible connection with the Reliquary.
Goals
Subjugate the target in order to obtain information regarding the shipments made and the goods ordered by Paulo Gouveia.
Summary
Involuntary interrogation with the subject was needed.
Report
The target revealed information about the goods ordered by Paulo Gouveia and the Reliquary. See "Target Interrogation Transcript" for full understanding of the facts.
Final Notes
Target was left at the scene after interrogation. Operation completed.
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
TARGET INTERROGATION TRANSCRIPT
Date: 27/12/1999
Target: Fabrício Duarte Júnior
Designated Employee: ███████ ████████████
Preface
Target was located in a luxury hotel in Curitiba, Paraná.
Agent: Starting interrogation, 2 hours and 33 minutes.
Fabrício Duarte: Huh, who are you? How did you get in here? Why did you tie me up?!
Agent: Mister Duarte, I'm here to collect information, and I think you should have it.
Fabrício Duarte: What are you talking about?
Agent: Do you know Mr. Paulo Gouveia?
Fabrício Duarte: Why do you ask that?
Agent: It is not you who asks the questions. Are you going to answer me or do I have to give you a little help?
Fabrício Duarte: Okay, okay. Yes, I do. We were colleagues… at work.
Agent: That I know. From the Hunting Club. Now, you have worked with Gouveia on expeditions that were not allowed by the Club, correct?
Fabrício Duarte: Yeah, yeah.
Agent: And you know what the expeditions were for, don't you?
Fabrício Duarte: Uh, yeah. Paulo sold what we hunted.
Agent: And you know who he sold to?
Fabrício Duarte: Not much, he said he sold them to drug producers, and bought them later…
Agent: You see where I'm going, don't you, Mr Duarte?
Fabrício Duarte: What do you mean?
Agent: I can see that you're tense… I can feel that you are omitting something from me…
Fabrício Duarte: I don't get it…
Agent: I know who you work for, Mr Duarte. I know you warned your friends at the Reliquary about a drug your colleague ordered…
Fabrício Duarte: Is… it that obvious?
Agent: I know how the Reliquary works, Mr. Duarte, and I doubt that's your real name, either.
Fabrício Duarte: If you really know the Reliquary, you should've prepared better for this occasion…
(Cable is broken)
Agent: Son of a b-
(Muffled shots, following by fighting noises)
Agent: Lucky for you my goal here is not to kill you.
(Recording cut)
Agent: Restarting recording, 2 hours and 51 minutes… Now there's nowhere to run.
Fabrício Duarte: So, what do you want to know?
Agent: I wanted solid proof that the Reliquary was involved in that psychotropic drug delivery, now I know… But what exactly would it be used for?
Fabrício Duarte: Huh, it would be resold. Or we would use it against enemies…
Agent: Too bad they messed up the plan…
Fabrício Duarte: The goods were only destroyed because they were flammable. They shot the truck so much that it ended up affecting the load.
Agent: Alright, Mr. Duarte… That's all I needed. Thank you very much for your cooperation.
Fabrício Duarte: What, won't you let me go?
Agent: I prefer to leave you the way you are.
Fabrício Duarte: Whatever…
Agent: Ending interrogation… 2 hours and 56 minutes.
Afterword
Target has been confirmed as a member of the Reliquary. Target was left at the scene after interrogation.
CLASSIFIED
Disclosure of this document to unauthorized individuals is a breach of contract and is subject to applicable legal action.
Addendum 033-PT-02 — 02/01/2000: Mister Paulo Gouveia and the other members of the Hunting Club of the Fauna and the Flora were removed from their operational positions in the association, after socioeconomic disagreements with the Club, which repudiates the commercialization of anomalous animals captured by its members.
Analyzes performed with samples of SCP-033-PT did not show flammable chemical substances or explosive reagents in the composition of the anomaly (as informed by Fabrício Duarte in the Anonymous Eyes interrogation). These components are presumed to have dissipated after the explosion of the truck containing SCP-033-PT. Such an event would also have caused the propagation of the anomaly and the expansion of its area of effect.
Specimens of the amphibian used to make SCP-033-PT were found in the northern region of the Amazon rainforest, close to the border between Brazil and Venezuela, during expeditions carried out by the Foundation. The animal resembles the Dendrobates leucomelas species, which have the same biological and habitational characteristics, except for their psychoactive property. This animal, until then, had not been officially cataloged by the Taxonomic Catalog of Brazilian Fauna.
Comparisons with the samples collected from SCP-033-PT and the psychoactive samples collected from the new amphibian specimens showed a correlation of 99.7%. Further studies regarding the animal's toxin and its composition are being carried out. After the discovery of its effects, the area of effect of SCP-033-PT and its concentration in the air decreased dramatically.
Addendum 033-PT-03 — 17/01/2000: Analyzes of samples of the amphibian toxin used in the manufacture of SCP-033-PT show traces of:
- Bufotoxin 5-MeO-DMT, a type of tryptamine, capable of alleviating anxiety and depression, found in plant and amphibian species;
- Bufotenin, an alkaloid with hallucinogenic capability, also found in amphibians.
- DMT (dimethyltryptamine), a psychedelic substance, capable of altering the states of perception and consciousness, commonly used in entheogenic drinks, such as the ayahuasca.
In composition analyzes of SCP-033-PT, harmanes, alkaloids of vegetable origin, and DMT enhancers were found. These are also hallucinogenic and used in ritual drinks. THC (tetrahydrocannabinol), main psychoactive substance found in plants of the Cannabis genus, was also used. The compound allows for greater modification of brain activity and greater potentiation of the effects of the anomalous psychotropic drug, such as in hallucinations.
Addendum 033-PT-04 — 07/02/2000: For the collection and more in-depth analysis of SCP-033-PT, it was necessary to use the MTF PT47-ε, to obtain the anomalous psychotropic in its original form sold by the Bad Trip GoI.
SCP-033-PT is sold contained in 20g metal ampoules, which have a small seal on top, for the withdrawal of the psychotropic drug. The compound is liquid and has an orange color and a sweet smell. It usually is used nasally or orally, being mixed with drinks or other inhalant drugs. SCP-033-PT has the same effects presented in its initial discovery, however these showed greater intensity, lasting less for approximately 30 to 60 minutes.
In its composition, the ether functional group was detected, in which it is used as an anesthetic, and also as an inhalant drug or a compound of one. Furthermore, it has an explosive nature, when mixed with oxygen from the atmosphere. The ether, then, would have been responsible for the explosion of the truck carrying SCP-033-PT, ordered by Mr. Paulo Gouveia.
Addendum 033-PT-05 — Reclassification of SCP-033-PT:
The following note was made by Dr. Gallão, Research Director responsible for SCP-033-PT:
SCP-033-PT is not a random anomaly. We know it was created by humans for entertainment and profit. Despite this, it was able to have more morbid significance to the Reliquary. At the end of the day, no one got what they wanted. Still, the likelihood that the sale of this anomalous psychotropic drug in the hands of Bad Trip will still continue is high.
In addition, Mister Paulo Gouveia may still have interests both in hunting and in buying anomalous drugs from that organization, as he apparently has done several times in the past. If this happens, Gouveia must be investigated, mainly to avoid attracting colleagues from the Reliquary again and once again be backstabbed.
As expected, the current area of effect of SCP-033-PT will soon be neutralized, leaving only the samples at Site PT10. Its composition and purpose of creation are clear. Without a doubt, the object will be reclassified to Explained