アウダパウパドポリス語


: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)); }
}
評価: +26+x
blank.png

LANGUAGE:
アウダパウパドポリス語


第一言語話者人口: 2 言語クラス: Jan-Toki1 3文字コード: AUD

イントロダクション


アウダパウパドポリス語は、SCP財団によってSCP-4840に指定されている大洪水前時代の都市アウダパウパドポリスで用いられていた孤立語である。アウダパウパドポリス語は同市の成立以来話されていたとみられ、その崩壊後も古典的・儀礼的な言語として大洪水前時代のアフロ・ユーラシア全域で用いられた。

アウダパウパドポリス語の言語としての地位は確立したものではない。数十万年もの間新しい母語話者が生まれていない一方で、都市の住民の一部の異常な長寿のため、財団の収容下に二人の既知の母語話者が存在している。SCP-073SCP-4840-Aである。他にも、財団の収容している複数の別のエンティティに、第二言語としてアウダパウパドポリス語を話すことが知られているものや、話す能力を持つと推測されているものがいる。例えば、SCP-076-2SCP-2254SCP-6666-ASCP-6765-Dなどである。

これらの母語話者の存在により、アウダパウパドポリス語は生きた言語と考えられるが、同時に深刻な危機に瀕する言語でもある。また、財団の収容下に二人の母語話者がおり、そのうち一人は異常な高年齢にもかかわらず完璧な記憶力を持っているため、この言語の広範な調査が可能となっている。

現在アウダパウパドポリス語は財団が知りうる限り人類における最も古い言語である。実際にSCP-073とSCP-4840-Aはどちらも最古のヒトの言語であると主張している。大洪水前とそれ以外の歴史時代の文書の間の空隙が非常に広く、アウダパウパドポリス語が全ての大洪水後の言語の祖となったか、それとも同時代にほかの言語が存在していたかどうかを決めることは不可能であるため、この主張は検証不可能である。

これに加え、既知のアウダパウパドポリス語話者はいずれもアウダパウパドポリスの王室の構成者であり、識字能力は都市の上流階級に限られていたため、この言語の既知の方言は、上流階級によって話されていたものに限られる。ほかに変種があったか、どれほど多様でありえたかなどは知られていない。


音韻体系


子音

アウダパウパドポリス語の特徴として15の子音音素を持つ。詳細は下図の通りである。

唇音 歯茎音 口蓋垂音
鼻音 m n
破裂音 p b t d k g
摩擦音 f v s z ç
接近音 l j

母音

アウダパウパドポリス語の母音音素は子音音素に比べて非常にまれな構成である。弁別される母音音質によって単純な五母音体系が構成される一方で、ほかの言語での存在が検証されていない、幻性(thaumicity)によるさらなる弁別が行われる。

現在生存している話者によれば、発話の際に異常な方法で共鳴を変化させることによって幻性が生じるとされている。実際にこれがどのような効果をもたらし、どのようにそれを調音するかは、知られていない。文章化のために、音素表記の際は幻性母音にセディーユ2を付し、ラテン文字化の際は鋭アクセント3で表す。また、発話の際は鼻母音で近似することが推奨されている。

i u
中央 e ȩ o
a

幻性母音は音素配列制約の下で非幻性母音とほとんど同様に扱われる一方、唯一の違いとして、幻性母音に二重母音はないということが挙げられる。アウダパウパドポリス語の二重母音目録は、以下に示すもののみで構成される。

a e o i
a e͡a o͡a i͡a
e a͡e
o i͡o
i a͡i e͡i o͡i
u a͡u o͡u

文法


動詞の活用

アウダパウパドポリス語は、肯定(断定)および否定を表す活用に加え、義務的な動詞の活用によって証拠性を表す体系を持っている。

絶対活用は、形態的に最も簡潔な活用形である。動詞のこの活用形は、話者にとって当然であり、不変であり、普遍的真実であると認知されているということを表す標識である。

lhf|fxfilat|pio|vhlaelaz
Láf fófilat pio válaelaz.
People are born equal.
人は平等に生まれる。
láf fófil -at pio -∅ ∅ -válae-z
into equality-DAT person-NOM ABS-born -POS
へと 平等-〔与格〕 人-〔主格〕 〔絶対〕-生まれる -〔肯定〕

一般活用は、よく知られているが変わりうるものや、絶対活用ほど当然とされないことを表す標識である。

fei|fhsaez|niovhlg|trlrpalaz|umalwmioz
Fei fásaez nioválg télépalaz umalúmioz.
The saiga can run fast.
サイガは速く走れる。
fei fa̧sae-z niova̧lg-∅ tȩlȩp-al -az u -ma -lu̧mio-z
in speed-DAT saiga -NOM run -INF-POS NFUT-COM-able -POS
において 速さ-〔与格〕 サイガ -〔主格〕 走る -〔不定〕-〔肯定〕 〔非未来〕-〔一般〕-できる -〔肯定〕

現実相のうち、最後の二つの活用は、直接体験と間接体験・伝聞である。それぞれ、話者が直接体験して真実ととらえられた主張と、話者が真実と考えるが直接体験はしていない主張を表す。

pia|oufiav|utigoiz
Pia oufiav utigoiz.
I drank water.
私は水を飲んだ。
pia-∅ oufia-v u -ti -goi -z
1S -NOM water-ACC NFUT-FIR-drink-POS
一人称単数 -〔主格〕 水-〔対格〕 〔非未来〕-〔直接〕-飲む〕-〔肯定〕

tai|oufiav|ulagoiz
Tai oufiav ulagoiz.
She (told me/I inferred that she) drank water.
彼女は水を飲んだ(と私に言った/と私は考える)。
tai-∅ oufia-v u -la -goi -z
3S -NOM water-ACC NFUT-IDR-drink-POS
三人称単数 -〔主格〕 水-〔対格〕 〔非未来〕-〔間接〕-飲む-〔肯定〕

可能活用は、起こりそうであること、起こりにくそうなこと(それぞれ肯定、否定において)を示す活用形である。この場合、現実性は定かではない。

tai|oufiav|uzagoiz
Tai oufiav uzagoiz.
She likely drank water.
彼女は水を飲んだようだ。
tai-∅ oufia-v u -za -goi -z
3S -NOM water-ACC NFUT-POT-drink-POS
三人称単数 -〔主格〕 水-〔対格〕 〔非未来〕-〔可能〕-飲む-〔肯定〕

最後に、不定形は時制がないことを示す標識である。

tai|oufiav|goilaz|utilwmioz
Tai oufiav goilaz utilúmioz.
She is able to drink water.
彼女は水を飲むことができる。
tai-∅ oufia-v goi -l -az u -ti -lúmio-z
3S -NOM water-ACC drink-INF-POS NFUT-FIR-able -POS
三人称単数 -〔主格〕 水-〔対格〕 飲む-〔不定〕-〔肯定〕 〔非未来〕-〔直接〕-できる -〔肯定〕

上記の六つの活用形はさらに肯定と否定に活用し(例 naelaz "起こる" and naelag "起こらない")、一部は未来と非未来に活用する。詳細は以下の図の通りである。

肯定 否定
現実 可能 不定 非現実 可能 不定
絶対 一般 直接 間接 絶対 一般 直接 間接
非未来 語幹(a)z uma語幹(a)z uti語幹(a)z ula語幹(a)z uza語幹(a)z 語幹(a)laz 語幹(e)g uma語幹(e)g uti語幹(e)g ula語幹(e)g uza語幹(e)g 語幹-(a)lag
未来 ama語幹(a)z ala語幹(a)z aza語幹(a)z ama語幹(e)g ala語幹(e)g aza語幹(e)g
肯定
現実 可能 不定
絶対 一般 直接 間接
非未来 語幹(a)z uma語幹(a)z uti語幹(a)z ula語幹(a)z uza語幹(a)z 語幹(a)laz
未来 ama語幹(a)z ala語幹(a)z aza語幹(a)z
否定
非現実 可能 不定
絶対 一般 直接 間接
非未来 語幹(e)g uma語幹(e)g uti語幹(e)g ula語幹(e)g uza語幹(e)g 語幹-(a)lag
未来 ama語幹(e)g ala語幹(e)g aza語幹(e)g

名詞の活用

名詞の格

アウダパウパドポリス語の名詞は4つの格(主格、対格、属格、与格)を持ち、接尾辞によって表される。これに加えて、肯定・否定の標示が行われる。例えば肯定の場合は次のようになる。

pia|oufiav|utigoiz
Pia oufiav utigoiz.
I drank water.
私は水を飲んだ。
pia-∅ oufia-v u -ti -goi -z
1S -NOM water-ACC NFUT-FIR-drink-POS
1S -〔主格〕 水-〔対格〕 〔非未来〕-〔直接〕-飲む-〔肯定〕

これに対して否定の場合は、接尾辞-amが付与される。

pia|oufiavam|utigoiz
Pia oufiavam utigoiz.
I drank no water.
私は水を飲まなかった.
pia-∅ oufia-v-am u -ti -goi -z
1S -NOM water-ACC-NEG NFUT-FIR-drink-POS
1S -〔主格〕 水-〔対格〕-〔否定〕 〔非未来〕-〔直接〕-〔飲む-〔肯定〕

格と否定を表す接尾辞の一覧表は、以下の通りである。

「~の("of")」を意味する接置詞 /el/を伴う名詞は、属格をとらない。

主格 対格 属格 与格
肯定 -(e)v -(a)p -(a)t
否定 -(a)kam -(e)vam -(a)pam -(a)tam

代名詞

アウダパウパドポリス語の格助詞は数、人称、一人称複数と二人称複数で包括・除外の活用をする。二人称複数で包括・除外の活用がある点は特筆すべき事項である。これに加えて、代名詞は適切な格の語尾をとる。

一人称 二人称 三人称
単数 pia- mae- tai-
複数 包括 çet- ju̧l- nok-
除外 çeku- ju̧lu-

統語

アウダパウパドポリス語の語順は基本的にはSOVであるが、格変化があるため、発話の題目が目的語であった場合、目的語が文頭に繰り上げられ、OVSをとることがある。この言語では主要部の直後に来る関係詞節や主要部である個人名が先頭に来る伝統的な命名を除き主要部は終端にくる。

アウダパウパドポリス語において属格(所有)の関係は格変化もしくは語の合併によってあらわすことができる。例として、下の句はどちらも「父の子 ("child of (the) father")」を意味する。

Paupap vemb

Paupavemb

合併した場合、否定されない場合を除いて属格の接尾辞が削除される。例えば、「父なき子("child of no father")」の合併形は以下のとおりである。

Paupapavemb4


表記体系


アウダパウパドポリス語の表記体系は著しく一般的なアルファベットであり、子音および母音と一対一に対応する。この体系は、アウダパウパドポリスの行政を援助するために二か月の試行ののちに発明したとするSCP-073によって創造されたとされている。

音素 文字
m m
n n
p p
t t
k k
b b
d d
g g
f f
s s
ç c
v v
z z
l l
j j
a a
e e
i i
o o
u u
h
ȩ r
y
x
w

語は「 | 」という記号で区切られる。


例文


Project PARAGONの研究者からのアウダパウパドポリス語解析のための例文作成依頼に応じる形で、SCP-073によって以下の文章と翻訳が提供された。

kain|el|adam|pia|dopol|is|vemb|adam|el|asem|gou|liopea|zapaelio|umasumaz|el|tei|lilit|gou|fia|taijoap|el|meina|umasumaz|el
piav|utivendaz|dopol|is|zapaeoania|vae|néb|nis|vae|edekump|vae|audapaupadopolis|fau|pia|eibelev|el|adam|fóks|liojou|tei|setev|el|adam|vembap|naivimbemb|utinuvidaz

Kain el Adam pia dopol is vemb Adam el Asem gou liopea zapaelio umasumaz el tei Lilit gou fia taijoap el meina umasumaz el.
Piav utivendaz dopol is zapaeoania vae néb nis vae edekump vae Audapaupadopolis fau pia Eibelev el Adam fóks liojou tei Setev el Adam vembap naivimbemb utinuvidaz.

私はカイン・エル・アダム、人の黄金の太陽と呼ばれたアダム・エル・アセム、および国々の母と呼ばれたリリトの長男である。
人たるものの第一の和合は私をアウダパウパドポリスのエデンの丘の高みで生み、私は太陽の左手エイベルヴ・エル・アダム、楽園の娘の子セテヴ・エル・アダムの兄である。

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