diff --git a/converter.lua b/converter.lua
index ab62529..ad762c1 100644
--- a/converter.lua
+++ b/converter.lua
@@ -37,7 +37,7 @@ function process_content(content)
REPLACE_PRINT
diff --git a/main.js b/main.js
index a47b228..c95026f 100644
--- a/main.js
+++ b/main.js
@@ -11,7 +11,6 @@ let timeout = "";
function init() {
createWordList();
- // injectWords();
document.querySelector("#popup-container").addEventListener("click", () => {
document.querySelector("#popup-container").style.opacity = 0;
document.querySelector("#popup-container").style.pointerEvents = "none";
@@ -25,9 +24,11 @@ function cleanWord(word) {
return word.replace(/[^a-zA-Z]/g, "").toLowerCase();
}
-function showPopup(ogword, word, quirks) {
+function showPopup(ogword, word, quirks = "") {
+ try {
clearHover();
//same shit as in smolpopup
+ //todo: make all of this less sphagetti LOL
let p = document.querySelector("#popup");
let c = document.querySelector("#popup-container");
word = cleanWord(word);
@@ -45,16 +46,21 @@ function showPopup(ogword, word, quirks) {
p.querySelector("#popup-type").innerText = words[word]["type"];
p.querySelector("#popup-meaning").innerText = words[word]["meaning"];
let wq = "";
- //todo: make all of this less sphagetti LOL
if (quirks.trim() != "") {
wq = quirks.split(" ").join(", ");
}
p.querySelector("#popup-quirks").innerText = wq;
c.style.opacity = 1;
c.style.pointerEvents = "all";
+ } catch (e) {
+ console.log(e);
+ //eya
+ //failure is expected,
+ //but mightaswell print less RED ERRORs to the console
+ }
}
-function showSmolPopup(ogword, word, quirks) {
+function showSmolPopup(ogword, word, self, quirks) {
let p = document.querySelector("#smol-popup");
word = cleanWord(word);
if (currentFont == "r") {
@@ -79,19 +85,24 @@ function showSmolPopup(ogword, word, quirks) {
p.style.opacity = 1;
p.style.pointerEvents = "all";
// set position to cursor position (but we dont have the event)
- let rect = document.body.getBoundingClientRect();
- let x = rect.left + window.event.clientX;
- let y = rect.top + window.event.clientY;
+ let rect = self.getBoundingClientRect();
+ let x = rect.left+rect.width/2;
+ let y = rect.top;
p.style.left = x - 100 + "px";
p.style.top = y + 25 + "px";
}
-function checkHover(ogword, word, quirks = "") {
+function checkHover(ogword, word, self, quirks = "") {
if (timeout != "") {
clearTimeout(timeout);
}
timeout = setTimeout(() => {
- showSmolPopup(ogword, word, quirks);
+ try {
+ showSmolPopup(ogword, word, self, quirks);
+ } catch (e) {
+ console.log(e);
+ //i fucking love error handling
+ }
}, 450);
}
@@ -109,7 +120,7 @@ function createWordList() { //sometimes i really dislike javascript..
t.querySelectorAll("tr").forEach(element => {
if (element.querySelector("td")) {
let e = element.querySelectorAll("td");
- let n = e[1].innerText.replace(".", "");
+ let n = cleanWord(e[1].innerText);
words[n] = {};
words[n]["heonian"] = e[0].innerText;
words[n]["romanization"] = e[1].innerText.replace(". ", "");
@@ -120,42 +131,6 @@ function createWordList() { //sometimes i really dislike javascript..
});
}
-function injectWords() {
- Object.values(words).forEach(word => {
- document.querySelectorAll(".convo p").forEach(convo => {
- if (convo.innerText.includes(word["romanization"])) {
- let m = convo.innerHTML.split(word["romanization"]);
- let newhtml = document.createElement("p");
- let c = m.length*2-1;
- for (let x = 0; x < c; x++) {
- if (x % 2 == 0) {
- newhtml.innerHTML += m[x/2];
- } else {
- var e = document.createElement("span");
- e.innerText = word["romanization"];
- e.classList.add("clickable");
- newhtml.appendChild(e)
- }
- }
- convo.innerHTML = newhtml.innerHTML;
- convo.querySelectorAll(".clickable").forEach(element => {
- element.addEventListener('click', function(e) {
- showPopup(element.innerText);
- }, false);
- element.addEventListener('mouseover', function(e) {
- checkHover(element.innerText, e);
- }
- , false);
- element.addEventListener('mouseout', function(e) {
- clearHover();
- }
- , false);
- });
- }
- });
- });
-}
-
function fontButton() {
if (currentFont == "r") {
document.querySelector("#style-heonian").disabled = false;
diff --git a/test.html b/test.html
index 8fc819e..cb37cde 100644
--- a/test.html
+++ b/test.html
@@ -56,7 +56,7 @@ LU'NYA
nyan'pash!
@@ -64,7 +64,7 @@ LU'NYA
balfur
@@ -72,7 +72,7 @@ LU'NYA
yu
@@ -80,7 +80,7 @@ LU'NYA
e
@@ -88,7 +88,7 @@ LU'NYA
she
@@ -96,7 +96,7 @@ LU'NYA
polika'nya
@@ -104,7 +104,7 @@ LU'NYA
dre?
@@ -114,7 +114,7 @@ LU'NYA
!
@@ -122,7 +122,7 @@ LU'NYA
@@ -130,7 +130,7 @@ LU'NYA
@@ -138,7 +138,7 @@ LU'NYA
@@ -146,7 +146,7 @@ LU'NYA
@@ -154,7 +154,7 @@ LU'NYA
@@ -162,7 +162,7 @@ LU'NYA
?
@@ -190,7 +190,7 @@ ESH'NYUI
re
@@ -198,7 +198,7 @@ ESH'NYUI
chu
@@ -206,7 +206,7 @@ ESH'NYUI
meshu
@@ -214,7 +214,7 @@ ESH'NYUI
yu
@@ -222,7 +222,7 @@ ESH'NYUI
polika'nya
@@ -232,7 +232,7 @@ ESH'NYUI
@@ -240,7 +240,7 @@ ESH'NYUI
@@ -248,7 +248,7 @@ ESH'NYUI
@@ -256,7 +256,7 @@ ESH'NYUI
@@ -264,7 +264,7 @@ ESH'NYUI
@@ -274,7 +274,7 @@ ESH'NYUI
(po'nyash!!!)
@@ -284,7 +284,7 @@ ESH'NYUI
(!!!)
@@ -312,7 +312,7 @@ LU'NYA
aa,
@@ -320,7 +320,7 @@ LU'NYA
anko!
@@ -330,7 +330,7 @@ LU'NYA
,
@@ -338,7 +338,7 @@ LU'NYA
!
@@ -348,7 +348,7 @@ LU'NYA
(po'nyash!)
@@ -358,7 +358,7 @@ LU'NYA
(!)
@@ -386,7 +386,7 @@ ESH'NYUI
ba
@@ -394,7 +394,7 @@ ESH'NYUI
yu
@@ -402,7 +402,7 @@ ESH'NYUI
e
@@ -410,7 +410,7 @@ ESH'NYUI
wawote
@@ -418,7 +418,7 @@ ESH'NYUI
to
@@ -426,7 +426,7 @@ ESH'NYUI
pu
@@ -434,7 +434,7 @@ ESH'NYUI
mipura
@@ -442,7 +442,7 @@ ESH'NYUI
lili'nya
@@ -450,7 +450,7 @@ ESH'NYUI
dre?
@@ -458,7 +458,7 @@ ESH'NYUI
@@ -468,7 +468,7 @@ ESH'NYUI
@@ -476,7 +476,7 @@ ESH'NYUI
@@ -484,7 +484,7 @@ ESH'NYUI
@@ -492,7 +492,7 @@ ESH'NYUI
@@ -500,7 +500,7 @@ ESH'NYUI
@@ -508,7 +508,7 @@ ESH'NYUI
@@ -516,7 +516,7 @@ ESH'NYUI
@@ -524,7 +524,7 @@ ESH'NYUI
@@ -532,7 +532,7 @@ ESH'NYUI
?
@@ -540,7 +540,7 @@ ESH'NYUI
@@ -550,7 +550,7 @@ ESH'NYUI
uwu
@@ -560,7 +560,7 @@ ESH'NYUI
@@ -588,7 +588,7 @@ LU'NYA
relfur
@@ -596,7 +596,7 @@ LU'NYA
chu
@@ -604,7 +604,7 @@ LU'NYA
mya
@@ -612,7 +612,7 @@ LU'NYA
pu
@@ -620,7 +620,7 @@ LU'NYA
yu
@@ -628,7 +628,7 @@ LU'NYA
mya
@@ -636,7 +636,7 @@ LU'NYA
relfur
@@ -644,7 +644,7 @@ LU'NYA
lup
@@ -652,7 +652,7 @@ LU'NYA
apatka'nya
@@ -660,7 +660,7 @@ LU'NYA
faka'nya'pash
@@ -668,7 +668,7 @@ LU'NYA
ponme
@@ -676,7 +676,7 @@ LU'NYA
mya
@@ -684,7 +684,7 @@ LU'NYA
wawote
@@ -692,7 +692,7 @@ LU'NYA
polika'nya
@@ -700,7 +700,7 @@ LU'NYA
peekaka'nya'pash.
@@ -710,7 +710,7 @@ LU'NYA
@@ -718,7 +718,7 @@ LU'NYA
@@ -726,7 +726,7 @@ LU'NYA
@@ -734,7 +734,7 @@ LU'NYA
@@ -742,7 +742,7 @@ LU'NYA
@@ -750,7 +750,7 @@ LU'NYA
@@ -758,7 +758,7 @@ LU'NYA
@@ -766,7 +766,7 @@ LU'NYA
@@ -774,7 +774,7 @@ LU'NYA
@@ -782,7 +782,7 @@ LU'NYA
@@ -790,7 +790,7 @@ LU'NYA
@@ -798,7 +798,7 @@ LU'NYA
@@ -806,7 +806,7 @@ LU'NYA
@@ -814,7 +814,7 @@ LU'NYA
@@ -822,7 +822,7 @@ LU'NYA
@@ -850,7 +850,7 @@ ESH'NYUI
mi'shi'pash~
@@ -860,7 +860,7 @@ ESH'NYUI
~
@@ -870,7 +870,7 @@ ESH'NYUI
balfur
@@ -878,7 +878,7 @@ ESH'NYUI
yu
@@ -886,7 +886,7 @@ ESH'NYUI
e
@@ -894,7 +894,7 @@ ESH'NYUI
ton
@@ -902,7 +902,7 @@ ESH'NYUI
polika'nya
@@ -910,7 +910,7 @@ ESH'NYUI
dre?
@@ -920,7 +920,7 @@ ESH'NYUI
@@ -928,7 +928,7 @@ ESH'NYUI
@@ -936,7 +936,7 @@ ESH'NYUI
@@ -944,7 +944,7 @@ ESH'NYUI
@@ -952,7 +952,7 @@ ESH'NYUI
@@ -960,7 +960,7 @@ ESH'NYUI
?
@@ -988,7 +988,7 @@ LU'NYA
mishi'pash!!
@@ -996,7 +996,7 @@ LU'NYA
@@ -1006,7 +1006,7 @@ LU'NYA
!!
@@ -1014,7 +1014,7 @@ LU'NYA
@@ -1024,7 +1024,7 @@ LU'NYA
relfurla
@@ -1032,7 +1032,7 @@ LU'NYA
mya
@@ -1040,7 +1040,7 @@ LU'NYA
ton
@@ -1048,7 +1048,7 @@ LU'NYA
polika'nya
@@ -1056,7 +1056,7 @@ LU'NYA
yu
@@ -1064,7 +1064,7 @@ LU'NYA
meluton
@@ -1072,7 +1072,7 @@ LU'NYA
ka'nya!
@@ -1080,7 +1080,7 @@ LU'NYA
@@ -1090,7 +1090,7 @@ LU'NYA
@@ -1098,7 +1098,7 @@ LU'NYA
@@ -1106,7 +1106,7 @@ LU'NYA
@@ -1114,7 +1114,7 @@ LU'NYA
@@ -1122,7 +1122,7 @@ LU'NYA
@@ -1130,7 +1130,7 @@ LU'NYA
@@ -1138,7 +1138,7 @@ LU'NYA
!
@@ -1146,7 +1146,7 @@ LU'NYA
@@ -1156,7 +1156,7 @@ LU'NYA
balfurla
@@ -1164,7 +1164,7 @@ LU'NYA
yu
@@ -1172,7 +1172,7 @@ LU'NYA
dra?
@@ -1182,7 +1182,7 @@ LU'NYA
@@ -1190,7 +1190,7 @@ LU'NYA
@@ -1198,7 +1198,7 @@ LU'NYA
?
@@ -1226,7 +1226,7 @@ ESH'NYUI
relfurla
@@ -1234,7 +1234,7 @@ ESH'NYUI
yu
@@ -1242,7 +1242,7 @@ ESH'NYUI
esh'dre
@@ -1250,7 +1250,7 @@ ESH'NYUI
mya
@@ -1258,7 +1258,7 @@ ESH'NYUI
ton
@@ -1266,7 +1266,7 @@ ESH'NYUI
polika'nya
@@ -1274,7 +1274,7 @@ ESH'NYUI
yu
@@ -1282,7 +1282,7 @@ ESH'NYUI
puroton
@@ -1290,7 +1290,7 @@ ESH'NYUI
ka'nya~
@@ -1300,7 +1300,7 @@ ESH'NYUI
@@ -1308,7 +1308,7 @@ ESH'NYUI
@@ -1316,7 +1316,7 @@ ESH'NYUI
@@ -1324,7 +1324,7 @@ ESH'NYUI
@@ -1332,7 +1332,7 @@ ESH'NYUI
@@ -1340,7 +1340,7 @@ ESH'NYUI
@@ -1348,7 +1348,7 @@ ESH'NYUI
@@ -1356,7 +1356,7 @@ ESH'NYUI
@@ -1364,7 +1364,7 @@ ESH'NYUI
~
@@ -1374,7 +1374,7 @@ ESH'NYUI
relfur
@@ -1382,7 +1382,7 @@ ESH'NYUI
yu
@@ -1390,7 +1390,7 @@ ESH'NYUI
shi'ro'bae'pu
@@ -1398,7 +1398,7 @@ ESH'NYUI
yu
@@ -1406,7 +1406,7 @@ ESH'NYUI
pon'ya
@@ -1414,7 +1414,7 @@ ESH'NYUI
ka'nya~
@@ -1424,7 +1424,7 @@ ESH'NYUI
@@ -1432,7 +1432,7 @@ ESH'NYUI
@@ -1440,7 +1440,7 @@ ESH'NYUI
@@ -1448,7 +1448,7 @@ ESH'NYUI
@@ -1456,7 +1456,7 @@ ESH'NYUI
@@ -1464,7 +1464,7 @@ ESH'NYUI
~
@@ -1492,7 +1492,7 @@ LU'NYA
puroton
@@ -1500,7 +1500,7 @@ LU'NYA
yu
@@ -1508,7 +1508,7 @@ LU'NYA
ponya
@@ -1516,7 +1516,7 @@ LU'NYA
ton
@@ -1524,7 +1524,7 @@ LU'NYA
ka'nya!
@@ -1534,7 +1534,7 @@ LU'NYA
@@ -1542,7 +1542,7 @@ LU'NYA
@@ -1550,7 +1550,7 @@ LU'NYA
@@ -1558,7 +1558,7 @@ LU'NYA
@@ -1566,7 +1566,7 @@ LU'NYA
!
@@ -1594,7 +1594,7 @@ ESH'NYUI
be'nyui-rerenlafura
@@ -1602,7 +1602,7 @@ ESH'NYUI
yu
@@ -1610,7 +1610,7 @@ ESH'NYUI
meluton
@@ -1618,7 +1618,7 @@ ESH'NYUI
mimifaka'nya…
@@ -1628,7 +1628,7 @@ ESH'NYUI
@@ -1636,7 +1636,7 @@ ESH'NYUI
@@ -1644,7 +1644,7 @@ ESH'NYUI
@@ -1652,7 +1652,7 @@ ESH'NYUI
…
@@ -1662,7 +1662,7 @@ ESH'NYUI
relfur
@@ -1670,7 +1670,7 @@ ESH'NYUI
yu
@@ -1678,7 +1678,7 @@ ESH'NYUI
meluton
@@ -1686,7 +1686,7 @@ ESH'NYUI
mimiku'pash~
@@ -1696,7 +1696,7 @@ ESH'NYUI
@@ -1704,7 +1704,7 @@ ESH'NYUI
@@ -1712,7 +1712,7 @@ ESH'NYUI
@@ -1720,7 +1720,7 @@ ESH'NYUI
~
@@ -1748,7 +1748,7 @@ LU'NYA
o'o,
@@ -1756,7 +1756,7 @@ LU'NYA
relfur
@@ -1764,7 +1764,7 @@ LU'NYA
chu
@@ -1772,7 +1772,7 @@ LU'NYA
parefaka'nya…
@@ -1782,7 +1782,7 @@ LU'NYA
,
@@ -1790,7 +1790,7 @@ LU'NYA
@@ -1798,7 +1798,7 @@ LU'NYA
@@ -1806,7 +1806,7 @@ LU'NYA
…
@@ -1816,7 +1816,7 @@ LU'NYA
be'nyui-babanlafura
@@ -1824,7 +1824,7 @@ LU'NYA
yu
@@ -1832,7 +1832,7 @@ LU'NYA
meluton
@@ -1840,7 +1840,7 @@ LU'NYA
naomiminku
@@ -1848,7 +1848,7 @@ LU'NYA
dre?
@@ -1858,7 +1858,7 @@ LU'NYA
@@ -1866,7 +1866,7 @@ LU'NYA
@@ -1874,7 +1874,7 @@ LU'NYA
@@ -1882,7 +1882,7 @@ LU'NYA
@@ -1890,7 +1890,7 @@ LU'NYA
?
@@ -1918,7 +1918,7 @@ ESH'NYUI
uu,
@@ -1926,7 +1926,7 @@ ESH'NYUI
relfur
@@ -1934,7 +1934,7 @@ ESH'NYUI
yu
@@ -1942,7 +1942,7 @@ ESH'NYUI
naomiminku
@@ -1950,7 +1950,7 @@ ESH'NYUI
mya
@@ -1958,7 +1958,7 @@ ESH'NYUI
mimifuku
@@ -1966,7 +1966,7 @@ ESH'NYUI
mya
@@ -1974,7 +1974,7 @@ ESH'NYUI
ton
@@ -1982,7 +1982,7 @@ ESH'NYUI
ka'nya...
@@ -1992,7 +1992,7 @@ ESH'NYUI
,
@@ -2000,7 +2000,7 @@ ESH'NYUI
@@ -2008,7 +2008,7 @@ ESH'NYUI
@@ -2016,7 +2016,7 @@ ESH'NYUI
@@ -2024,7 +2024,7 @@ ESH'NYUI
@@ -2032,7 +2032,7 @@ ESH'NYUI
@@ -2040,7 +2040,7 @@ ESH'NYUI
@@ -2048,7 +2048,7 @@ ESH'NYUI
@@ -2056,7 +2056,7 @@ ESH'NYUI
.
@@ -2066,7 +2066,7 @@ ESH'NYUI
relfur
@@ -2074,7 +2074,7 @@ ESH'NYUI
yu
@@ -2082,7 +2082,7 @@ ESH'NYUI
guraton
@@ -2090,7 +2090,7 @@ ESH'NYUI
to
@@ -2098,7 +2098,7 @@ ESH'NYUI
meluton
@@ -2106,7 +2106,7 @@ ESH'NYUI
mimifuku..
@@ -2114,7 +2114,7 @@ ESH'NYUI
@@ -2124,7 +2124,7 @@ ESH'NYUI
@@ -2132,7 +2132,7 @@ ESH'NYUI
@@ -2140,7 +2140,7 @@ ESH'NYUI
@@ -2148,7 +2148,7 @@ ESH'NYUI
@@ -2156,7 +2156,7 @@ ESH'NYUI
@@ -2164,7 +2164,7 @@ ESH'NYUI
.
@@ -2172,7 +2172,7 @@ ESH'NYUI
@@ -2182,7 +2182,7 @@ ESH'NYUI
relfur
@@ -2190,7 +2190,7 @@ ESH'NYUI
yu
@@ -2198,7 +2198,7 @@ ESH'NYUI
ton
@@ -2206,7 +2206,7 @@ ESH'NYUI
mimiku'pash~
@@ -2216,7 +2216,7 @@ ESH'NYUI
@@ -2224,7 +2224,7 @@ ESH'NYUI
@@ -2232,7 +2232,7 @@ ESH'NYUI
@@ -2240,7 +2240,7 @@ ESH'NYUI
~
@@ -2268,7 +2268,7 @@ LU'NYA
ishi-balfur
@@ -2276,7 +2276,7 @@ LU'NYA
yu
@@ -2284,7 +2284,7 @@ LU'NYA
mishi'pash!
@@ -2292,7 +2292,7 @@ LU'NYA
@@ -2302,7 +2302,7 @@ LU'NYA
@@ -2310,7 +2310,7 @@ LU'NYA
@@ -2318,7 +2318,7 @@ LU'NYA
!
@@ -2326,7 +2326,7 @@ LU'NYA
@@ -2336,7 +2336,7 @@ LU'NYA
balfur
@@ -2344,7 +2344,7 @@ LU'NYA
chu
@@ -2352,7 +2352,7 @@ LU'NYA
mya
@@ -2360,7 +2360,7 @@ LU'NYA
arilaen
@@ -2368,7 +2368,7 @@ LU'NYA
yu
@@ -2376,7 +2376,7 @@ LU'NYA
en
@@ -2384,7 +2384,7 @@ LU'NYA
ka'nya
@@ -2392,7 +2392,7 @@ LU'NYA
peekaka'nya
@@ -2400,7 +2400,7 @@ LU'NYA
fa'dre?
@@ -2410,7 +2410,7 @@ LU'NYA
@@ -2418,7 +2418,7 @@ LU'NYA
@@ -2426,7 +2426,7 @@ LU'NYA
@@ -2434,7 +2434,7 @@ LU'NYA
@@ -2442,7 +2442,7 @@ LU'NYA
@@ -2450,7 +2450,7 @@ LU'NYA
@@ -2458,7 +2458,7 @@ LU'NYA
@@ -2466,7 +2466,7 @@ LU'NYA
@@ -2474,7 +2474,7 @@ LU'NYA
?
@@ -2502,7 +2502,7 @@ ESH'NYUI
yesh-balfur
@@ -2510,7 +2510,7 @@ ESH'NYUI
yu
@@ -2518,7 +2518,7 @@ ESH'NYUI
mishi'pash~
@@ -2528,7 +2528,7 @@ ESH'NYUI
@@ -2536,7 +2536,7 @@ ESH'NYUI
@@ -2544,7 +2544,7 @@ ESH'NYUI
~
@@ -2554,7 +2554,7 @@ ESH'NYUI
(>///////////////<)
@@ -2564,7 +2564,7 @@ ESH'NYUI
(>///////////////<)
@@ -2574,7 +2574,7 @@ ESH'NYUI
relfur
@@ -2582,7 +2582,7 @@ ESH'NYUI
yu
@@ -2590,7 +2590,7 @@ ESH'NYUI
ari'laen
@@ -2598,7 +2598,7 @@ ESH'NYUI
parefaka'nya,
@@ -2606,7 +2606,7 @@ ESH'NYUI
balfur
@@ -2614,7 +2614,7 @@ ESH'NYUI
yu
@@ -2622,7 +2622,7 @@ ESH'NYUI
pareka'nya
@@ -2630,7 +2630,7 @@ ESH'NYUI
dra?
@@ -2640,7 +2640,7 @@ ESH'NYUI
@@ -2648,7 +2648,7 @@ ESH'NYUI
@@ -2656,7 +2656,7 @@ ESH'NYUI
@@ -2664,7 +2664,7 @@ ESH'NYUI
,
@@ -2672,7 +2672,7 @@ ESH'NYUI
@@ -2680,7 +2680,7 @@ ESH'NYUI
@@ -2688,7 +2688,7 @@ ESH'NYUI
@@ -2696,7 +2696,7 @@ ESH'NYUI
?
@@ -2724,7 +2724,7 @@ LU'NYA
relfur
@@ -2732,7 +2732,7 @@ LU'NYA
chu
@@ -2740,7 +2740,7 @@ LU'NYA
arilaen
@@ -2748,7 +2748,7 @@ LU'NYA
dedaka'nya.
@@ -2756,7 +2756,7 @@ LU'NYA
@@ -2766,7 +2766,7 @@ LU'NYA
@@ -2774,7 +2774,7 @@ LU'NYA
@@ -2782,7 +2782,7 @@ LU'NYA
@@ -2790,7 +2790,7 @@ LU'NYA
@@ -2798,7 +2798,7 @@ LU'NYA
@@ -2808,7 +2808,7 @@ LU'NYA
imanla
@@ -2816,7 +2816,7 @@ LU'NYA
rila
@@ -2824,7 +2824,7 @@ LU'NYA
shashka'nya'pash.
@@ -2832,7 +2832,7 @@ LU'NYA
@@ -2842,7 +2842,7 @@ LU'NYA
@@ -2850,7 +2850,7 @@ LU'NYA
@@ -2858,7 +2858,7 @@ LU'NYA
@@ -2866,7 +2866,7 @@ LU'NYA
@@ -2876,7 +2876,7 @@ LU'NYA
imanla
@@ -2884,7 +2884,7 @@ LU'NYA
shoo
@@ -2892,7 +2892,7 @@ LU'NYA
chu
@@ -2900,7 +2900,7 @@ LU'NYA
ike
@@ -2908,7 +2908,7 @@ LU'NYA
to
@@ -2916,7 +2916,7 @@ LU'NYA
pikeshe
@@ -2924,7 +2924,7 @@ LU'NYA
ka'nya.
@@ -2932,7 +2932,7 @@ LU'NYA
@@ -2942,7 +2942,7 @@ LU'NYA
@@ -2950,7 +2950,7 @@ LU'NYA
@@ -2958,7 +2958,7 @@ LU'NYA
@@ -2966,7 +2966,7 @@ LU'NYA
@@ -2974,7 +2974,7 @@ LU'NYA
@@ -2982,7 +2982,7 @@ LU'NYA
@@ -2990,7 +2990,7 @@ LU'NYA
@@ -2998,7 +2998,7 @@ LU'NYA
@@ -3012,7 +3012,7 @@ LU'NYA
relfur
@@ -3020,7 +3020,7 @@ LU'NYA
chu
@@ -3028,7 +3028,7 @@ LU'NYA
arilaenlan
@@ -3036,7 +3036,7 @@ LU'NYA
luka'nya'pash.
@@ -3046,7 +3046,7 @@ LU'NYA
@@ -3054,7 +3054,7 @@ LU'NYA
@@ -3062,7 +3062,7 @@ LU'NYA
@@ -3070,7 +3070,7 @@ LU'NYA
@@ -3098,7 +3098,7 @@ ESH'NYUI
arilaenla
@@ -3106,7 +3106,7 @@ ESH'NYUI
shoo
@@ -3114,7 +3114,7 @@ ESH'NYUI
chu
@@ -3122,7 +3122,7 @@ ESH'NYUI
pikeshe
@@ -3130,7 +3130,7 @@ ESH'NYUI
fuka'nya'bash
@@ -3138,7 +3138,7 @@ ESH'NYUI
dra?
@@ -3148,7 +3148,7 @@ ESH'NYUI
@@ -3156,7 +3156,7 @@ ESH'NYUI
@@ -3164,7 +3164,7 @@ ESH'NYUI
@@ -3172,7 +3172,7 @@ ESH'NYUI
@@ -3180,7 +3180,7 @@ ESH'NYUI
@@ -3188,7 +3188,7 @@ ESH'NYUI
?
@@ -3216,7 +3216,7 @@ LU'NYA
gao
@@ -3224,7 +3224,7 @@ LU'NYA
chu
@@ -3232,7 +3232,7 @@ LU'NYA
relfur
@@ -3240,7 +3240,7 @@ LU'NYA
yu
@@ -3248,7 +3248,7 @@ LU'NYA
fayu
@@ -3256,7 +3256,7 @@ LU'NYA
kan'ya.
@@ -3264,7 +3264,7 @@ LU'NYA
@@ -3274,7 +3274,7 @@ LU'NYA
@@ -3282,7 +3282,7 @@ LU'NYA
@@ -3290,7 +3290,7 @@ LU'NYA
@@ -3298,7 +3298,7 @@ LU'NYA
@@ -3306,7 +3306,7 @@ LU'NYA
@@ -3314,7 +3314,7 @@ LU'NYA
@@ -3322,7 +3322,7 @@ LU'NYA
@@ -3332,7 +3332,7 @@ LU'NYA
relfur
@@ -3340,7 +3340,7 @@ LU'NYA
chu
@@ -3348,7 +3348,7 @@ LU'NYA
arilaen
@@ -3356,7 +3356,7 @@ LU'NYA
dedaka'nya.
@@ -3366,7 +3366,7 @@ LU'NYA
@@ -3374,7 +3374,7 @@ LU'NYA
@@ -3382,7 +3382,7 @@ LU'NYA
@@ -3390,7 +3390,7 @@ LU'NYA