: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 > * { 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 (prefers-reduced-motion) { div.anom-bar-container { --timeScale: 0; } } /*-------------------------*/ @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; max-width: 1%;} to { opacity: 1; max-width: 100%;} } @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)); } }
@supports((display: -ms-grid) or (display: grid)) { @media only screen and (min-width: 769px) { #side-bar .close-menu { display: block; position: fixed; top: 0.25rem; left: 0.5rem; width: 3rem; opacity: 1; pointer-events: all; } #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.25rem; left: 0.5rem; width: 3rem; height: 3rem; padding: 0; margin: 0; text-align: center; pointer-events: all; cursor: pointer; -webkit-transition: opacity var(--sidebar-transition-timing); -o-transition: opacity var(--sidebar-transition-timing); -moz-transition: opacity var(--sidebar-transition-timing); transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { --mask: url("data:image/svg+xml,%3C%3Fxml version='1.0' %3F%3E%3C!DOCTYPE svg PUBLIC '-//W3C//DTD SVG 1.1//EN' 'http://www.w3.org/Graphics/SVG/1.1/DTD/svg11.dtd'%3E%3Csvg height='32px' id='Layer_1' style='enable-background:new 0 0 32 32;' version='1.1' viewBox='0 0 32 32' width='32px' xml:space='preserve' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cpath d='M4,10h24c1.104,0,2-0.896,2-2s-0.896-2-2-2H4C2.896,6,2,6.896,2,8S2.896,10,4,10z M28,14H4c-1.104,0-2,0.896-2,2 s0.896,2,2,2h24c1.104,0,2-0.896,2-2S29.104,14,28,14z M28,22H4c-1.104,0-2,0.896-2,2s0.896,2,2,2h24c1.104,0,2-0.896,2-2 S29.104,22,28,22z'/%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(--swatch-menubg-color))) !important; -webkit-border-radius: var(--toggle-roundness, 50%); -moz-border-radius: var(--toggle-roundness, 50%); border-radius: var(--toggle-roundness, 50%); border: var(--toggle-border-color, rgb(var(--swatch-border-color))) var(--toggle-border-width, 0.25rem) solid; } #side-bar:focus-within .close-menu::before, #side-bar:focus-within .close-menu::after { opacity: 0; } #side-bar { display: block; position: fixed; top: 0; left: -webkit-calc(var(--sidebar-width-on-desktop)*-1); left: -moz-calc(var(--sidebar-width-on-desktop)*-1); left: calc(var(--sidebar-width-on-desktop)*-1); z-index: 10; -webkit-transition: left var(--sidebar-transition-timing); -o-transition: left var(--sidebar-transition-timing); -moz-transition: left var(--sidebar-transition-timing); transition: left var(--sidebar-transition-timing); height: 100%; overflow-y: auto; overflow-x: hidden; margin-top: 0; } #side-bar:focus-within { left: 0; } #side-bar .side-block { margin-top: 1rem; background-color: rgb(0, 0, 0, 0); -webkit-border-radius: 0; -moz-border-radius: 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; -webkit-transition: opacity var(--sidebar-transition-timing), width var(--sidebar-transition-timing); -o-transition: opacity var(--sidebar-transition-timing), width var(--sidebar-transition-timing); -moz-transition: opacity var(--sidebar-transition-timing), width var(--sidebar-transition-timing); transition: opacity var(--sidebar-transition-timing), width var(--sidebar-transition-timing); 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: -webkit-calc(100% - var(--sidebar-width-on-desktop)); width: -moz-calc(100% - var(--sidebar-width-on-desktop)); width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } #content-wrap { display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-orient: horizontal; -webkit-box-direction: normal; -webkit-flex-direction: row; -moz-box-orient: horizontal; -moz-box-direction: normal; -ms-flex-direction: row; flex-direction: row; width: -webkit-calc(100vw - (100vw - 100%)); width: -moz-calc(100vw - (100vw - 100%)); width: calc(100vw - (100vw - 100%)); min-height: -webkit-calc(100vh - -webkit-calc(var(--final-header-height-on-desktop, 10.125rem))); min-height: -moz-calc(100vh - -moz-calc(var(--final-header-height-on-desktop, 10.125rem))); min-height: calc(100vh - calc(var(--final-header-height-on-desktop, 10.125rem))); -webkit-box-flex: 2; -webkit-flex-grow: 2; -moz-box-flex: 2; -ms-flex-positive: 2; 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: 45.8rem; max-width: 45.8rem; margin: 0 auto; } @media not all and (min-resolution:.001dpcm) { @supports (-webkit-appearance:none) { #side-bar { -webkit-transition: left var(--sidebar-transition-timing), padding-right var(--sidebar-transition-timing), background-color var(--sidebar-transition-timing); -o-transition: left var(--sidebar-transition-timing), padding-right var(--sidebar-transition-timing), background-color var(--sidebar-transition-timing); -moz-transition: left var(--sidebar-transition-timing), padding-right var(--sidebar-transition-timing), background-color var(--sidebar-transition-timing); transition: left var(--sidebar-transition-timing), padding-right var(--sidebar-transition-timing), background-color var(--sidebar-transition-timing); 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 var(--sidebar-transition-timing); transition: opacity var(--sidebar-transition-timing); } #side-bar .close-menu::before { z-index: 999; } #side-bar .close-menu::after { z-index: 998; } #side-bar:hover .close-menu::before { 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: -webkit-calc(100% - var(--sidebar-width-on-desktop)); width: -moz-calc(100% - var(--sidebar-width-on-desktop)); width: calc(100% - var(--sidebar-width-on-desktop)); opacity: 1; pointer-events: all; } } } } }
@supports((display: -ms-grid) or (display: grid)) { :root { /* header measurements */ --header-height-on-desktop: 10rem; --header-height-on-mobile: 10rem; --header-h1-font-size: -webkit-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750))); --header-h1-font-size: -moz-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750))); --header-h1-font-size: calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750))); } #header { 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 -3.5rem; -webkit-background-size: auto 8rem; -moz-background-size: auto 8rem; -o-background-size: auto 8rem; background-size: auto 8rem; background-position: center top; opacity: 0.45; pointer-events: none; } #header h1, #header h1 a, #header h1 a::before { position: absolute; top: 0; left: 0; margin: 0; padding: 0; width: 100%; height: 100%; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: center; -webkit-align-items: center; -moz-box-align: center; -ms-flex-align: center; align-items: center; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; max-height: inherit; z-index: 0; } #header>h1>a>span { width: 100%; height: 100%; top: 0; left: 0; max-width: inherit; } #header h1 { height: -webkit-calc(100% - 2.25rem); height: -moz-calc(100% - 2.25rem); height: calc(100% - 2.25rem); } #header h1 a::before, #header h1 a { text-align: center; line-height: 0.8; } #header h2, #header h2 span, #header h2 span::before { position: absolute; left: 0; top: 0.15em; margin-left: 0; padding: 0; width: 100%; display: -webkit-box; display: -webkit-flex; display: -moz-box; display: -ms-flexbox; display: flex; -webkit-box-align: end; -webkit-align-items: flex-end; -moz-box-align: end; -ms-flex-align: end; align-items: flex-end; -webkit-box-pack: center; -webkit-justify-content: center; -moz-box-pack: center; -ms-flex-pack: center; justify-content: center; max-height: inherit; z-index: 0; text-transform: uppercase; pointer-events: none; } #login-status { min-height: -webkit-calc(var(--base-font-size) * 1.5); min-height: -moz-calc(var(--base-font-size) * 1.5); min-height: calc(var(--base-font-size) * 1.5); -webkit-border-radius: .0625rem; -moz-border-radius: .0625rem; border-radius: .0625rem; -webkit-border-radius: var(--border-radius-width); -moz-border-radius: var(--border-radius-width); border-radius: var(--border-radius-width); color: rgb(var(--pale-gray-monochrome)); background-color: rgba(0, 0, 0, 0); -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; -webkit-box-flex: 1; -webkit-flex-grow: 1; -moz-box-flex: 1; -ms-flex-positive: 1; flex-grow: 1; left: 3%; right: initial; } #login-status .printuser { --wght: 900; position: relative; top: 0; left: 0; color: rgb(var(--swatch-menutxt-light-color)); -webkit-box-shadow: none; -moz-box-shadow: none; box-shadow: none; padding: 0.25rem; margin: 0; font-weight: 900; } #login-status #my-account { --wght: 300; color: rgb(var(--pale-gray-monochrome)); font-weight: 300; } #login-status #account-topbutton { border: initial; padding: 0.5em 0.5em 0.5em 0.25em; position: relative; height: 100%; top: 0; left: 0; margin: 0; font-size: 1em; } #account-options { width: auto; padding: 0.5em; border-color: rgba(var(--bright-accent)); background: var(--gradient-header); color: rgb(var(--swatch-text-light)); } #account-options ul li a { color: rgb(var(--swatch-text-light)); } #account-options li a:hover { color: rgb(var(--swatch-text-light)); text-decoration: underline; } @media only screen and (min-width: 769px) { #search-top-box { right: 3%; top: 0.5rem; } #search-top-box-form>input, #search-top-box-form>input:hover, #search-top-box-form>input:focus { background: rgb(var(--black-monochrome)); } #search-top-box-form>input { -webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color)); -moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color)); box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color)); } #search-top-box-form>input:hover, #search-top-box-form>input:focus { -webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color)); -moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color)); box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color)); } #search-top-box-form input[type="submit"], #search-top-box-form input[type="submit"]:focus, #search-top-box-form input[type="submit"]:hover { border: none; border-left: 0.0625rem solid rgb(var(--swatch-primary-darkest)); -webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color)); -moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color)); box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-dark-color)); } #search-top-box-form input[type="submit"] { background: rgb(var(--swatch-primary-darkest)); color: rgb(var(--swatch-menutxt-light-color)); } #search-top-box-form input[type="submit"]:focus, #search-top-box-form input[type="submit"]:hover { background: rgb(var(--swatch-primary)); -webkit-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color)); -moz-box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color)); box-shadow: 0 0 0 0.125rem rgb(var(--swatch-menubg-medium-dark-color)); } } #page-title { text-align: center; } @media only screen and (max-width:768px) { :root { --header-h1-font-size: -webkit-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750))); --header-h1-font-size: -moz-calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750))); --header-h1-font-size: calc(2rem + (2.5 - 2) * ((100vw - 18.750rem) / (60 - 18.750))); } #header h1, #header h1 a, #header h1 a::before { top: 0.25rem; } #header h2, #header h2 a, #header h2 a::before { top: 0; } #header h2 span { margin-top: -webkit-calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 + .25rem); margin-top: -moz-calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 + .25rem); margin-top: calc(var(--header-height-on-mobile)/2 + var(--header-h1-font-size)/2 - .25rem); } }
By- Dr Itzhak and DeepBlueOuterSpace
Dr Itzhak: Story and writing.
DeepBlueOuterSpace: Story and writing.
| Assigned Site | Site Director | Research Head | Assigned Task Force |
| SCPF Site-17 | Director Thomas Graham | Elisa Borges | N/A |
Special Containment Procedures: SCP-7777-1 is currently contained in Site-17’s library. All Site personnel may access SCP-7777-1 on the condition of keeping it inside its containment. It is prohibited to write anything on SCP-7777-1’s pages.
Only personnel with Level 2+ security clearance are allowed access to the symbol that summons SCP-7777-2. Testing with SCP-7777-2 needs to be approved by Head Researcher Elisa Borges, and all experiments are to be led in a standard humanoid containment chamber.
Description: SCP-7777-1 is a college maths textbook called “An Advanced Guide to Multivariable Calculus” by Rosalind Hunter and Maliha Glover found on █████████ University. If used normally, SCP-7777-1 is not anomalous and its appearance and contents do not deviate from the normal book.
The book’s anomalous properties become clear when a college graduation hat is drawn on page 4171. Doing this will summon SCP-7777-2, a middle age college professor of unknown origin. The entity, that will from now on be referred to as professor, will exit SCP-7777-1’s pages and ask its summoner about the reason behind its calling. SCP-7777-2 will aid in the solution of mathematical questions or puzzles. It will deny any other requests. After learning about the contents of the problem it was asked to assist with, the professor will discuss a payment with the summoner and, after an agreement is reached, will proceed to solve the puzzle. Current requests made by SCP-7777-2 include:
-Books to read- accepted.
-Cake and beer- accepted
-Permission to leave the testing chamber- denied.2
-Help with “some equations” on SCP-7777-1’s pocket dimension- accepted (See Exploration Log-1)
No further requests have been made to date.
Exploration Log-1: Head Researcher Elisa Borges instructed subject D-78402 to summon SCP-7777-2 and ask for help with the following problem of “What is the probability that, given four randomly chosen points on a sphere, the resulting tetrahedron contains the sphere’s centre?” SCP-7777-2 exited the book as usual and asked what D-78402 needed help with. D-78402 presented the problem and then told the professor about the foundation's intentions of interviewing him after the task’s payment, to which SCP-7777-2 agreed. It then spent ten seconds in silence before determining that price for the tasks that D-78402 presented. SCP-7777-2 asked D-78402 to accompany him into SCP-7777-1 and help it with some puzzles of its own. Following the professor’s request, D-78402 was prepared for exploration.
Subject was equipped with the standart comunication devices, one digital camera connected to the testing chamber’s monitors, one (1) one-litre water bottle, one (1) lined notebook, one (1) calculator, one (1) ballpoint pen and one (1) energy bar. SCP-7777-2 instructed the subject to step on SCP-7777-1. During D-78402’s transition, the pages acted similarly to a surface of water. After entering SCP-7777-1 completely, the subject was instructed to turn the camera on.
Exploration Video Log Transcript
Explorer: D-78402
[BEGIN LOG]
Camera activates, audio activates. Subject stands in the courtyard of █████████ University building. The sky is shady and there are vines and trees near the walls. Entities visually indistinguishable from humans walk fast around the corridors with books in hand, they seem undisturbed by D-78402’s presence. Further testing has been commissioned to determine the nature of said entities. They will for now be referred to as “students”, since that is how SCP-7777-2 addresses them.
SCP-7777-2: All right, let’s do this.
Subject follows SCP-7777-2 through corridors filled with students. They greet the professor cheerfully and ask it about the “newbie” it brings along. SCP-7777-2 answers them in a friendly manner and explains that D-78402 was visiting the Campus’s facilities and would soon be leaving. The professor walks with D-78402 until they reach an ample room in the outskirts of the University’s building. The room appears to be the University’s library. All four walls are covered with bookshelves and circular tables are scattered on the space. Students occupy most of the tables. On each of the tables there is a basket, from which the students take pieces of paper and unfold them.
SCP-7777-2: I don’t want to give you any hard work… How good at maths are you?
D-78402: I used to be a maths Major, actually.3
SCP-7777-2 seems pleased with the answer and points D-78402 over to a desk occupied by other students. On their pages were drawings of graphics, of geometric solids and figures, and many lines of problem solving.
SCP-7777-2: A fellow man of culture, I see. Did you get to write a thesis? I could fetch some problems related to your work, if you so please.
D-78402: I don’t really think my thesis is all still important.
(D-78402 was instructed to inform SCP-7777-2 about his works)
D-78402: I used to work on the linearisation of differential equations.
SCP-7777-2: Oh, that will be hard to find anything on this subject, really, problems this complex aren’t usually stable… but we can start with some calculus, if you wish to.
SCP-7777-2 handed D-78402 a basket full of inert origamis figurines of animals, plants and mystical creatures, these were designated SCP-7777-1A. A bull headed humanoid, a scorpion, an owl, a rose, and a dragon were visible on the basket. SCP-7777-2 explains that the problems D-78402 is to solve are written inside each figurine, and that he was to unfold them, solve the problems, write the answer on the origami paper, and lay his solution and the unfolded figurine on a pile at the centre of the table. SCP-7777-2 asks D-78402 to let him know when he is finished. Problems included:
1- Determine the derivative of f (x)=6x3−9x+4
2- Solve the equation for 4sin (3t) =2 4sin (3t) =2 in [0,4π3] [0,4π3]
3- Simplify 2log4x+5log4y−1/2log4z+2log4x+5log4y−1/2log4z
Subject spent six hours emptying the basket. Subect did not consume any water, nor did he eat the provided energy bar, nor he did leave his assigned seat. During his work, D-78402 appeared to be relaxed and intensly focoused. Other students asked him for help with their problems, and assisted D-78402 when requested.
(Experiments are being scheduled to confirm if D-78402’s work state was altered by any anomalous influences present on that space.)
After going through every problem in the basket, D-78402 turned around in search of SCP-7777-2, but the professor was already standing behind him.
SCP-7777-2: Truly outstanding work, I’m pleased with your help. We will store the problems you solved, you don’t need to worry about it. It’s time to go back, shall we?
D-78402 waved goodbye to the students and followed the professor back the way he came from. During this walk they commented on each other’s work, on PhD thesis they never got the chance to finish and on how calming the rain was. Back at the courtyard SCP-7777-2 asked D-78402 to step back on SCP-7777-1 and the professor followed shortly after.
When D-78402 surfaced at the testing chamber, he was instructed to end video and audio recording
[END LOG]
Addendum-2: After SCP-7777-2 left for the interview room, D-78402 refused to leave the chamber for several minutes. He asked to read SCP-7777-1 again, promising not to summon SCP-7777-2. This request was denied. He then passionately talked about how enlightening those problems were to him until he was reminded of the disciplinary measures that would be applied in case of non-compliance. Head Researcher Elisa Borges called for a guard to escort D-78402 back to his cell, expecting the use of force. When D-78402 saw the guard, however, he agreed to walk back to his cell unrestrained. There, D-78402 remained sat against the wall opposite to the door. Further experimenting has been requested to determine if D-78402’s response was anomalous in nature.
Interview log-3:
Interviewed: SCP-7777-2
Interviewer: Head Researcher Elisa Borges (Elisa B. for short)
Foreword: After coming back from SCP-7777-1 with D-78402, SCP-7777-2 was conducted to the interviewing room.
[BEGIN LOG]
Elisa B.: Hello, SCP-7777-2, I am Elisa Borges, Head Researcher on your case.
SCP-7777-2: Hello, miss Borges. I am professor Joseph.
Elisa B.: We are just here to ask some questions about SCP-7777-1 Mr. Joseph. We want to know more about the book and its pocket dimension.
SCP-7777-2: There is a lot to go over. Could you be more specific?
Elisa B.: How did you first access the place?
SCP-7777-2: I was reading through a calculus book, but I… forgot its name… it was called…
Elisa. B: “An advanced guide to multivariable calculus”
SCP-7777-2: Yes, thank you. It was for my PhD thesis, and it wasn’t going well. I was working on the regularities of measures beyond the third dimension and all derivatives from the function contained at least four variables, and I could not get rid of them, and plot the function on a three-dimensional space. It was a nightmare! I tried transposing the plane matrices, to derivate the function another time, but that would imply the loss of an important variable which I could simply not afford. I tried to arbitrairly determine the variable, but doing that would lead to significant variations from my results, and
Elisa. B: Please don’t get sidetracked, professor.
SCP-7777-2: Yes, I am sorry. I was reading that book, and it was really late at night. I was so tired I knew I would not take the train back to my apartment, so I accepted I was going to sleep in the library. Would you be surprised if I told you I had a nightmare? There was someone talking to me, I did not see who it was. It was asking me for help, telling me to “save them”, whoever “them” was. It was like… a chorus of voices that sounded more like wind than anything else, and it compelled me to enter the book.
SCP-7777-2 took a sip of water and laughed.
SCP-7777-2: Enter the book. Am I even listening to myself? It is completely illogical, my mandatory physics class clarified that matter cannot occupy the same space as matter at the same time, and that time is better measured by the speed of light, than by the ticking of the clock that was on my wrist, but I entered the book, I dove headfirst. I came out the other way in the same library I was sleeping in. I was attacked by something, until now I can’t really describe what it is, but it had feathery wings, and claws that tore my arms. I hit it with my papers and I ran to the basement. There were some pencils there, some big ███ pencils, and I pointed one them at the thing when it charged at me. When I opened my eyes, it was gone, and I could finally recognize the source of the voices: a beautiful origami creature. But it was suffering, and I could not allow a creature of such beauty to suffer. It asked me to unfold it, which I did. Inside them were the derivatives I needed to solve for my thesis, and I kept on trying until I succeeded. The winged… thing… appeared from time to time, when I found loopholes on my work, and on its paper were tips on the equations I needed, exercises, quick tasks, that helped me greatly with my problem.
Elisa B.: Were those the same creatures solved by D-78402?
SCP-7777-2: By who? You mean Mathias? I see. No, it is all very personal, very intimate. He probably got some question on problems he was struggling with, I didn’t check, I just needed the basket to be done.
Elisa B.: Why?
SCP-7777-2: Those creatures are very docile after you tame them, but they need to be tamed. Since the pocket University’s population started to increase, all kinds of monsters have been attacking the building. We rotate taming and capturing cycles to keep things working there, because, if we don’t, the creatures would become unmanageable. Last month a lady got stung by a scorpion. It was really hard to deal with the poison.
Elisa B.: Tell me more about the other residents. Who are they? Where did they come from? Can they leave?
SCP-7777-2: Calm down, miss Borges, I’m not leaving anytime soon. They are maths enthusiasts, some from high-school, some from college, some professors, many workers. They come from all over the globe, they told me, by the same way I came. And of course they can leave, the problems we are having are because too many people quitted. Their problems don’t disappear, and they become our problems.
Elisa B.: From all over the world, you say? How do you communicate?
SCP-7777-2 appears to be confused.
SCP-7777-2: We… talk…?
Elisa B.: Language wise.
SCP-7777-2: In English…?
Elisa B.: So every maths enthusiast from around the world speaks english?
SCP-7777-1 is shocked by the realization and scratches his head.
SCP-7777-2: Listen, I've been fighting origami maths problems for a while now. Don't blame me for forgetting that language exists.
Experiments were commissioned to understand SCP-7777's effects on communication.
Elisa B.: Going back to the students. Why do they chose to stay?
SCP-7777-2: I am sure you would take any help you could take for a hard work, say, a test, a challenge, a PhD thesis. Besides, I tested this myself, please consider hiring me, I’m practically a scientist, time runs on different planes here and there. That gives my students limitless time to finish their assignments.
Elisa B.: Why do you call them your students?
SCP-7777-2: Because I teach them, I help them, and I watch them go. Just like I help anyone that calls.
Elisa B.: Why haven’t you left yet?
SCP-7777-2: I… have a gut feel that the voice in my head wasn’t talking about the winged thing when it asked for help, and it helped me, I’m in debt. There is still a lot of work to be done.
Elisa B.: Can other students be summoned the same way you are?
SCP-7777-2: Are any other students professors? I am the one that answers the requests, the others have more work to do.
Elisa B.: I see. Mr. Joseph, those were all the questions we had for you right now, but we would be beyond grateful if you were to concede similar interviews on the future. Before we go, do you have any requests? Questions?
SCP-7777-2: Some food for my students, I am storing food in the cafeteria right now, but the stocks I made from requests are deepleting fast. I guess you will give me and my students some if I ask nicely?
Elisa B.: Which requests are you referring to? The food you asked us for was not nearly enough to feed an University.
SCP-7777-2: You mean the cake and the beer? That was for Iara's birthday! You see, my services are in high demand, and, sometimes, when people summon me in random places, I ask them for food.
Elisa B.: We will our best to fulfil your request. This finishes our interview. Thank you so much for your collaboration, Mr. Joseph, have a nice day.
[END LOG]
Closing Statement: SCP-7777-2’s request has been accepted. A basket of flour, beans, fruits, vegetables, medical supplies and water were delivered to SCP-7777-2 on the following summoning
Addendum-4: Due to the Foundation's lack of knowledge about the dissemination from SCP-7777-2's summoning symbols and about the patterns of SCP-7777-1's interactions with students, a request was made to reclassify the anomaly as Keter.






Per 


