diff --git a/src/components/MainScene/Node.tsx b/src/components/MainScene/Node.tsx index 1af2ae5..7a4cd63 100644 --- a/src/components/MainScene/Node.tsx +++ b/src/components/MainScene/Node.tsx @@ -1,6 +1,6 @@ -import React, { memo, useEffect, useMemo, useRef } from "react"; +import React, { useEffect, useMemo, useRef } from "react"; import { useFrame, useLoader } from "react-three-fiber"; -import { useSpring, a } from "@react-spring/three"; +import { a, useSpring } from "@react-spring/three"; import * as THREE from "three"; import Cou from "../../static/sprite/Cou.png"; import CouActive from "../../static/sprite/Cou_active.png"; diff --git a/src/components/MainScene/Site.tsx b/src/components/MainScene/Site.tsx index 36266e1..c3d7553 100644 --- a/src/components/MainScene/Site.tsx +++ b/src/components/MainScene/Site.tsx @@ -10,16 +10,10 @@ import GrayRing from "./GrayRing"; import CyanCrystal from "./CyanCrystal"; export type NodeDataType = { - SLPS_016_0x_offset: string; image_table_indices: { 1: string; 2: string; 3: string }; is_hidden: string; media_file: string; node_name: string; - protocol_lines: { - 1: string; - 2: string; - 3: string; - }; site: string; type: string; title: string; diff --git a/src/components/MediaScene/Images.tsx b/src/components/MediaScene/Images.tsx index 5fe9463..dddd68e 100644 --- a/src/components/MediaScene/Images.tsx +++ b/src/components/MediaScene/Images.tsx @@ -1,8 +1,7 @@ import React, { useEffect, useMemo, useState } from "react"; import { useLevelStore, useMediaStore, useNodeStore } from "../../store"; import { a, useSpring } from "@react-spring/three"; -import image_table from "../../resources/image_table.json"; -import { LevelType } from "../MainScene/Site"; +import { LevelType, SiteType } from "../MainScene/Site"; import site_a from "../../resources/site_a.json"; import dummy from "../../static/sprite/dummy.png"; import * as THREE from "three"; @@ -32,17 +31,16 @@ const Images = () => { ); useEffect(() => { - const nodeName = activeLevelData[activeNodeId].node_name; - - const images = image_table[nodeName as keyof typeof image_table]; + const images = (site_a as SiteType)[activeLevel][activeNodeId] + .image_table_indices; const imgArr: { default: string }[] = []; - Object.values(images).forEach((img) => { - import("../../static/media_images/site_a/" + img + ".png").then( + Object.entries(images).forEach((img) => { + import("../../static/media_images/a/" + img[1] + ".png").then( (imageSrc: { default: string }) => { // images are unordered by default so we insert them into the arr // according to their last char - imgArr.splice(parseInt(img.substr(img.length - 1)), 0, imageSrc); + imgArr.splice(parseInt(img[0]), 0, imageSrc); if (imgArr.length === 3) { setSceneImages(imgArr); new THREE.TextureLoader().load(imgArr[0].default, setActiveImage); @@ -50,7 +48,7 @@ const Images = () => { } ); }); - }, [activeLevelData, activeNodeId]); + }, [activeLevel, activeLevelData, activeNodeId]); useEffect(() => { if (mediaPercentageElapsed === 0 && sceneImages[0]) { diff --git a/src/components/MediaScene/MediaPlayer.tsx b/src/components/MediaScene/MediaPlayer.tsx index 71466ce..919993a 100644 --- a/src/components/MediaScene/MediaPlayer.tsx +++ b/src/components/MediaScene/MediaPlayer.tsx @@ -1,14 +1,33 @@ -import React, { createRef, useCallback, useRef } from "react"; -import test from "../../static/movie/LAIN01.XA[18].ogg"; -import { useMediaStore, useSceneStore } from "../../store"; +import React, { + createRef, + useCallback, + useEffect, + useRef, + useState, +} from "react"; +import site_a from "../../resources/site_a.json"; +import { + useLevelStore, + useMediaStore, + useNodeStore, + useSceneStore, + useSiteStore, +} from "../../store"; import t from "../../static/webvtt/test.vtt"; +import { SiteType } from "../MainScene/Site"; const MediaPlayer = () => { + const [mediaSource, setMediaSource] = useState(); + const currentScene = useSceneStore((state) => state.currentScene); const setPercentageElapsed = useMediaStore( (state) => state.setPercentageElapsed ); + const currentSite = useSiteStore((state) => state.currentSite); + const activeNodeId = useNodeStore((state) => state.activeNodeState.id); + const activeLevel = useLevelStore((state) => state.activeLevel); + const requestRef = useRef(); const videoRef = createRef(); @@ -25,12 +44,42 @@ const MediaPlayer = () => { } }, [setPercentageElapsed, videoRef]); - React.useEffect(() => { + useEffect(() => { (requestRef.current as any) = requestAnimationFrame(updateTime); const curr = requestRef.current; return () => cancelAnimationFrame(curr as any); }, [updateTime]); + useEffect(() => { + if (currentScene === "media") { + const nodeMedia = (site_a as SiteType)[activeLevel][activeNodeId] + .media_file; + if (nodeMedia.includes("XA")) { + import( + "../../static/audio/" + currentSite + "/" + nodeMedia + ".ogg" + ).then((media) => { + setMediaSource(media.default); + if (videoRef.current) { + videoRef.current.load(); + } + }); + } else { + import( + "../../static/movie/" + + currentSite + + "/" + + nodeMedia + + "[0].webm" + ).then((media) => { + setMediaSource(media.default); + if (videoRef.current) { + videoRef.current.load(); + } + }); + } + } + }, [activeLevel, activeNodeId, currentScene, currentSite, videoRef]); + return ( ); diff --git a/src/components/MediaScene/Selectables/LeftSide.tsx b/src/components/MediaScene/Selectables/LeftSide.tsx index bdf15d4..495197f 100644 --- a/src/components/MediaScene/Selectables/LeftSide.tsx +++ b/src/components/MediaScene/Selectables/LeftSide.tsx @@ -1,6 +1,7 @@ -import React from "react"; +import React, { useMemo } from "react"; import TriangularPrism from "./LeftSide/TriangularPrism"; import Cube from "./LeftSide/Cube"; +import { useSpring, a } from "@react-spring/three"; type LeftSideProps = { activeMediaComponent: string; @@ -16,26 +17,87 @@ const LeftSide = (props: LeftSideProps) => { const cubesActive = props.activeMediaComponent === "exit"; const trianglesActive = props.activeMediaComponent === "play"; + const groupSpringConfig = useMemo(() => ({ duration: 500 }), []); + const groupSpringFinalDest = useMemo( + () => ({ posX: 0, posZ: 0, posY: 0 }), + [] + ); + + const topFrontGroupPos = useSpring({ + config: groupSpringConfig, + to: groupSpringFinalDest, + from: { posX: 4, posZ: 2, posY: 1 }, + }); + + const bottomFrontGroupPos = useSpring({ + config: groupSpringConfig, + to: groupSpringFinalDest, + from: { posX: 0, posZ: 2, posY: 0 }, + }); + + const topBehindGroupPos = useSpring({ + config: groupSpringConfig, + to: groupSpringFinalDest, + from: { posX: 0, posZ: -3, posY: 2 }, + }); + + const bottomBehindGroupPos = useSpring({ + config: groupSpringConfig, + to: groupSpringFinalDest, + from: { posX: 4, posZ: -2, posY: 1 }, + }); + return ( - - - - - - - - {/*main two*/} - - + + + + + + + + + + + + + + + + ); }; diff --git a/src/components/MediaScene/Selectables/RightSide.tsx b/src/components/MediaScene/Selectables/RightSide.tsx index 4093501..8b41ad3 100644 --- a/src/components/MediaScene/Selectables/RightSide.tsx +++ b/src/components/MediaScene/Selectables/RightSide.tsx @@ -1,16 +1,21 @@ import React, { useCallback, useMemo } from "react"; -import { useMediaWordStore } from "../../../store"; +import { useLevelStore, useMediaWordStore, useNodeStore } from "../../../store"; import Word from "./RightSide/Word"; import { useSpring, a } from "@react-spring/three"; import word_position_states from "../../../resources/word_position_states.json"; import * as THREE from "three"; +import site_a from "../../../resources/site_a.json"; +import { SiteType } from "../../MainScene/Site"; type RightSideProps = { activeMediaComponent: string; }; const RightSide = (props: RightSideProps) => { - const words = useMediaWordStore((state) => state.words); + const activeLevel = useLevelStore((state) => state.activeLevel); + const activeNodeId = useNodeStore((state) => state.activeNodeState.id); + + const words = (site_a as SiteType)[activeLevel][activeNodeId].words; const posStateIdx = useMediaWordStore( (state) => state.posStateIdx @@ -71,19 +76,19 @@ const RightSide = (props: RightSideProps) => { { (state) => state.setNodeMatrixIndices ); - const animateActiveNodeThrow = useCallback(() => { - setActiveNodeState(true, "interactedWith"); + const animateActiveNodeThrow = useCallback( + (siteRotY: number) => { + setActiveNodeState(true, "interactedWith"); - setActiveNodeState(0.3, "posZ"); - setActiveNodeState(0.9, "posX"); + const calculateCoordsBasedOnRotation = ( + x: number, + z: number, + rotation: number + ) => ({ + x: x * Math.cos(rotation) - z * Math.sin(rotation), + z: x * Math.sin(rotation) + z * Math.cos(rotation), + }); - setTimeout(() => { - setActiveNodeState(0.2, "posZ"); - setActiveNodeState(0.5, "posX"); - }, 800); - setTimeout(() => { - setActiveNodeState(1.55, "posX"); - setActiveNodeState(-0.005, "rotZ"); - }, 2600); - setTimeout(() => { - setActiveNodeState(2, "posZ"); - setActiveNodeState(0, "posX"); - setActiveNodeState(-0.5, "rotZ"); - }, 2700); + const fstCoordSet = calculateCoordsBasedOnRotation(0.9, 0.3, siteRotY); + const sndCoordSet = calculateCoordsBasedOnRotation(0.5, 0.2, siteRotY); + const thirdCoordSet = calculateCoordsBasedOnRotation(1.55, 0.2, siteRotY); + const fourthCoordSet = calculateCoordsBasedOnRotation(0, 2, siteRotY); - setTimeout(() => { - setActiveNodeState(0, "rotZ"); - setActiveNodeState(false, "interactedWith"); - }, 3800); - }, [setActiveNodeState]); + setActiveNodeState(fstCoordSet.x, "posX"); + setActiveNodeState(fstCoordSet.z, "posZ"); + + setTimeout(() => { + setActiveNodeState(sndCoordSet.x, "posX"); + setActiveNodeState(sndCoordSet.z, "posZ"); + }, 800); + setTimeout(() => { + setActiveNodeState(thirdCoordSet.x, "posX"); + setActiveNodeState(-0.005, "rotZ"); + }, 2600); + setTimeout(() => { + setActiveNodeState(fourthCoordSet.x, "posX"); + setActiveNodeState(fourthCoordSet.z, "posZ"); + setActiveNodeState(-0.5, "rotZ"); + }, 2700); + + setTimeout(() => { + setActiveNodeState(0, "rotZ"); + setActiveNodeState(false, "interactedWith"); + }, 3800); + }, + [setActiveNodeState] + ); const updateActiveNode = useCallback( ( @@ -61,7 +78,8 @@ const NodeManager = (props: StateManagerProps) => { matrixIdx: number; rowIdx: number; colIdx: number; - } + }, + newSiteRotY: number ) => { switch (event) { case "site_up": @@ -84,7 +102,7 @@ const NodeManager = (props: StateManagerProps) => { case "throw_node_sskn": return { action: animateActiveNodeThrow, - value: [0, true], + value: [newSiteRotY], }; } }, @@ -96,11 +114,13 @@ const NodeManager = (props: StateManagerProps) => { const eventAction = props.eventState.event; const newActiveNodeId = props.eventState.newActiveNodeId; const newNodeMatrixIndices = props.eventState.newNodeMatrixIndices; + const newSiteRotY = props.eventState.newSiteRotY; const dispatchedObject = dispatchObject( eventAction, newActiveNodeId, - newNodeMatrixIndices + newNodeMatrixIndices, + newSiteRotY ); if (dispatchedObject) { diff --git a/src/core/mainSceneEventHandler.ts b/src/core/mainSceneEventHandler.ts index 89113c9..371a23f 100644 --- a/src/core/mainSceneEventHandler.ts +++ b/src/core/mainSceneEventHandler.ts @@ -51,7 +51,7 @@ const handleMainSceneEvent = (gameContext: any) => { newSitePosY = selectedNodeData.newSitePosY; newLevel = selectedNodeData.newLevel; newActiveHudId = selectedNodeData.newActiveHudId; - console.log(selectedNodeData.newActiveNodeId); + } break; @@ -70,6 +70,9 @@ const handleMainSceneEvent = (gameContext: any) => { switch (parseInt(nodeType)) { case 0: case 2: + case 4: + case 3: + case 5: event = eventAnimation + "media"; newScene = "media"; break; diff --git a/src/resources/image_table.json b/src/resources/image_table.json deleted file mode 100644 index 38be6e3..0000000 --- a/src/resources/image_table.json +++ /dev/null @@ -1,1339 +0,0 @@ -{ - "Cou001": { - "1": "[31]Cou001-0", - "2": "[584]Cou001-1", - "3": "[607]Cou001-2" - }, - "Cou002": { - "1": "[492]Cou002-2", - "2": "[577]Cou002-0", - "3": "[583]Cou002-1" - }, - "Cou003": { - "1": "[490]Cou003-1", - "2": "[495]Cou003-0", - "3": "[551]Cou003-2" - }, - "Cou004": { - "1": "[529]Cou004-1", - "2": "[531]Cou004-2", - "3": "[546]Cou004-0" - }, - "Cou005": { - "1": "[443]Cou005-0", - "2": "[445]Cou005-1", - "3": "[447]Cou005-2" - }, - "Cou006": { - "1": "[439]Cou006-1", - "2": "[442]Cou006-0", - "3": "[446]Cou006-2" - }, - "Cou007": { - "1": "[406]Cou007-2", - "2": "[461]Cou007-1", - "3": "[464]Cou007-0" - }, - "Cou008": { - "1": "[408]Cou008-0", - "2": "[409]Cou008-1", - "3": "[418]Cou008-2" - }, - "Cou009": { - "1": "[412]Cou009-0", - "2": "[536]Cou009-2", - "3": "[545]Cou009-1" - }, - "Cou010": { - "1": "[586]Cou010-1", - "2": "[608]Cou010-0", - "3": "[618]Cou010-2" - }, - "Cou011": { - "1": "[392]Cou011-0", - "2": "[394]Cou011-2", - "3": "[395]Cou011-1" - }, - "Cou012": { - "1": "[252]Cou012-2", - "2": "[257]Cou012-1", - "3": "[349]Cou012-0" - }, - "Cou013": { - "1": "[253]Cou013-1", - "2": "[29]Cou013-0", - "3": "[370]Cou013-2" - }, - "Cou014": { - "1": "[0]Cou014-0" - }, - "Cou015": { - "1": "[179]Cou015-1", - "2": "[258]Cou015-0", - "3": "[32]Cou015-2" - }, - "Cou016": { - "1": "[180]Cou016-0", - "2": "[259]Cou016-1", - "3": "[46]Cou016-2" - }, - "Cou017": { - "1": "[181]Cou017-0", - "2": "[260]Cou017-2", - "3": "[49]Cou017-1" - }, - "Cou018": { - "1": "[182]Cou018-1", - "2": "[261]Cou018-2", - "3": "[50]Cou018-0" - }, - "Cou019": { - "1": "[183]Cou019-2", - "2": "[262]Cou019-1", - "3": "[52]Cou019-0" - }, - "Cou020": { - "1": "[184]Cou020-2", - "2": "[263]Cou020-0", - "3": "[63]Cou020-1" - }, - "Cou021": { - "1": "[185]Cou021-1", - "2": "[264]Cou021-0", - "3": "[75]Cou021-2" - }, - "Cou022": { - "1": "[186]Cou022-0", - "2": "[268]Cou022-1", - "3": "[81]Cou022-2" - }, - "Cou023": { - "1": "[190]Cou023-0", - "2": "[272]Cou023-2", - "3": "[85]Cou023-1" - }, - "Cou024": { - "1": "[194]Cou024-1", - "2": "[282]Cou024-2", - "3": "[87]Cou024-0" - }, - "Cou025": { - "1": "[196]Cou025-2", - "2": "[291]Cou025-1", - "3": "[88]Cou025-0" - }, - "Cou026": { - "1": "[197]Cou026-2", - "2": "[323]Cou026-0", - "3": "[92]Cou026-1" - }, - "Cou027": { - "1": "[103]Cou027-2", - "2": "[198]Cou027-1", - "3": "[326]Cou027-0" - }, - "Cou028": { - "1": "[104]Cou028-2", - "2": "[199]Cou028-0", - "3": "[327]Cou028-1" - }, - "Cou029": { - "1": "[106]Cou029-1", - "2": "[200]Cou029-0", - "3": "[328]Cou029-2" - }, - "Cou030": { - "1": "[107]Cou030-0", - "2": "[201]Cou030-1", - "3": "[332]Cou030-2" - }, - "Cou031": { - "1": "[108]Cou031-0", - "2": "[202]Cou031-2", - "3": "[333]Cou031-1" - }, - "Cou032": { - "1": "[109]Cou032-1", - "2": "[236]Cou032-2", - "3": "[334]Cou032-0" - }, - "Cou033": { - "1": "[110]Cou033-2", - "2": "[244]Cou033-1", - "3": "[336]Cou033-0" - }, - "Cou034": { - "1": "[111]Cou034-2", - "2": "[246]Cou034-0", - "3": "[338]Cou034-1" - }, - "Cou035": { - "1": "[112]Cou035-1", - "2": "[247]Cou035-0", - "3": "[339]Cou035-2" - }, - "Cou036": { - "1": "[122]Cou036-0", - "2": "[248]Cou036-1", - "3": "[340]Cou036-2" - }, - "Cou037": { - "1": "[140]Cou037-0", - "2": "[250]Cou037-2", - "3": "[341]Cou037-1" - }, - "Cou038": { - "1": "[145]Cou038-1", - "2": "[251]Cou038-2", - "3": "[35]Cou038-0" - }, - "Dia001": { - "1": "[265]Dia001-0", - "2": "[54]Dia001-1", - "3": "[57]Dia001-2" - }, - "Dia002": { - "1": "[30]Dia002-2", - "2": "[43]Dia002-0", - "3": "[44]Dia002-1" - }, - "Dia003": { - "1": "[28]Dia003-0", - "2": "[53]Dia003-1", - "3": "[86]Dia003-2" - }, - "Dia004": { - "1": "[105]Dia004-0", - "2": "[249]Dia004-1", - "3": "[254]Dia004-2" - }, - "Dia005": { - "1": "[256]Dia005-0", - "2": "[321]Dia005-2", - "3": "[55]Dia005-1" - }, - "Dia006": { - "1": "[322]Dia006-0", - "2": "[324]Dia006-1", - "3": "[329]Dia006-2" - }, - "Dia007": { - "1": "[330]Dia007-1", - "2": "[331]Dia007-0", - "3": "[376]Dia007-2" - }, - "Dia008": { - "1": "[347]Dia008-1", - "2": "[381]Dia008-2", - "3": "[670]Dia008-0" - }, - "Dia009": { - "1": "[267]Dia009-0", - "2": "[348]Dia009-1", - "3": "[375]Dia009-2" - }, - "Dia010": { - "1": "[380]Dia010-0", - "2": "[390]Dia010-1", - "3": "[391]Dia010-2" - }, - "Dia011": { - "1": "[393]Dia011-0", - "2": "[417]Dia011-2", - "3": "[427]Dia011-1" - }, - "Dia012": { - "1": "[421]Dia012-1", - "2": "[455]Dia012-0", - "3": "[530]Dia012-2,Lda077-2" - }, - "Dia013": { - "1": "[428]Dia013-0", - "2": "[465]Dia013-1", - "3": "[501]Dia013-2" - }, - "Dia014": { - "1": "[429]Dia014-1", - "2": "[502]Dia014-0", - "3": "[533]Dia014-2" - }, - "Dia015": { - "1": "[371]Dia015-0", - "2": "[407]Dia015-2", - "3": "[491]Dia015-1" - }, - "Dia016": { - "1": "[372]Dia016-1", - "2": "[410]Dia016-2", - "3": "[516]Dia016-0" - }, - "Dia017": { - "1": "[373]Dia017-2", - "2": "[411]Dia017-1", - "3": "[517]Dia017-0" - }, - "Dia018": { - "1": "[374]Dia018-2", - "2": "[413]Dia018-0", - "3": "[519]Dia018-1" - }, - "Dia019": { - "1": "[377]Dia019-1", - "2": "[414]Dia019-0", - "3": "[520]Dia019-2" - }, - "Dia020": { - "1": "[378]Dia020-0", - "2": "[415]Dia020-1", - "3": "[522]Dia020-2" - }, - "Dia021": { - "1": "[379]Dia021-0", - "2": "[419]Dia021-2", - "3": "[523]Dia021-1" - }, - "Dia022": { - "1": "[382]Dia022-1", - "2": "[431]Dia022-2", - "3": "[532]Dia022-0" - }, - "Dia023": { - "1": "[383]Dia023-2", - "2": "[432]Dia023-1", - "3": "[535]Dia023-0" - }, - "Dia024": { - "1": "[384]Dia024-2", - "2": "[433]Dia024-0", - "3": "[537]Dia024-1" - }, - "Dia025": { - "1": "[385]Dia025-1", - "2": "[434]Dia025-0", - "3": "[540]Dia025-2" - }, - "Dia026": { - "1": "[386]Dia026-0", - "2": "[435]Dia026-1", - "3": "[557]Dia026-2" - }, - "Dia027": { - "1": "[387]Dia027-0", - "2": "[438]Dia027-2", - "3": "[567]Dia027-1" - }, - "Dia028": { - "1": "[388]Dia028-1", - "2": "[440]Dia028-2", - "3": "[568]Dia028-0" - }, - "Dia029": { - "1": "[389]Dia029-2", - "2": "[441]Dia029-1", - "3": "[585]Dia029-0" - }, - "Ekm001": { - "1": "[680]Ekm001-0", - "2": "[682]Ekm001-2", - "3": "[692]Ekm001-1" - }, - "Ekm002": { - "1": "[628]Ekm002-1,Lda129-0", - "2": "[693]Ekm002-0", - "3": "[694]Ekm002-2" - }, - "Ekm003": { - "1": "[174]Ekm003-1", - "2": "[178]Ekm003-2", - "3": "[188]Ekm003-0" - }, - "Ekm004": { - "1": "[163]Ekm004-0", - "2": "[171]Ekm004-1", - "3": "[176]Ekm004-2" - }, - "Ekm005": { - "1": "[173]Ekm005-0", - "2": "[175]Ekm005-2", - "3": "[177]Ekm005-1" - }, - "Ekm006": { - "1": "[661]Ekm006-1", - "2": "[702]Ekm006-0", - "3": "[770]Ekm006-2" - }, - "Env001": { - "1": "[344]Env001-2", - "2": "[401]Env001-0", - "3": "[404]Env001-1" - }, - "Env002": { - "1": "[320]Env002-0", - "2": "[346]Env002-1", - "3": "[706]Env002-2" - }, - "Env004": { - "1": "[667]Env004-1", - "2": "[668]Env004-0", - "3": "[669]Env004-2" - }, - "Env005": { - "1": "[647]Env005-1", - "2": "[655]Env005-2", - "3": "[664]Env005-0" - }, - "Env006": { - "1": "[596]Env006-2", - "2": "[630]Env006-1", - "3": "[658]Env006-0" - }, - "Env007": { - "1": "[504]Env007-0", - "2": "[514]Env007-1", - "3": "[539]Env007-2" - }, - "Env008": { - "1": "[452]Env008-2", - "2": "[476]Env008-1", - "3": "[524]Env008-0" - }, - "Env010": { - "1": "[396]Env010-1", - "2": "[400]Env010-0", - "3": "[405]Env010-2" - }, - "Env011": { - "1": "[398]Env011-1", - "2": "[399]Env011-0", - "3": "[403]Env011-2" - }, - "Env012": { - "1": "[397]Env012-1", - "2": "[402]Env012-0", - "3": "[416]Env012-2" - }, - "Lda001": { - "1": "[1]Lda001-0" - }, - "Lda002": { - "1": "[220]Lda002-1", - "2": "[235]Lda002-2", - "3": "[238]Lda002-0" - }, - "Lda003": { - "1": "[2]Lda003-0" - }, - "Lda004": { - "1": "[191]Lda004-0", - "2": "[193]Lda004-1", - "3": "[195]Lda004-2" - }, - "Lda005": { - "1": "[144]Lda005-2", - "2": "[150]Lda005-1", - "3": "[240]Lda005-0" - }, - "Lda006": { - "1": "[117]Lda006-1", - "2": "[133]Lda006-0" - }, - "Lda007": { - "1": "[420]Lda007-1,Lda056-1", - "2": "[62]Lda007-2", - "3": "[99]Lda007-0" - }, - "Lda008": { - "1": "[36]Lda008-0", - "2": "[696]Lda008-2", - "3": "[703]Lda008-1" - }, - "Lda009": { - "1": "[154]Lda009-0", - "2": "[187]Lda009-1", - "3": "[613]Lda009-2" - }, - "Lda010": { - "1": "[3]Lda010-0" - }, - "Lda011": { - "1": "[437]Lda011-2", - "2": "[578]Lda011-1", - "3": "[593]Lda011-0" - }, - "Lda012": { - "1": "[4]Lda012-0" - }, - "Lda013": { - "1": "[5]Lda013-0" - }, - "Lda014": { - "1": "[6]Lda014-0" - }, - "Lda015": { - "1": "[7]Lda015-0" - }, - "Lda016": { - "1": "[8]Lda016-0" - }, - "Lda017": { - "1": "[686]Lda017-1", - "2": "[687]Lda017-0", - "3": "[704]Lda017-2" - }, - "Lda018": { - "1": "[648]Lda018-2", - "2": "[691]Lda018-0", - "3": "[701]Lda018-1" - }, - "Lda019": { - "1": "[430]Lda019-2", - "2": "[673]Lda019-1", - "3": "[674]Lda019-0" - }, - "Lda020": { - "1": "[155]Lda020-0", - "2": "[37]Lda020-2", - "3": "[518]Lda020-1" - }, - "Lda021": { - "1": "[688]Lda021-0", - "2": "[689]Lda021-2", - "3": "[769]Lda021-1" - }, - "Lda022": { - "1": "[21]Lda022-0", - "2": "[26]Lda022-2", - "3": "[425]Lda022-1" - }, - "Lda023": { - "1": "[22]Lda023-0", - "2": "[27]Lda023-1", - "3": "[426]Lda023-2" - }, - "Lda024": { - "1": "[9]Lda024-0" - }, - "Lda025": { - "1": "[20]Lda025-0", - "2": "[23]Lda025-2", - "3": "[448]Lda025-1" - }, - "Lda026": { - "1": "[164]Lda026-1", - "2": "[24]Lda026-2", - "3": "[449]Lda026-0" - }, - "Lda027": { - "1": "[165]Lda027-2", - "2": "[25]Lda027-1", - "3": "[451]Lda027-0" - }, - "Lda028": { - "1": "[166]Lda028-2", - "2": "[342]Lda028-0", - "3": "[453]Lda028-1" - }, - "Lda029": { - "1": "[45]Lda029-0" - }, - "Lda030": { - "1": "[167]Lda030-0" - }, - "Lda031": { - "1": "[170]Lda031-0", - "2": "[456]Lda031-1", - "3": "[47]Lda031-2" - }, - "Lda032": { - "1": "[189]Lda032-1", - "2": "[457]Lda032-0", - "3": "[48]Lda032-2" - }, - "Lda033": { - "1": "[237]Lda033-2", - "2": "[458]Lda033-0", - "3": "[51]Lda033-1" - }, - "Lda034": { - "1": "[239]Lda034-2", - "2": "[33]Lda034-1", - "3": "[56]Lda034-0" - }, - "Lda035": { - "1": "[241]Lda035-1", - "2": "[466]Lda035-2", - "3": "[59]Lda035-0" - }, - "Lda036": { - "1": "[242]Lda036-0", - "2": "[34]Lda036-2", - "3": "[60]Lda036-1" - }, - "Lda037": { - "1": "[243]Lda037-0", - "2": "[460]Lda037-1", - "3": "[61]Lda037-2" - }, - "Lda038": { - "1": "[255]Lda038-1", - "2": "[470]Lda038-0", - "3": "[64]Lda038-2" - }, - "Lda039": { - "1": "[311]Lda039-2", - "2": "[471]Lda039-0", - "3": "[65]Lda039-1" - }, - "Lda040": { - "1": "[312]Lda040-2", - "2": "[472]Lda040-1", - "3": "[73]Lda040-0" - }, - "Lda041": { - "1": "[313]Lda041-1", - "2": "[473]Lda041-2", - "3": "[77]Lda041-0" - }, - "Lda042": { - "1": "[314]Lda042-0", - "2": "[474]Lda042-2", - "3": "[78]Lda042-1" - }, - "Lda043": { - "1": "[315]Lda043-0", - "2": "[477]Lda043-1", - "3": "[84]Lda043-2" - }, - "Lda044": { - "1": "[316]Lda044-1", - "2": "[478]Lda044-0", - "3": "[89]Lda044-2" - }, - "Lda045": { - "1": "[317]Lda045-2", - "2": "[624]Lda045-0", - "3": "[90]Lda045-1" - }, - "Lda046": { - "1": "[278]Lda046-1", - "2": "[318]Lda046-2", - "3": "[91]Lda046-0" - }, - "Lda047": { - "1": "[319]Lda047-1", - "2": "[481]Lda047-2", - "3": "[96]Lda047-0" - }, - "Lda048": { - "1": "[345]Lda048-0", - "2": "[482]Lda048-2", - "3": "[97]Lda048-1" - }, - "Lda049": { - "1": "[10]Lda049-0" - }, - "Lda050": { - "1": "[100]Lda050-2", - "2": "[436]Lda050-1", - "3": "[483]Lda050-0" - }, - "Lda051": { - "1": "[101]Lda051-1", - "2": "[444]Lda051-2", - "3": "[484]Lda051-0" - }, - "Lda052": { - "1": "[113]Lda052-0", - "2": "[459]Lda052-2", - "3": "[485]Lda052-1" - }, - "Lda053": { - "1": "[120]Lda053-0", - "2": "[288]Lda053-1", - "3": "[486]Lda053-2" - }, - "Lda054": { - "1": "[127]Lda054-1", - "2": "[489]Lda054-2", - "3": "[626]Lda054-0" - }, - "Lda055": { - "1": "[128]Lda055-2", - "2": "[493]Lda055-1", - "3": "[784]Lda055-0" - }, - "Lda056": { - "1": "[129]Lda056-2", - "2": "[420]Lda007-1,Lda056-1", - "3": "[494]Lda056-0" - }, - "Lda057": { - "1": "[130]Lda057-1", - "2": "[232]Lda057-0", - "3": "[671]Lda057-2" - }, - "Lda058": { - "1": "[131]Lda058-0", - "2": "[497]Lda058-1", - "3": "[672]Lda058-2" - }, - "Lda059": { - "1": "[132]Lda059-0", - "2": "[499]Lda059-2", - "3": "[675]Lda059-1" - }, - "Lda060": { - "1": "[134]Lda060-1", - "2": "[500]Lda060-2", - "3": "[676]Lda060-0" - }, - "Lda061": { - "1": "[135]Lda061-2", - "2": "[503]Lda061-1", - "3": "[681]Lda061-0" - }, - "Lda062": { - "1": "[11]Lda062-0" - }, - "Lda063": { - "1": "[136]Lda063-1", - "2": "[505]Lda063-0", - "3": "[683]Lda063-2" - }, - "Lda064": { - "1": "[137]Lda064-0", - "2": "[506]Lda064-1", - "3": "[684]Lda064-2" - }, - "Lda065": { - "1": "[138]Lda065-0", - "2": "[508]Lda065-2", - "3": "[685]Lda065-1" - }, - "Lda066": { - "1": "[139]Lda066-1", - "2": "[509]Lda066-2", - "3": "[690]Lda066-0" - }, - "Lda067": { - "1": "[141]Lda067-2", - "2": "[510]Lda067-1", - "3": "[695]Lda067-0" - }, - "Lda068": { - "1": "[142]Lda068-2", - "2": "[343]Lda068-0", - "3": "[697]Lda068-1" - }, - "Lda069": { - "1": "[143]Lda069-1", - "2": "[511]Lda069-0", - "3": "[698]Lda069-2" - }, - "Lda070": { - "1": "[146]Lda070-0", - "2": "[512]Lda070-1", - "3": "[699]Lda070-2" - }, - "Lda071": { - "1": "[147]Lda071-0", - "2": "[513]Lda071-2", - "3": "[700]Lda071-1" - }, - "Lda072": { - "1": "[148]Lda072-1", - "2": "[515]Lda072-2", - "3": "[705]Lda072-0" - }, - "Lda073": { - "1": "[12]Lda073-0" - }, - "Lda074": { - "1": "[525]Lda074-0", - "2": "[707]Lda074-1" - }, - "Lda075": { - "1": "[149]Lda075-0", - "2": "[526]Lda075-1", - "3": "[708]Lda075-2" - }, - "Lda076": { - "1": "[151]Lda076-0", - "2": "[527]Lda076-2", - "3": "[709]Lda076-1" - }, - "Lda077": { - "1": "[152]Lda077-1", - "2": "[530]Dia012-2,Lda077-2", - "3": "[710]Lda077-0" - }, - "Lda078": { - "1": "[153]Lda078-2", - "2": "[534]Lda078-1", - "3": "[711]Lda078-0" - }, - "Lda079": { - "1": "[156]Lda079-2", - "2": "[538]Lda079-0", - "3": "[712]Lda079-1" - }, - "Lda080": { - "1": "[157]Lda080-1", - "2": "[422]Lda080-0", - "3": "[713]Lda080-2" - }, - "Lda081": { - "1": "[158]Lda081-0", - "2": "[541]Lda081-1", - "3": "[714]Lda081-2" - }, - "Lda082": { - "1": "[159]Lda082-0", - "2": "[542]Lda082-2", - "3": "[715]Lda082-1" - }, - "Lda083": { - "1": "[160]Lda083-1", - "2": "[543]Lda083-2", - "3": "[716]Lda083-0" - }, - "Lda084": { - "1": "[13]Lda084-0" - }, - "Lda085": { - "1": "[161]Lda085-2", - "2": "[552]Lda085-0", - "3": "[717]Lda085-1" - }, - "Lda086": { - "1": "[162]Lda086-1", - "2": "[554]Lda086-0", - "3": "[718]Lda086-2" - }, - "Lda087": { - "1": "[168]Lda087-0", - "2": "[560]Lda087-1", - "3": "[719]Lda087-2" - }, - "Lda088": { - "1": "[423]Lda088-0", - "2": "[563]Lda088-2", - "3": "[720]Lda088-1" - }, - "Lda089": { - "1": "[169]Lda089-1", - "2": "[573]Lda089-2", - "3": "[721]Lda089-0" - }, - "Lda090": { - "1": "[172]Lda090-2", - "2": "[574]Lda090-1", - "3": "[722]Lda090-0" - }, - "Lda091": { - "1": "[203]Lda091-2", - "2": "[575]Lda091-0", - "3": "[723]Lda091-1" - }, - "Lda092": { - "1": "[207]Lda092-1", - "2": "[576]Lda092-0", - "3": "[724]Lda092-2" - }, - "Lda093": { - "1": "[208]Lda093-0", - "2": "[581]Lda093-1", - "3": "[725]Lda093-2" - }, - "Lda094": { - "1": "[424]Lda094-0", - "2": "[587]Lda094-2", - "3": "[726]Lda094-1" - }, - "Lda095": { - "1": "[209]Lda095-1", - "2": "[588]Lda095-2", - "3": "[727]Lda095-0" - }, - "Lda096": { - "1": "[210]Lda096-2", - "2": "[589]Lda096-1", - "3": "[728]Lda096-0" - }, - "Lda097": { - "1": "[212]Lda097-2", - "2": "[590]Lda097-0", - "3": "[729]Lda097-1" - }, - "Lda098": { - "1": "[213]Lda098-1", - "2": "[591]Lda098-0", - "3": "[730]Lda098-2" - }, - "Lda099": { - "1": "[214]Lda099-0" - }, - "Lda100": { - "1": "[215]Lda100-0", - "2": "[597]Lda100-2", - "3": "[732]Lda100-1" - }, - "Lda101": { - "1": "[216]Lda101-1", - "2": "[302]Lda101-0", - "3": "[598]Lda101-2" - }, - "Lda102": { - "1": "[217]Lda102-2", - "2": "[599]Lda102-1", - "3": "[733]Lda102-0" - }, - "Lda103": { - "1": "[218]Lda103-2", - "2": "[601]Lda103-0", - "3": "[734]Lda103-1" - }, - "Lda104": { - "1": "[219]Lda104-1", - "2": "[602]Lda104-0", - "3": "[735]Lda104-2" - }, - "Lda105": { - "1": "[221]Lda105-0", - "2": "[603]Lda105-1", - "3": "[736]Lda105-2" - }, - "Lda106": { - "1": "[222]Lda106-0", - "2": "[604]Lda106-2", - "3": "[737]Lda106-1" - }, - "Lda107": { - "1": "[223]Lda107-1", - "2": "[606]Lda107-2", - "3": "[738]Lda107-0" - }, - "Lda108": { - "1": "[224]Lda108-2", - "2": "[609]Lda108-1", - "3": "[739]Lda108-0" - }, - "Lda109": { - "1": "[225]Lda109-2", - "2": "[610]Lda109-0", - "3": "[740]Lda109-1" - }, - "Lda110": { - "1": "[226]Lda110-1", - "2": "[611]Lda110-0", - "3": "[741]Lda110-2" - }, - "Lda111": { - "1": "[227]Lda111-0", - "2": "[612]Lda111-1", - "3": "[742]Lda111-2" - }, - "Lda112": { - "1": "[228]Lda112-0", - "2": "[614]Lda112-2", - "3": "[743]Lda112-1" - }, - "Lda113": { - "1": "[229]Lda113-1", - "2": "[615]Lda113-2", - "3": "[731]Lda113-0" - }, - "Lda114": { - "1": "[230]Lda114-2", - "2": "[616]Lda114-1", - "3": "[745]Lda114-0" - }, - "Lda115": { - "1": "[233]Lda115-2", - "2": "[617]Lda115-0", - "3": "[746]Lda115-1" - }, - "Lda116": { - "1": "[234]Lda116-1", - "2": "[619]Lda116-0", - "3": "[747]Lda116-2" - }, - "Lda117": { - "1": "[270]Lda117-0", - "2": "[620]Lda117-1", - "3": "[748]Lda117-2" - }, - "Lda118": { - "1": "[271]Lda118-0", - "2": "[621]Lda118-2", - "3": "[749]Lda118-1" - }, - "Lda119": { - "1": "[273]Lda119-1", - "2": "[622]Lda119-2", - "3": "[750]Lda119-0" - }, - "Lda120": { - "1": "[274]Lda120-2", - "2": "[623]Lda120-1", - "3": "[751]Lda120-0" - }, - "Lda121": { - "1": "[275]Lda121-2", - "2": "[479]Lda121-0", - "3": "[752]Lda121-1" - }, - "Lda122": { - "1": "[276]Lda122-1", - "2": "[625]Lda122-0", - "3": "[753]Lda122-2" - }, - "Lda123": { - "1": "[480]Lda123-0", - "2": "[627]Lda123-1", - "3": "[754]Lda123-2" - }, - "Lda124": { - "1": "[283]Lda124-0", - "2": "[632]Lda124-2", - "3": "[755]Lda124-1" - }, - "Lda125": { - "1": "[284]Lda125-1", - "2": "[633]Lda125-2", - "3": "[756]Lda125-0" - }, - "Lda126": { - "1": "[285]Lda126-2", - "2": "[634]Lda126-1", - "3": "[757]Lda126-0" - }, - "Lda127": { - "1": "[286]Lda127-2", - "2": "[635]Lda127-0", - "3": "[758]Lda127-1" - }, - "Lda128": { - "1": "[287]Lda128-1", - "2": "[636]Lda128-0", - "3": "[759]Lda128-2" - }, - "Lda129": { - "1": "[628]Ekm002-1,Lda129-0", - "2": "[637]Lda129-1", - "3": "[760]Lda129-2" - }, - "Lda130": { - "1": "[289]Lda130-0", - "2": "[638]Lda130-2", - "3": "[761]Lda130-1" - }, - "Lda131": { - "1": "[290]Lda131-1", - "2": "[639]Lda131-2", - "3": "[762]Lda131-0" - }, - "Lda132": { - "1": "[292]Lda132-2", - "2": "[640]Lda132-1", - "3": "[763]Lda132-0" - }, - "Lda133": { - "1": "[293]Lda133-2", - "2": "[641]Lda133-0", - "3": "[764]Lda133-1" - }, - "Lda134": { - "1": "[294]Lda134-1", - "2": "[642]Lda134-0", - "3": "[765]Lda134-2" - }, - "Lda135": { - "1": "[295]Lda135-0", - "2": "[643]Lda135-1", - "3": "[766]Lda135-2" - }, - "Lda136": { - "1": "[296]Lda136-0", - "2": "[644]Lda136-2", - "3": "[767]Lda136-1" - }, - "Lda137": { - "1": "[297]Lda137-1", - "2": "[645]Lda137-2", - "3": "[768]Lda137-0" - }, - "Lda138": { - "1": "[298]Lda138-2", - "2": "[629]Lda138-0", - "3": "[646]Lda138-1" - }, - "Lda139": { - "1": "[299]Lda139-2", - "2": "[649]Lda139-0", - "3": "[771]Lda139-1" - }, - "Lda140": { - "1": "[300]Lda140-1", - "2": "[663]Lda140-0", - "3": "[772]Lda140-2" - }, - "Lda141": { - "1": "[301]Lda141-0", - "2": "[650]Lda141-1", - "3": "[773]Lda141-2" - }, - "Lda142": { - "1": "[231]Lda142-0", - "2": "[652]Lda142-2", - "3": "[774]Lda142-1" - }, - "Lda143": { - "1": "[303]Lda143-1", - "2": "[653]Lda143-2", - "3": "[775]Lda143-0" - }, - "Lda144": { - "1": "[304]Lda144-2", - "2": "[654]Lda144-1", - "3": "[776]Lda144-0" - }, - "Lda145": { - "1": "[305]Lda145-2", - "2": "[656]Lda145-0", - "3": "[777]Lda145-1" - }, - "Lda146": { - "1": "[306]Lda146-1", - "2": "[657]Lda146-0", - "3": "[778]Lda146-2" - }, - "Lda147": { - "1": "[307]Lda147-0", - "2": "[659]Lda147-1", - "3": "[779]Lda147-2" - }, - "Lda148": { - "1": "[308]Lda148-0", - "2": "[780]Lda148-1" - }, - "Lda149": { - "1": "[309]Lda149-1", - "2": "[660]Lda149-2", - "3": "[781]Lda149-0" - }, - "Lda150": { - "1": "[310]Lda150-2", - "2": "[662]Lda150-1", - "3": "[782]Lda150-0" - }, - "Tda001": { - "1": "[266]Tda001-0", - "2": "[665]Tda001-1", - "3": "[677]Tda001-2" - }, - "Tda002": { - "1": "[192]Tda002-2", - "2": "[592]Tda002-1", - "3": "[666]Tda002-0" - }, - "Tda003": { - "1": "[462]Tda003-0", - "2": "[678]Tda003-1", - "3": "[679]Tda003-2" - }, - "Tda004": { - "1": "[204]Tda004-1", - "2": "[450]Tda004-2", - "3": "[463]Tda004-0" - }, - "Tda005": { - "1": "[205]Tda005-2", - "2": "[454]Tda005-1", - "3": "[467]Tda005-0" - }, - "Tda006": { - "1": "[206]Tda006-2", - "2": "[38]Tda006-1", - "3": "[468]Tda006-0" - }, - "Tda007": { - "1": "[211]Tda007-1", - "2": "[39]Tda007-2", - "3": "[469]Tda007-0" - }, - "Tda008": { - "1": "[40]Tda008-2", - "2": "[475]Tda008-1", - "3": "[488]Tda008-0" - }, - "Tda009": { - "1": "[41]Tda009-1", - "2": "[487]Tda009-2", - "3": "[496]Tda009-0" - }, - "Tda010": { - "1": "[245]Tda010-1", - "2": "[498]Tda010-2", - "3": "[594]Tda010-0" - }, - "Tda011": { - "1": "[14]Tda011-0" - }, - "Tda012": { - "1": "[269]Tda012-2", - "2": "[507]Tda012-0", - "3": "[58]Tda012-1" - }, - "Tda013": { - "1": "[277]Tda013-1", - "2": "[521]Tda013-0", - "3": "[66]Tda013-2" - }, - "Tda014": { - "1": "[15]Tda014-0" - }, - "Tda015": { - "1": "[279]Tda015-0", - "2": "[528]Tda015-2", - "3": "[67]Tda015-1" - }, - "Tda016": { - "1": "[280]Tda016-1", - "2": "[544]Tda016-2", - "3": "[68]Tda016-0" - }, - "Tda017": { - "1": "[281]Tda017-2", - "2": "[547]Tda017-1", - "3": "[69]Tda017-0" - }, - "Tda018": { - "1": "[325]Tda018-2", - "2": "[548]Tda018-0", - "3": "[70]Tda018-1" - }, - "Tda019": { - "1": "[335]Tda019-1", - "2": "[549]Tda019-0", - "3": "[71]Tda019-2" - }, - "Tda020": { - "1": "[337]Tda020-0", - "2": "[550]Tda020-1", - "3": "[72]Tda020-2" - }, - "Tda021": { - "1": "[350]Tda021-0", - "2": "[553]Tda021-2", - "3": "[74]Tda021-1" - }, - "Tda022": { - "1": "[351]Tda022-1", - "2": "[555]Tda022-2", - "3": "[76]Tda022-0" - }, - "Tda023": { - "1": "[352]Tda023-2", - "2": "[556]Tda023-1", - "3": "[79]Tda023-0" - }, - "Tda024": { - "1": "[16]Tda024-0" - }, - "Tda025": { - "1": "[353]Tda025-1", - "2": "[558]Tda025-0", - "3": "[80]Tda025-2" - }, - "Tda026": { - "1": "[354]Tda026-0", - "2": "[559]Tda026-1", - "3": "[82]Tda026-2" - }, - "Tda027": { - "1": "[355]Tda027-0", - "2": "[561]Tda027-2", - "3": "[83]Tda027-1" - }, - "Tda028": { - "1": "[356]Tda028-1", - "2": "[562]Tda028-2", - "3": "[93]Tda028-0" - }, - "Tda029": { - "1": "[564]Tda029-1", - "2": "[783]Tda029-2", - "3": "[94]Tda029-0" - }, - "Tda030": { - "1": "[358]Tda030-2", - "2": "[565]Tda030-0", - "3": "[95]Tda030-1" - }, - "Tda031": { - "1": "[359]Tda031-1", - "2": "[566]Tda031-0", - "3": "[98]Tda031-2" - }, - "Tda032": { - "1": "[102]Tda032-2", - "2": "[360]Tda032-0", - "3": "[569]Tda032-1" - }, - "Tda033": { - "1": "[114]Tda033-1", - "2": "[361]Tda033-0", - "3": "[570]Tda033-2" - }, - "Tda034": { - "1": "[115]Tda034-0", - "2": "[362]Tda034-1", - "3": "[571]Tda034-2" - }, - "Tda035": { - "1": "[116]Tda035-0", - "2": "[363]Tda035-2", - "3": "[572]Tda035-1" - }, - "Tda036": { - "1": "[118]Tda036-1", - "2": "[364]Tda036-2", - "3": "[579]Tda036-0" - }, - "Tda037": { - "1": "[119]Tda037-2", - "2": "[365]Tda037-1", - "3": "[580]Tda037-0" - }, - "Tda038": { - "1": "[17]Tda038-0" - }, - "Tda039": { - "1": "[121]Tda039-1", - "2": "[366]Tda039-0", - "3": "[582]Tda039-2" - }, - "Tda040": { - "1": "[18]Tda040-0" - }, - "Tda041": { - "1": "[123]Tda041-0", - "2": "[42]Tda041-1" - }, - "Tda042": { - "1": "[124]Tda042-1", - "2": "[367]Tda042-2", - "3": "[595]Tda042-0" - }, - "Tda043": { - "1": "[125]Tda043-2", - "2": "[368]Tda043-1", - "3": "[600]Tda043-0" - }, - "Tda044": { - "1": "[126]Tda044-2", - "2": "[369]Tda044-0", - "3": "[605]Tda044-1" - } -} diff --git a/src/resources/site_a.json b/src/resources/site_a.json index 4f4df8e..efe2235 100644 --- a/src/resources/site_a.json +++ b/src/resources/site_a.json @@ -1,7 +1,6 @@ { "01": { "0100": { - "SLPS_016_0x_offset": "428584", "image_table_indices": { "1": "266", "2": "665", @@ -10,25 +9,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[31]", "node_name": "Tda001", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "281", - "2": "383", - "3": "201" + "1": "graduation", + "2": "takeshi", + "3": "love" } }, "0101": { - "SLPS_016_0x_offset": "428624", "image_table_indices": { "1": "666", "2": "592", @@ -37,52 +29,38 @@ "is_hidden": "16", "media_file": "LAIN08.XA[0]", "node_name": "Tda002", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda001", "upgrade_requirement": "0", "words": { - "1": "384", - "2": "43", - "3": "371" + "1": "cool", + "2": "environment", + "3": "home" } }, "0104": { - "SLPS_016_0x_offset": "411864", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F013.STR", + "media_file": "F013.STR", "node_name": "Dc1009", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "24", - "2": "25", - "3": "26" + "1": "exercise", + "2": "be active", + "3": "memories" } }, "0109": { - "SLPS_016_0x_offset": "428664", "image_table_indices": { "1": "462", "2": "678", @@ -91,25 +69,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[1]", "node_name": "Tda003", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda001", "upgrade_requirement": "0", "words": { - "1": "270", - "2": "385", - "3": "386" + "1": "cake", + "2": "suppression", + "3": "diet" } }, "0110": { - "SLPS_016_0x_offset": "428704", "image_table_indices": { "1": "463", "2": "204", @@ -118,25 +89,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[2]", "node_name": "Tda004", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda003", "upgrade_requirement": "0", "words": { - "1": "123", - "2": "383", - "3": "387" + "1": "wish", + "2": "takeshi", + "3": "as it is" } }, "0112": { - "SLPS_016_0x_offset": "432264", "image_table_indices": { "1": "-1", "2": "-1", @@ -145,25 +109,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[11]", "node_name": "TaK001", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "127", - "2": "-1", - "3": "-1" + "1": "milk", + "2": "", + "3": "" } }, "0114": { - "SLPS_016_0x_offset": "432304", "image_table_indices": { "1": "-1", "2": "-1", @@ -172,25 +129,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[12]", "node_name": "TaK002", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "8", - "2": "-1", - "3": "-1" + "1": "position", + "2": "", + "3": "" } }, "0116": { - "SLPS_016_0x_offset": "418064", "image_table_indices": { "1": "680", "2": "692", @@ -199,25 +149,18 @@ "is_hidden": "35", "media_file": "LAIN03.XA[3]", "node_name": "Ekm001", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "14", - "4": "3" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "73", - "2": "49", - "3": "48" + "1": "action", + "2": "oral", + "3": "feeling" } }, "0118": { - "SLPS_016_0x_offset": "428744", "image_table_indices": { "1": "467", "2": "454", @@ -226,25 +169,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[3]", "node_name": "Tda005", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda004", "upgrade_requirement": "0", "words": { - "1": "46", - "2": "206", - "3": "388" + "1": "look back on", + "2": "lonely", + "3": "in the future" } }, "0119": { - "SLPS_016_0x_offset": "428784", "image_table_indices": { "1": "468", "2": "38", @@ -253,25 +189,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[4]", "node_name": "Tda006", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda005", "upgrade_requirement": "0", "words": { - "1": "371", - "2": "5", - "3": "311" + "1": "home", + "2": "state", + "3": "pleasant" } }, "0120": { - "SLPS_016_0x_offset": "432344", "image_table_indices": { "1": "-1", "2": "-1", @@ -280,25 +209,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[13]", "node_name": "TaK003", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "92", - "2": "-1", - "3": "-1" + "1": "time", + "2": "", + "3": "" } }, "0121": { - "SLPS_016_0x_offset": "432384", "image_table_indices": { "1": "-1", "2": "-1", @@ -307,25 +229,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[14]", "node_name": "TaK004", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "405", - "2": "-1", - "3": "-1" + "1": "lunch", + "2": "", + "3": "" } }, "0123": { - "SLPS_016_0x_offset": "432424", "image_table_indices": { "1": "-1", "2": "-1", @@ -334,25 +249,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[15]", "node_name": "TaK005", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "312", - "2": "-1", - "3": "-1" + "1": "constancy", + "2": "", + "3": "" } }, "01?": { - "SLPS_016_0x_offset": "418664", "image_table_indices": { "1": "402", "2": "397", @@ -361,27 +269,20 @@ "is_hidden": "3", "media_file": "LAIN13.XA[28]", "node_name": "Env012", - "protocol_lines": { - "1": "20", - "2": "21", - "3": "22", - "4": "32" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } } }, "02": { "0201": { - "SLPS_016_0x_offset": "418104", "image_table_indices": { "1": "693", "2": "628", @@ -390,52 +291,38 @@ "is_hidden": "32", "media_file": "LAIN03.XA[4]", "node_name": "Ekm002", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "15", - "4": "3" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "Ekm001", "upgrade_requirement": "0", "words": { - "1": "247", - "2": "248", - "3": "123" + "1": "lover", + "2": "confession", + "3": "wish" } }, "0202": { - "SLPS_016_0x_offset": "411904", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F014.STR", + "media_file": "F014.STR", "node_name": "Dc1010", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "27", - "2": "28", - "3": "29" + "1": "amusing", + "2": "recurrence", + "3": "memory" } }, "0203": { - "SLPS_016_0x_offset": "428824", "image_table_indices": { "1": "469", "2": "211", @@ -444,25 +331,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[5]", "node_name": "Tda007", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda006", "upgrade_requirement": "0", "words": { - "1": "23", - "2": "161", - "3": "291" + "1": "psychomotor", + "2": "birthday", + "3": "seeing off" } }, "0204": { - "SLPS_016_0x_offset": "428864", "image_table_indices": { "1": "488", "2": "475", @@ -471,25 +351,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[6]", "node_name": "Tda008", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda007", "upgrade_requirement": "0", "words": { - "1": "389", - "2": "334", - "3": "390" + "1": "care", + "2": "wait for", + "3": "farewell" } }, "0205": { - "SLPS_016_0x_offset": "432464", "image_table_indices": { "1": "-1", "2": "-1", @@ -498,25 +371,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[16]", "node_name": "TaK006", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "305", - "2": "-1", - "3": "-1" + "1": "monopoly", + "2": "", + "3": "" } }, "0206": { - "SLPS_016_0x_offset": "437144", "image_table_indices": { "1": "-1", "2": "-1", @@ -525,25 +391,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[6]", "node_name": "TaK123", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "67", - "2": "-1", - "3": "-1" + "1": "will", + "2": "", + "3": "" } }, "0207": { - "SLPS_016_0x_offset": "437104", "image_table_indices": { "1": "-1", "2": "-1", @@ -552,25 +411,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[5]", "node_name": "TaK122", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "394", - "2": "-1", - "3": "-1" + "1": "leave alone", + "2": "", + "3": "" } }, "0208": { - "SLPS_016_0x_offset": "432544", "image_table_indices": { "1": "-1", "2": "-1", @@ -579,25 +431,18 @@ "is_hidden": "35", "media_file": "LAIN09.XA[18]", "node_name": "TaK008", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "371", - "2": "-1", - "3": "-1" + "1": "home", + "2": "", + "3": "" } }, "0209": { - "SLPS_016_0x_offset": "437184", "image_table_indices": { "1": "-1", "2": "-1", @@ -606,25 +451,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[7]", "node_name": "TaK124", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "20", - "2": "-1", - "3": "-1" + "1": "sanity", + "2": "", + "3": "" } }, "0210": { - "SLPS_016_0x_offset": "418144", "image_table_indices": { "1": "188", "2": "174", @@ -633,25 +471,18 @@ "is_hidden": "32", "media_file": "LAIN03.XA[5]", "node_name": "Ekm003", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "16", - "4": "3" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "Ekm002", "upgrade_requirement": "0", "words": { - "1": "249", - "2": "250", - "3": "240" + "1": "boredom", + "2": "makeup", + "3": "look good on" } }, "0211": { - "SLPS_016_0x_offset": "432584", "image_table_indices": { "1": "-1", "2": "-1", @@ -660,25 +491,18 @@ "is_hidden": "51", "media_file": "LAIN09.XA[19]", "node_name": "TaK009", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "190", - "2": "-1", - "3": "-1" + "1": "immature", + "2": "", + "3": "" } }, "0212": { - "SLPS_016_0x_offset": "428904", "image_table_indices": { "1": "496", "2": "41", @@ -687,25 +511,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[7]", "node_name": "Tda009", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda008", "upgrade_requirement": "0", "words": { - "1": "160", - "2": "391", - "3": "158" + "1": "glad", + "2": "congratulations", + "3": "intrapsychic" } }, "0213": { - "SLPS_016_0x_offset": "428944", "image_table_indices": { "1": "594", "2": "245", @@ -714,25 +531,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[8]", "node_name": "Tda010", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda009", "upgrade_requirement": "0", "words": { - "1": "67", - "2": "392", - "3": "262" + "1": "will", + "2": "treasure", + "3": "alright" } }, "0215": { - "SLPS_016_0x_offset": "432504", "image_table_indices": { "1": "-1", "2": "-1", @@ -741,25 +551,18 @@ "is_hidden": "35", "media_file": "LAIN09.XA[17]", "node_name": "TaK007", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "360", - "2": "-1", - "3": "-1" + "1": "contact", + "2": "", + "3": "" } }, "0217": { - "SLPS_016_0x_offset": "432624", "image_table_indices": { "1": "-1", "2": "-1", @@ -768,25 +571,18 @@ "is_hidden": "35", "media_file": "LAIN09.XA[20]", "node_name": "TaK010", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "37", - "2": "-1", - "3": "-1" + "1": "life", + "2": "", + "3": "" } }, "0218": { - "SLPS_016_0x_offset": "437224", "image_table_indices": { "1": "-1", "2": "-1", @@ -795,25 +591,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[8]", "node_name": "TaK125", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "65", - "2": "-1", - "3": "-1" + "1": "expression", + "2": "", + "3": "" } }, "0219": { - "SLPS_016_0x_offset": "418184", "image_table_indices": { "1": "163", "2": "171", @@ -822,25 +611,18 @@ "is_hidden": "32", "media_file": "LAIN03.XA[6]", "node_name": "Ekm004", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "17", - "4": "3" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "Ekm003", "upgrade_requirement": "0", "words": { - "1": "43", - "2": "25", - "3": "65" + "1": "environment", + "2": "be active", + "3": "expression" } }, "0221": { - "SLPS_016_0x_offset": "428984", "image_table_indices": { "1": "14", "2": "-1", @@ -849,25 +631,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[9]", "node_name": "Tda011", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda010", "upgrade_requirement": "0", "words": { - "1": "393", - "2": "394", - "3": "201" + "1": "uneasiness", + "2": "leave alone", + "3": "love" } }, "0222": { - "SLPS_016_0x_offset": "429024", "image_table_indices": { "1": "507", "2": "58", @@ -876,25 +651,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[10]", "node_name": "Tda012", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda011", "upgrade_requirement": "0", "words": { - "1": "138", - "2": "53", - "3": "4" + "1": "be tired", + "2": "prejudice", + "3": "phenomenon" } }, "0223": { - "SLPS_016_0x_offset": "429064", "image_table_indices": { "1": "521", "2": "277", @@ -903,27 +671,20 @@ "is_hidden": "16", "media_file": "LAIN08.XA[11]", "node_name": "Tda013", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda012", "upgrade_requirement": "0", "words": { - "1": "292", - "2": "97", - "3": "146" + "1": "business", + "2": "personality", + "3": "laboratory" } } }, "03": { "0300": { - "SLPS_016_0x_offset": "429184", "image_table_indices": { "1": "68", "2": "280", @@ -932,25 +693,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[14]", "node_name": "Tda016", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda015", "upgrade_requirement": "0", "words": { - "1": "173", - "2": "91", - "3": "259" + "1": "drunk", + "2": "patient", + "3": "talk with" } }, "0301": { - "SLPS_016_0x_offset": "432664", "image_table_indices": { "1": "-1", "2": "-1", @@ -959,25 +713,18 @@ "is_hidden": "51", "media_file": "LAIN09.XA[21]", "node_name": "TaK011", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "276", - "2": "-1", - "3": "-1" + "1": "prohibition", + "2": "", + "3": "" } }, "0303": { - "SLPS_016_0x_offset": "432704", "image_table_indices": { "1": "-1", "2": "-1", @@ -986,25 +733,18 @@ "is_hidden": "35", "media_file": "LAIN09.XA[22]", "node_name": "TaK012", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "192", - "2": "-1", - "3": "-1" + "1": "function", + "2": "", + "3": "" } }, "0304": { - "SLPS_016_0x_offset": "418224", "image_table_indices": { "1": "173", "2": "177", @@ -1013,25 +753,18 @@ "is_hidden": "32", "media_file": "LAIN03.XA[7]", "node_name": "Ekm005", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "18", - "4": "3" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "Ekm004", "upgrade_requirement": "0", "words": { - "1": "154", - "2": "5", - "3": "251" + "1": "special", + "2": "state", + "3": "common" } }, "0306": { - "SLPS_016_0x_offset": "429104", "image_table_indices": { "1": "15", "2": "-1", @@ -1040,25 +773,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[12]", "node_name": "Tda014", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda013", "upgrade_requirement": "0", "words": { - "1": "383", - "2": "152", - "3": "95" + "1": "takeshi", + "2": "complaint", + "3": "kind" } }, "0307": { - "SLPS_016_0x_offset": "429144", "image_table_indices": { "1": "279", "2": "67", @@ -1067,25 +793,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[13]", "node_name": "Tda015", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda014", "upgrade_requirement": "0", "words": { - "1": "204", - "2": "143", - "3": "267" + "1": "rumor", + "2": "imagination", + "3": "anger" } }, "0308": { - "SLPS_016_0x_offset": "429264", "image_table_indices": { "1": "548", "2": "70", @@ -1094,25 +813,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[16]", "node_name": "Tda018", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda017", "upgrade_requirement": "0", "words": { - "1": "397", - "2": "395", - "3": "161" + "1": "kanako", + "2": "harumi", + "3": "birthday" } }, "0310": { - "SLPS_016_0x_offset": "437264", "image_table_indices": { "1": "-1", "2": "-1", @@ -1121,25 +833,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[9]", "node_name": "TaK126", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "48", - "2": "-1", - "3": "-1" + "1": "feeling", + "2": "", + "3": "" } }, "0312": { - "SLPS_016_0x_offset": "437304", "image_table_indices": { "1": "-1", "2": "-1", @@ -1148,25 +853,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[10]", "node_name": "TaK127", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "4", - "2": "-1", - "3": "-1" + "1": "phenomenon", + "2": "", + "3": "" } }, "0313": { - "SLPS_016_0x_offset": "418264", "image_table_indices": { "1": "702", "2": "661", @@ -1175,25 +873,18 @@ "is_hidden": "32", "media_file": "LAIN03.XA[8]", "node_name": "Ekm006", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "19", - "4": "3" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "Ekm005", "upgrade_requirement": "0", "words": { - "1": "69", - "2": "252", - "3": "71" + "1": "communication", + "2": "wretched", + "3": "psychosis" } }, "0314": { - "SLPS_016_0x_offset": "437344", "image_table_indices": { "1": "-1", "2": "-1", @@ -1202,25 +893,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[11]", "node_name": "TaK128", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "371", - "2": "-1", - "3": "-1" + "1": "home", + "2": "", + "3": "" } }, "0315": { - "SLPS_016_0x_offset": "429224", "image_table_indices": { "1": "69", "2": "547", @@ -1229,25 +913,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[15]", "node_name": "Tda017", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda016", "upgrade_requirement": "0", "words": { - "1": "395", - "2": "396", - "3": "83" + "1": "harumi", + "2": "marriage", + "3": "Nega feelings" } }, "0316": { - "SLPS_016_0x_offset": "429304", "image_table_indices": { "1": "549", "2": "335", @@ -1256,25 +933,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[17]", "node_name": "Tda019", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda018", "upgrade_requirement": "0", "words": { - "1": "55", - "2": "398", - "3": "288" + "1": "Posi_feelings", + "2": "not satisfied", + "3": "telephone" } }, "0317": { - "SLPS_016_0x_offset": "429344", "image_table_indices": { "1": "337", "2": "550", @@ -1283,25 +953,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[18]", "node_name": "Tda020", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda019", "upgrade_requirement": "0", "words": { - "1": "158", - "2": "139", - "3": "57" + "1": "intrapsychic", + "2": "study", + "3": "try hard" } }, "0318": { - "SLPS_016_0x_offset": "432744", "image_table_indices": { "1": "-1", "2": "-1", @@ -1310,25 +973,18 @@ "is_hidden": "51", "media_file": "LAIN09.XA[23]", "node_name": "TaK013", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "205", - "2": "-1", - "3": "-1" + "1": "doubt", + "2": "", + "3": "" } }, "0319": { - "SLPS_016_0x_offset": "432784", "image_table_indices": { "1": "-1", "2": "-1", @@ -1337,25 +993,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[24]", "node_name": "TaK014", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "82", - "2": "-1", - "3": "-1" + "1": "tool", + "2": "", + "3": "" } }, "0321": { - "SLPS_016_0x_offset": "432824", "image_table_indices": { "1": "-1", "2": "-1", @@ -1364,25 +1013,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[25]", "node_name": "TaK015", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "126", - "2": "-1", - "3": "-1" + "1": "black tea", + "2": "", + "3": "" } }, "0322": { - "SLPS_016_0x_offset": "432864", "image_table_indices": { "1": "-1", "2": "-1", @@ -1391,27 +1033,20 @@ "is_hidden": "35", "media_file": "LAIN09.XA[26]", "node_name": "TaK016", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "4", - "2": "-1", - "3": "-1" + "1": "phenomenon", + "2": "", + "3": "" } } }, "04": { "0400": { - "SLPS_016_0x_offset": "432904", "image_table_indices": { "1": "-1", "2": "-1", @@ -1420,25 +1055,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[27]", "node_name": "TaK017", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "237", - "2": "-1", - "3": "-1" + "1": "condition", + "2": "", + "3": "" } }, "0401": { - "SLPS_016_0x_offset": "429384", "image_table_indices": { "1": "350", "2": "74", @@ -1447,25 +1075,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[19]", "node_name": "Tda021", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda020", "upgrade_requirement": "0", "words": { - "1": "30", - "2": "226", - "3": "193" + "1": "bad atmosphere", + "2": "Dr.takashima", + "3": "odd jobs" } }, "0402": { - "SLPS_016_0x_offset": "429424", "image_table_indices": { "1": "76", "2": "351", @@ -1474,25 +1095,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[20]", "node_name": "Tda022", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda021", "upgrade_requirement": "0", "words": { - "1": "168", - "2": "93", - "3": "399" + "1": "stress", + "2": "individuality", + "3": "sexual" } }, "0403": { - "SLPS_016_0x_offset": "432944", "image_table_indices": { "1": "-1", "2": "-1", @@ -1501,25 +1115,18 @@ "is_hidden": "19", "media_file": "LAIN09.XA[28]", "node_name": "TaK018", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "371", - "2": "-1", - "3": "-1" + "1": "home", + "2": "", + "3": "" } }, "0404": { - "SLPS_016_0x_offset": "437384", "image_table_indices": { "1": "-1", "2": "-1", @@ -1528,52 +1135,38 @@ "is_hidden": "51", "media_file": "LAIN12.XA[12]", "node_name": "TaK129", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "308", - "2": "-1", - "3": "-1" + "1": "seek", + "2": "", + "3": "" } }, "0405": { - "SLPS_016_0x_offset": "412104", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F025.STR", + "media_file": "F025.STR", "node_name": "Dc1015", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "23", - "2": "42", - "3": "43" + "1": "psychomotor", + "2": "apprehension", + "3": "environment" } }, "0406": { - "SLPS_016_0x_offset": "432984", "image_table_indices": { "1": "-1", "2": "-1", @@ -1582,25 +1175,18 @@ "is_hidden": "35", "media_file": "LAIN09.XA[29]", "node_name": "TaK019", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "389", - "2": "-1", - "3": "-1" + "1": "care", + "2": "", + "3": "" } }, "0407": { - "SLPS_016_0x_offset": "437424", "image_table_indices": { "1": "-1", "2": "-1", @@ -1609,25 +1195,18 @@ "is_hidden": "67", "media_file": "LAIN12.XA[13]", "node_name": "TaK130", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "83", - "2": "-1", - "3": "-1" + "1": "Nega feelings", + "2": "", + "3": "" } }, "0408": { - "SLPS_016_0x_offset": "415944", "image_table_indices": { "1": "265", "2": "54", @@ -1636,25 +1215,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[6]", "node_name": "Dia001", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou001", "upgrade_requirement": "0", "words": { - "1": "207", - "2": "208", - "3": "146" + "1": "client", + "2": "family", + "3": "laboratory" } }, "0409": { - "SLPS_016_0x_offset": "415984", "image_table_indices": { "1": "43", "2": "44", @@ -1663,25 +1235,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[7]", "node_name": "Dia002", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia001", "upgrade_requirement": "0", "words": { - "1": "209", - "2": "210", - "3": "19" + "1": "no problem", + "2": "negative", + "3": "character" } }, "0410": { - "SLPS_016_0x_offset": "429464", "image_table_indices": { "1": "79", "2": "556", @@ -1690,25 +1255,18 @@ "is_hidden": "16", "media_file": "LAIN08.XA[21]", "node_name": "Tda023", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda022", "upgrade_requirement": "0", "words": { - "1": "43", - "2": "383", - "3": "326" + "1": "environment", + "2": "takeshi", + "3": "selfish" } }, "0411": { - "SLPS_016_0x_offset": "429504", "image_table_indices": { "1": "16", "2": "-1", @@ -1717,25 +1275,18 @@ "is_hidden": "0", "media_file": "LAIN08.XA[22]", "node_name": "Tda024", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Cou002", "upgrade_requirement": "0", "words": { - "1": "381", - "2": "400", - "3": "148" + "1": "lain", + "2": "unstable", + "3": "A.hallucination" } }, "0412": { - "SLPS_016_0x_offset": "429544", "image_table_indices": { "1": "558", "2": "353", @@ -1744,52 +1295,38 @@ "is_hidden": "0", "media_file": "LAIN08.XA[23]", "node_name": "Tda025", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda024", "upgrade_requirement": "2", "words": { - "1": "73", - "2": "47", - "3": "401" + "1": "action", + "2": "instrument", + "3": "despise" } }, "0413": { - "SLPS_016_0x_offset": "439904", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\INS01.STR", + "media_file": "INS01.STR", "node_name": "SSkn01", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, "site": "A", "title": "mT up-date App.", "type": "7", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "0414": { - "SLPS_016_0x_offset": "413824", "image_table_indices": { "1": "31", "2": "584", @@ -1798,25 +1335,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[0]", "node_name": "Cou001", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "107", - "2": "126", - "3": "95" + "1": "obstacle", + "2": "black tea", + "3": "kind" } }, "0415": { - "SLPS_016_0x_offset": "413864", "image_table_indices": { "1": "577", "2": "583", @@ -1825,25 +1355,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[1]", "node_name": "Cou002", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou001", "upgrade_requirement": "0", "words": { - "1": "127", - "2": "128", - "3": "129" + "1": "milk", + "2": "dislike", + "3": "consultation" } }, "0416": { - "SLPS_016_0x_offset": "413944", "image_table_indices": { "1": "546", "2": "529", @@ -1852,25 +1375,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[3]", "node_name": "Cou004", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "132", - "2": "133", - "3": "134" + "1": "desire", + "2": "investigation", + "3": "relax" } }, "0417": { - "SLPS_016_0x_offset": "439504", "image_table_indices": { "1": "-1", "2": "-1", @@ -1879,25 +1395,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[5]", "node_name": "GaTE01", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, "site": "A", "title": "nT APPLICATION", "type": "8", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "0418": { - "SLPS_016_0x_offset": "416024", "image_table_indices": { "1": "28", "2": "53", @@ -1906,25 +1415,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[8]", "node_name": "Dia003", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia002", "upgrade_requirement": "0", "words": { - "1": "83", - "2": "167", - "3": "80" + "1": "Nega feelings", + "2": "hallucination", + "3": "possible" } }, "0419": { - "SLPS_016_0x_offset": "416064", "image_table_indices": { "1": "105", "2": "249", @@ -1933,25 +1435,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[9]", "node_name": "Dia004", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia003", "upgrade_requirement": "0", "words": { - "1": "93", - "2": "16", - "3": "211" + "1": "individuality", + "2": "school", + "3": "impression" } }, "0420": { - "SLPS_016_0x_offset": "429584", "image_table_indices": { "1": "354", "2": "559", @@ -1960,25 +1455,18 @@ "is_hidden": "3", "media_file": "LAIN08.XA[24]", "node_name": "Tda026", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "391", - "2": "402", - "3": "183" + "1": "congratulations", + "2": "flower", + "3": "happiness" } }, "0421": { - "SLPS_016_0x_offset": "429624", "image_table_indices": { "1": "355", "2": "83", @@ -1987,25 +1475,18 @@ "is_hidden": "0", "media_file": "LAIN08.XA[25]", "node_name": "Tda027", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda026", "upgrade_requirement": "3", "words": { - "1": "403", - "2": "264", - "3": "396" + "1": "obscenity", + "2": "natural", + "3": "marriage" } }, "0422": { - "SLPS_016_0x_offset": "429664", "image_table_indices": { "1": "93", "2": "356", @@ -2014,25 +1495,18 @@ "is_hidden": "3", "media_file": "LAIN08.XA[26]", "node_name": "Tda028", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "163", - "2": "404", - "3": "167" + "1": "eye", + "2": "quiet", + "3": "hallucination" } }, "0423": { - "SLPS_016_0x_offset": "413904", "image_table_indices": { "1": "495", "2": "490", @@ -2041,54 +1515,40 @@ "is_hidden": "0", "media_file": "LAIN01.XA[2]", "node_name": "Cou003", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou002", "upgrade_requirement": "0", "words": { - "1": "44", - "2": "130", - "3": "131" + "1": "individuation", + "2": "boast", + "3": "advice" } } }, "05": { "0500": { - "SLPS_016_0x_offset": "412224", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F029.STR", + "media_file": "F029.STR", "node_name": "Dc1018", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "48", - "2": "49", - "3": "50" + "1": "feeling", + "2": "oral", + "3": "world" } }, "0501": { - "SLPS_016_0x_offset": "413984", "image_table_indices": { "1": "443", "2": "445", @@ -2097,25 +1557,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[4]", "node_name": "Cou005", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou004", "upgrade_requirement": "0", "words": { - "1": "135", - "2": "136", - "3": "137" + "1": "friend", + "2": "secret", + "3": "doll" } }, "0503": { - "SLPS_016_0x_offset": "416104", "image_table_indices": { "1": "256", "2": "55", @@ -2124,25 +1577,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[10]", "node_name": "Dia005", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia004", "upgrade_requirement": "0", "words": { - "1": "69", - "2": "211", - "3": "212" + "1": "communication", + "2": "impression", + "3": "symptom" } }, "0504": { - "SLPS_016_0x_offset": "416144", "image_table_indices": { "1": "322", "2": "324", @@ -2151,25 +1597,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[11]", "node_name": "Dia006", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia005", "upgrade_requirement": "1", "words": { - "1": "169", - "2": "163", - "3": "70" + "1": "normal", + "2": "eye", + "3": "therapy" } }, "0505": { - "SLPS_016_0x_offset": "416184", "image_table_indices": { "1": "331", "2": "330", @@ -2178,25 +1617,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[12]", "node_name": "Dia007", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia006", "upgrade_requirement": "0", "words": { - "1": "207", - "2": "165", - "3": "34" + "1": "client", + "2": "illness", + "3": "decision" } }, "0506": { - "SLPS_016_0x_offset": "429704", "image_table_indices": { "1": "94", "2": "564", @@ -2205,25 +1637,18 @@ "is_hidden": "3", "media_file": "LAIN08.XA[27]", "node_name": "Tda029", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "43", - "2": "405", - "3": "73" + "1": "environment", + "2": "lunch", + "3": "action" } }, "0507": { - "SLPS_016_0x_offset": "429744", "image_table_indices": { "1": "565", "2": "95", @@ -2232,25 +1657,18 @@ "is_hidden": "0", "media_file": "LAIN08.XA[28]", "node_name": "Tda030", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda029", "upgrade_requirement": "0", "words": { - "1": "151", - "2": "226", - "3": "162" + "1": "diary", + "2": "Dr.takashima", + "3": "present" } }, "0508": { - "SLPS_016_0x_offset": "429824", "image_table_indices": { "1": "360", "2": "569", @@ -2259,25 +1677,18 @@ "is_hidden": "3", "media_file": "LAIN08.XA[30]", "node_name": "Tda032", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "397", - "2": "300", - "3": "2" + "1": "kanako", + "2": "transfiguration", + "3": "recognition" } }, "0509": { - "SLPS_016_0x_offset": "429864", "image_table_indices": { "1": "361", "2": "114", @@ -2286,25 +1697,18 @@ "is_hidden": "0", "media_file": "LAIN08.XA[31]", "node_name": "Tda033", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda032", "upgrade_requirement": "1", "words": { - "1": "407", - "2": "397", - "3": "383" + "1": "envy", + "2": "kanako", + "3": "takeshi" } }, "0510": { - "SLPS_016_0x_offset": "414024", "image_table_indices": { "1": "442", "2": "439", @@ -2313,25 +1717,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[5]", "node_name": "Cou006", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "138", - "2": "5", - "3": "93" + "1": "be tired", + "2": "state", + "3": "individuality" } }, "0511": { - "SLPS_016_0x_offset": "414064", "image_table_indices": { "1": "464", "2": "461", @@ -2340,25 +1737,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[6]", "node_name": "Cou007", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou006", "upgrade_requirement": "0", "words": { - "1": "139", - "2": "68", - "3": "24" + "1": "study", + "2": "simplicity", + "3": "exercise" } }, "0512": { - "SLPS_016_0x_offset": "433024", "image_table_indices": { "1": "-1", "2": "-1", @@ -2367,52 +1757,38 @@ "is_hidden": "19", "media_file": "LAIN09.XA[30]", "node_name": "TaK020", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "93", - "2": "-1", - "3": "-1" + "1": "individuality", + "2": "", + "3": "" } }, "0513": { - "SLPS_016_0x_offset": "411664", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F004.STR", + "media_file": "F004.STR", "node_name": "Dc1004", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "9", - "2": "10", - "3": "11" + "1": "moving", + "2": "chaos", + "3": "prompt" } }, "0514": { - "SLPS_016_0x_offset": "416224", "image_table_indices": { "1": "670", "2": "347", @@ -2421,25 +1797,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[13]", "node_name": "Dia008", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou004", "upgrade_requirement": "0", "words": { - "1": "213", - "2": "20", - "3": "214" + "1": "game", + "2": "sanity", + "3": "complex" } }, "0515": { - "SLPS_016_0x_offset": "429784", "image_table_indices": { "1": "566", "2": "359", @@ -2448,25 +1817,18 @@ "is_hidden": "3", "media_file": "LAIN08.XA[29]", "node_name": "Tda031", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "73", - "2": "64", - "3": "406" + "1": "action", + "2": "record", + "3": "blessing" } }, "0516": { - "SLPS_016_0x_offset": "416304", "image_table_indices": { "1": "380", "2": "390", @@ -2475,25 +1837,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[15]", "node_name": "Dia010", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia009", "upgrade_requirement": "0", "words": { - "1": "215", - "2": "164", - "3": "80" + "1": "pupil", + "2": "delusion", + "3": "possible" } }, "0517": { - "SLPS_016_0x_offset": "429904", "image_table_indices": { "1": "115", "2": "362", @@ -2502,25 +1857,18 @@ "is_hidden": "3", "media_file": "LAIN09.XA[0]", "node_name": "Tda034", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "168", - "2": "193", - "3": "20" + "1": "stress", + "2": "odd jobs", + "3": "sanity" } }, "0518": { - "SLPS_016_0x_offset": "429944", "image_table_indices": { "1": "116", "2": "572", @@ -2529,25 +1877,18 @@ "is_hidden": "0", "media_file": "LAIN09.XA[1]", "node_name": "Tda035", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda034", "upgrade_requirement": "3", "words": { - "1": "173", - "2": "193", - "3": "401" + "1": "drunk", + "2": "odd jobs", + "3": "despise" } }, "0520": { - "SLPS_016_0x_offset": "414104", "image_table_indices": { "1": "408", "2": "409", @@ -2556,25 +1897,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[7]", "node_name": "Cou008", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "140", - "2": "73", - "3": "48" + "1": "worry", + "2": "action", + "3": "feeling" } }, "0521": { - "SLPS_016_0x_offset": "414144", "image_table_indices": { "1": "412", "2": "545", @@ -2583,25 +1917,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[8]", "node_name": "Cou009", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou008", "upgrade_requirement": "1", "words": { - "1": "45", - "2": "141", - "3": "83" + "1": "body", + "2": "melancholy", + "3": "Nega feelings" } }, "0522": { - "SLPS_016_0x_offset": "414184", "image_table_indices": { "1": "608", "2": "586", @@ -2610,25 +1937,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[9]", "node_name": "Cou010", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou009", "upgrade_requirement": "0", "words": { - "1": "142", - "2": "143", - "3": "144" + "1": "sLf-persecution", + "2": "imagination", + "3": "understanding" } }, "0523": { - "SLPS_016_0x_offset": "416264", "image_table_indices": { "1": "267", "2": "348", @@ -2637,27 +1957,20 @@ "is_hidden": "0", "media_file": "LAIN02.XA[14]", "node_name": "Dia009", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou006", "upgrade_requirement": "0", "words": { - "1": "169", - "2": "56", - "3": "155" + "1": "normal", + "2": "difference", + "3": "elusion" } } }, "06": { "0600": { - "SLPS_016_0x_offset": "416384", "image_table_indices": { "1": "455", "2": "421", @@ -2666,25 +1979,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[17]", "node_name": "Dia012", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou008", "upgrade_requirement": "0", "words": { - "1": "217", - "2": "218", - "3": "158" + "1": "hatred ", + "2": "purpose", + "3": "intrapsychic" } }, "0601": { - "SLPS_016_0x_offset": "416344", "image_table_indices": { "1": "393", "2": "427", @@ -2693,25 +1999,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[16]", "node_name": "Dia011", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia010", "upgrade_requirement": "1", "words": { - "1": "70", - "2": "131", - "3": "216" + "1": "therapy", + "2": "advice", + "3": "conflict" } }, "0602": { - "SLPS_016_0x_offset": "429984", "image_table_indices": { "1": "579", "2": "118", @@ -2720,25 +2019,18 @@ "is_hidden": "3", "media_file": "LAIN09.XA[2]", "node_name": "Tda036", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "167", - "2": "16", - "3": "97" + "1": "hallucination", + "2": "school", + "3": "personality" } }, "0603": { - "SLPS_016_0x_offset": "430024", "image_table_indices": { "1": "580", "2": "365", @@ -2747,25 +2039,18 @@ "is_hidden": "3", "media_file": "LAIN09.XA[3]", "node_name": "Tda037", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "384", - "2": "161", - "3": "37" + "1": "cool", + "2": "birthday", + "3": "life" } }, "0604": { - "SLPS_016_0x_offset": "433064", "image_table_indices": { "1": "-1", "2": "-1", @@ -2774,25 +2059,18 @@ "is_hidden": "51", "media_file": "LAIN09.XA[31]", "node_name": "TaK021", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "31", - "2": "-1", - "3": "-1" + "1": "accept", + "2": "", + "3": "" } }, "0606": { - "SLPS_016_0x_offset": "414224", "image_table_indices": { "1": "392", "2": "395", @@ -2801,25 +2079,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[10]", "node_name": "Cou011", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "145", - "2": "146", - "3": "51" + "1": "impossible", + "2": "laboratory", + "3": "psychiatrist" } }, "0607": { - "SLPS_016_0x_offset": "414264", "image_table_indices": { "1": "349", "2": "257", @@ -2828,25 +2099,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[11]", "node_name": "Cou012", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou011", "upgrade_requirement": "0", "words": { - "1": "71", - "2": "143", - "3": "147" + "1": "psychosis", + "2": "imagination", + "3": "danger" } }, "0608": { - "SLPS_016_0x_offset": "414344", "image_table_indices": { "1": "0", "2": "-1", @@ -2855,25 +2119,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[13]", "node_name": "Cou014", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou013", "upgrade_requirement": "0", "words": { - "1": "149", - "2": "150", - "3": "151" + "1": "sensitivity", + "2": "needless", + "3": "diary" } }, "0609": { - "SLPS_016_0x_offset": "416424", "image_table_indices": { "1": "428", "2": "465", @@ -2882,25 +2139,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[18]", "node_name": "Dia013", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Dia012", "upgrade_requirement": "0", "words": { - "1": "219", - "2": "220", - "3": "167" + "1": "mother", + "2": "distrust", + "3": "hallucination" } }, "0610": { - "SLPS_016_0x_offset": "416464", "image_table_indices": { "1": "502", "2": "429", @@ -2909,25 +2159,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[19]", "node_name": "Dia014", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou011", "upgrade_requirement": "0", "words": { - "1": "71", - "2": "188", - "3": "39" + "1": "psychosis", + "2": "alienation", + "3": "anxiety" } }, "0611": { - "SLPS_016_0x_offset": "416504", "image_table_indices": { "1": "371", "2": "491", @@ -2936,25 +2179,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[20]", "node_name": "Dia015", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou013", "upgrade_requirement": "0", "words": { - "1": "0", - "2": "167", - "3": "185" + "1": "electric wire", + "2": "hallucination", + "3": "experience" } }, "0612": { - "SLPS_016_0x_offset": "433104", "image_table_indices": { "1": "-1", "2": "-1", @@ -2963,25 +2199,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[0]", "node_name": "TaK022", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "241", - "2": "-1", - "3": "-1" + "1": "hunch", + "2": "", + "3": "" } }, "0613": { - "SLPS_016_0x_offset": "419104", "image_table_indices": { "1": "1", "2": "-1", @@ -2990,25 +2219,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[9]", "node_name": "Lda001", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Cou014", "upgrade_requirement": "0", "words": { - "1": "151", - "2": "257", - "3": "142" + "1": "diary", + "2": "touko", + "3": "sLf-persecution" } }, "0614": { - "SLPS_016_0x_offset": "433144", "image_table_indices": { "1": "-1", "2": "-1", @@ -3017,25 +2239,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[1]", "node_name": "TaK023", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "399", - "2": "-1", - "3": "-1" + "1": "sexual", + "2": "", + "3": "" } }, "0615": { - "SLPS_016_0x_offset": "414304", "image_table_indices": { "1": "29", "2": "253", @@ -3044,25 +2259,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[12]", "node_name": "Cou013", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "148", - "2": "1", - "3": "62" + "1": "A.hallucination", + "2": "sky", + "3": "technology" } }, "0616": { - "SLPS_016_0x_offset": "414384", "image_table_indices": { "1": "258", "2": "179", @@ -3071,25 +2279,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[14]", "node_name": "Cou015", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "152", - "2": "153", - "3": "154" + "1": "complaint", + "2": "ego", + "3": "special" } }, "0617": { - "SLPS_016_0x_offset": "414424", "image_table_indices": { "1": "180", "2": "259", @@ -3098,52 +2299,38 @@ "is_hidden": "0", "media_file": "LAIN01.XA[15]", "node_name": "Cou016", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou015", "upgrade_requirement": "1", "words": { - "1": "155", - "2": "156", - "3": "157" + "1": "elusion", + "2": "deny", + "3": "fiction" } }, "0618": { - "SLPS_016_0x_offset": "439944", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\INS02.STR", + "media_file": "INS02.STR", "node_name": "SSkn02", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, "site": "A", "title": "mT up-date App.", "type": "7", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "0619": { - "SLPS_016_0x_offset": "416544", "image_table_indices": { "1": "516", "2": "372", @@ -3152,25 +2339,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[21]", "node_name": "Dia016", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou015", "upgrade_requirement": "0", "words": { - "1": "221", - "2": "217", - "3": "159" + "1": "faith", + "2": "hatred ", + "3": "apology" } }, "0620": { - "SLPS_016_0x_offset": "437464", "image_table_indices": { "1": "-1", "2": "-1", @@ -3179,25 +2359,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[14]", "node_name": "TaK131", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "224", - "2": "-1", - "3": "-1" + "1": "longing", + "2": "", + "3": "" } }, "0621": { - "SLPS_016_0x_offset": "439544", "image_table_indices": { "1": "-1", "2": "-1", @@ -3206,25 +2379,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[6]", "node_name": "GaTE02", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, "site": "A", "title": "nT APPLICATION", "type": "8", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "0622": { - "SLPS_016_0x_offset": "433184", "image_table_indices": { "1": "-1", "2": "-1", @@ -3233,25 +2399,18 @@ "is_hidden": "19", "media_file": "LAIN10.XA[2]", "node_name": "TaK024", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "70", - "2": "-1", - "3": "-1" + "1": "therapy", + "2": "", + "3": "" } }, "0623": { - "SLPS_016_0x_offset": "437504", "image_table_indices": { "1": "-1", "2": "-1", @@ -3260,27 +2419,20 @@ "is_hidden": "51", "media_file": "LAIN12.XA[15]", "node_name": "TaK132", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "340", - "2": "-1", - "3": "-1" + "1": "regret", + "2": "", + "3": "" } } }, "07": { "0700": { - "SLPS_016_0x_offset": "419144", "image_table_indices": { "1": "238", "2": "220", @@ -3289,25 +2441,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[10]", "node_name": "Lda002", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Cou018", "upgrade_requirement": "0", "words": { - "1": "253", - "2": "240", - "3": "160" + "1": "kyoko", + "2": "look good on", + "3": "glad" } }, "0701": { - "SLPS_016_0x_offset": "414464", "image_table_indices": { "1": "181", "2": "49", @@ -3316,25 +2461,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[16]", "node_name": "Cou017", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "158", - "2": "159", - "3": "160" + "1": "intrapsychic", + "2": "apology", + "3": "glad" } }, "0702": { - "SLPS_016_0x_offset": "414504", "image_table_indices": { "1": "50", "2": "182", @@ -3343,25 +2481,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[17]", "node_name": "Cou018", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou017", "upgrade_requirement": "1", "words": { - "1": "151", - "2": "161", - "3": "162" + "1": "diary", + "2": "birthday", + "3": "present" } }, "0704": { - "SLPS_016_0x_offset": "416584", "image_table_indices": { "1": "517", "2": "411", @@ -3370,25 +2501,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[22]", "node_name": "Dia017", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou017", "upgrade_requirement": "1", "words": { - "1": "207", - "2": "171", - "3": "23" + "1": "client", + "2": "deterioration", + "3": "psychomotor" } }, "0705": { - "SLPS_016_0x_offset": "439664", "image_table_indices": { "1": "-1", "2": "-1", @@ -3397,25 +2521,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[9]", "node_name": "P2-01", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "9", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "0706": { - "SLPS_016_0x_offset": "430064", "image_table_indices": { "1": "17", "2": "-1", @@ -3424,25 +2541,18 @@ "is_hidden": "3", "media_file": "LAIN09.XA[4]", "node_name": "Tda038", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "161", - "2": "126", - "3": "383" + "1": "birthday", + "2": "black tea", + "3": "takeshi" } }, "0708": { - "SLPS_016_0x_offset": "433224", "image_table_indices": { "1": "-1", "2": "-1", @@ -3451,25 +2561,18 @@ "is_hidden": "19", "media_file": "LAIN10.XA[3]", "node_name": "TaK025", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "385", - "2": "-1", - "3": "-1" + "1": "suppression", + "2": "", + "3": "" } }, "0709": { - "SLPS_016_0x_offset": "419184", "image_table_indices": { "1": "2", "2": "-1", @@ -3478,25 +2581,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[11]", "node_name": "Lda003", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "258", - "2": "237", - "3": "259" + "1": "library", + "2": "condition", + "3": "talk with" } }, "0710": { - "SLPS_016_0x_offset": "419224", "image_table_indices": { "1": "191", "2": "193", @@ -3505,52 +2601,38 @@ "is_hidden": "0", "media_file": "LAIN03.XA[12]", "node_name": "Lda004", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda003", "upgrade_requirement": "1", "words": { - "1": "257", - "2": "140", - "3": "260" + "1": "touko", + "2": "worry", + "3": "come in sight" } }, "0712": { - "SLPS_016_0x_offset": "412024", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F022.STR", + "media_file": "F022.STR", "node_name": "Dc1013", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "36", - "2": "37", - "3": "38" + "1": "knowledge", + "2": "life", + "3": "pursuit" } }, "0713": { - "SLPS_016_0x_offset": "433264", "image_table_indices": { "1": "-1", "2": "-1", @@ -3559,25 +2641,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[4]", "node_name": "TaK026", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "388", - "2": "-1", - "3": "-1" + "1": "in the future", + "2": "", + "3": "" } }, "0714": { - "SLPS_016_0x_offset": "437544", "image_table_indices": { "1": "-1", "2": "-1", @@ -3586,25 +2661,18 @@ "is_hidden": "67", "media_file": "LAIN12.XA[16]", "node_name": "TaK133", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "223", - "2": "-1", - "3": "-1" + "1": "object", + "2": "", + "3": "" } }, "0716": { - "SLPS_016_0x_offset": "433384", "image_table_indices": { "1": "-1", "2": "-1", @@ -3613,25 +2681,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[7]", "node_name": "TaK029", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "2", - "2": "-1", - "3": "-1" + "1": "recognition", + "2": "", + "3": "" } }, "0718": { - "SLPS_016_0x_offset": "419264", "image_table_indices": { "1": "240", "2": "150", @@ -3640,25 +2701,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[13]", "node_name": "Lda005", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "33", - "2": "217", - "3": "261" + "1": "abuse", + "2": "hatred ", + "3": "tomokun" } }, "0719": { - "SLPS_016_0x_offset": "419304", "image_table_indices": { "1": "133", "2": "117", @@ -3667,25 +2721,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[14]", "node_name": "Lda006", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda005", "upgrade_requirement": "2", "words": { - "1": "205", - "2": "83", - "3": "262" + "1": "doubt", + "2": "Nega feelings", + "3": "alright" } }, "0720": { - "SLPS_016_0x_offset": "414544", "image_table_indices": { "1": "52", "2": "262", @@ -3694,25 +2741,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[18]", "node_name": "Cou019", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "151", - "2": "163", - "3": "136" + "1": "diary", + "2": "eye", + "3": "secret" } }, "0722": { - "SLPS_016_0x_offset": "416624", "image_table_indices": { "1": "413", "2": "519", @@ -3721,25 +2761,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[23]", "node_name": "Dia018", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou019", "upgrade_requirement": "2", "words": { - "1": "214", - "2": "64", - "3": "188" + "1": "complex", + "2": "record", + "3": "alienation" } }, "0723": { - "SLPS_016_0x_offset": "433304", "image_table_indices": { "1": "-1", "2": "-1", @@ -3748,27 +2781,20 @@ "is_hidden": "67", "media_file": "LAIN10.XA[5]", "node_name": "TaK027", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "386", - "2": "-1", - "3": "-1" + "1": "diet", + "2": "", + "3": "" } } }, "08": { "0800": { - "SLPS_016_0x_offset": "439584", "image_table_indices": { "1": "-1", "2": "-1", @@ -3777,25 +2803,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[7]", "node_name": "GaTE03", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, "site": "A", "title": "nT APPLICATION", "type": "8", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "0801": { - "SLPS_016_0x_offset": "433344", "image_table_indices": { "1": "-1", "2": "-1", @@ -3804,25 +2823,18 @@ "is_hidden": "83", "media_file": "LAIN10.XA[6]", "node_name": "TaK028", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "119", - "2": "-1", - "3": "-1" + "1": "impulse", + "2": "", + "3": "" } }, "0802": { - "SLPS_016_0x_offset": "437584", "image_table_indices": { "1": "-1", "2": "-1", @@ -3831,25 +2843,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[17]", "node_name": "TaK134", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "407", - "2": "-1", - "3": "-1" + "1": "envy", + "2": "", + "3": "" } }, "0803": { - "SLPS_016_0x_offset": "419344", "image_table_indices": { "1": "99", "2": "420", @@ -3858,25 +2863,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[15]", "node_name": "Lda007", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "254", - "2": "263", - "3": "264" + "1": "whereabouts", + "2": "boy", + "3": "natural" } }, "0804": { - "SLPS_016_0x_offset": "419384", "image_table_indices": { "1": "36", "2": "703", @@ -3885,25 +2883,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[16]", "node_name": "Lda008", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda007", "upgrade_requirement": "1", "words": { - "1": "257", - "2": "70", - "3": "265" + "1": "touko", + "2": "therapy", + "3": "abnormal" } }, "0805": { - "SLPS_016_0x_offset": "419424", "image_table_indices": { "1": "154", "2": "187", @@ -3912,25 +2903,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[17]", "node_name": "Lda009", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "219", - "2": "152", - "3": "252" + "1": "mother", + "2": "complaint", + "3": "wretched" } }, "0806": { - "SLPS_016_0x_offset": "419464", "image_table_indices": { "1": "3", "2": "-1", @@ -3939,25 +2923,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[18]", "node_name": "Lda010", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda009", "upgrade_requirement": "1", "words": { - "1": "6", - "2": "160", - "3": "55" + "1": "be settled", + "2": "glad", + "3": "Posi_feelings" } }, "0809": { - "SLPS_016_0x_offset": "433424", "image_table_indices": { "1": "-1", "2": "-1", @@ -3966,25 +2943,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[8]", "node_name": "TaK030", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "301", - "2": "-1", - "3": "-1" + "1": "agree", + "2": "", + "3": "" } }, "0810": { - "SLPS_016_0x_offset": "437624", "image_table_indices": { "1": "-1", "2": "-1", @@ -3993,25 +2963,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[18]", "node_name": "TaK135", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "329", - "2": "-1", - "3": "-1" + "1": "woman", + "2": "", + "3": "" } }, "0812": { - "SLPS_016_0x_offset": "419504", "image_table_indices": { "1": "593", "2": "578", @@ -4020,25 +2983,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[19]", "node_name": "Lda011", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "151", - "2": "69", - "3": "212" + "1": "diary", + "2": "communication", + "3": "symptom" } }, "0813": { - "SLPS_016_0x_offset": "419544", "image_table_indices": { "1": "4", "2": "-1", @@ -4047,25 +3003,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[20]", "node_name": "Lda012", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda011", "upgrade_requirement": "1", "words": { - "1": "67", - "2": "266", - "3": "169" + "1": "will", + "2": "dream", + "3": "normal" } }, "0814": { - "SLPS_016_0x_offset": "419584", "image_table_indices": { "1": "5", "2": "-1", @@ -4074,25 +3023,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[21]", "node_name": "Lda013", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "22", - "2": "254", - "3": "206" + "1": "computer", + "2": "whereabouts", + "3": "lonely" } }, "0815": { - "SLPS_016_0x_offset": "433464", "image_table_indices": { "1": "-1", "2": "-1", @@ -4101,25 +3043,18 @@ "is_hidden": "67", "media_file": "LAIN10.XA[9]", "node_name": "TaK031", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "67", - "2": "-1", - "3": "-1" + "1": "will", + "2": "", + "3": "" } }, "0816": { - "SLPS_016_0x_offset": "414584", "image_table_indices": { "1": "263", "2": "63", @@ -4128,25 +3063,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[19]", "node_name": "Cou020", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "1", - "2": "164", - "3": "67" + "1": "sky", + "2": "delusion", + "3": "will" } }, "0817": { - "SLPS_016_0x_offset": "414624", "image_table_indices": { "1": "264", "2": "185", @@ -4155,25 +3083,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[20]", "node_name": "Cou021", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou020", "upgrade_requirement": "1", "words": { - "1": "165", - "2": "23", - "3": "140" + "1": "illness", + "2": "psychomotor", + "3": "worry" } }, "0818": { - "SLPS_016_0x_offset": "416664", "image_table_indices": { "1": "414", "2": "377", @@ -4182,25 +3103,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[24]", "node_name": "Dia019", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou020", "upgrade_requirement": "1", "words": { - "1": "113", - "2": "40", - "3": "144" + "1": "self-confidence", + "2": "intellectual", + "3": "understanding" } }, "0819": { - "SLPS_016_0x_offset": "433504", "image_table_indices": { "1": "-1", "2": "-1", @@ -4209,25 +3123,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[10]", "node_name": "TaK032", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "149", - "2": "-1", - "3": "-1" + "1": "sensitivity", + "2": "", + "3": "" } }, "0820": { - "SLPS_016_0x_offset": "437664", "image_table_indices": { "1": "-1", "2": "-1", @@ -4236,25 +3143,18 @@ "is_hidden": "67", "media_file": "LAIN12.XA[19]", "node_name": "TaK136", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "325", - "2": "-1", - "3": "-1" + "1": "harmful effects", + "2": "", + "3": "" } }, "0821": { - "SLPS_016_0x_offset": "419624", "image_table_indices": { "1": "6", "2": "-1", @@ -4263,25 +3163,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[22]", "node_name": "Lda014", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "253", - "2": "267", - "3": "268" + "1": "kyoko", + "2": "anger", + "3": "sadness" } }, "0822": { - "SLPS_016_0x_offset": "419664", "image_table_indices": { "1": "7", "2": "-1", @@ -4290,25 +3183,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[23]", "node_name": "Lda015", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "269", - "2": "3", - "3": "10" + "1": "cold", + "2": "pretend", + "3": "chaos" } }, "0823": { - "SLPS_016_0x_offset": "419704", "image_table_indices": { "1": "8", "2": "-1", @@ -4317,27 +3203,20 @@ "is_hidden": "3", "media_file": "LAIN03.XA[24]", "node_name": "Lda016", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "160", - "2": "143", - "3": "270" + "1": "glad", + "2": "imagination", + "3": "cake" } } }, "09": { "0900": { - "SLPS_016_0x_offset": "419824", "image_table_indices": { "1": "674", "2": "673", @@ -4346,25 +3225,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[27]", "node_name": "Lda019", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "261", - "2": "124", - "3": "107" + "1": "tomokun", + "2": "transfer", + "3": "obstacle" } }, "0901": { - "SLPS_016_0x_offset": "414664", "image_table_indices": { "1": "186", "2": "268", @@ -4373,25 +3245,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[21]", "node_name": "Cou022", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou021", "upgrade_requirement": "2", "words": { - "1": "166", - "2": "167", - "3": "168" + "1": "counselor", + "2": "hallucination", + "3": "stress" } }, "0902": { - "SLPS_016_0x_offset": "414704", "image_table_indices": { "1": "190", "2": "85", @@ -4400,52 +3265,38 @@ "is_hidden": "0", "media_file": "LAIN01.XA[22]", "node_name": "Cou023", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou022", "upgrade_requirement": "2", "words": { - "1": "169", - "2": "154", - "3": "129" + "1": "normal", + "2": "special", + "3": "consultation" } }, "0904": { - "SLPS_016_0x_offset": "411824", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F012.STR", + "media_file": "F012.STR", "node_name": "Dc1008", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "21", - "2": "22", - "3": "23" + "1": "home page", + "2": "computer", + "3": "psychomotor" } }, "0905": { - "SLPS_016_0x_offset": "433544", "image_table_indices": { "1": "-1", "2": "-1", @@ -4454,25 +3305,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[11]", "node_name": "TaK033", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "8", - "2": "-1", - "3": "-1" + "1": "position", + "2": "", + "3": "" } }, "0906": { - "SLPS_016_0x_offset": "419744", "image_table_indices": { "1": "687", "2": "686", @@ -4481,25 +3325,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[25]", "node_name": "Lda017", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "93", - "2": "47", - "3": "45" + "1": "individuality", + "2": "instrument", + "3": "body" } }, "0907": { - "SLPS_016_0x_offset": "419784", "image_table_indices": { "1": "691", "2": "701", @@ -4508,25 +3345,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[26]", "node_name": "Lda018", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "219", - "2": "73", - "3": "140" + "1": "mother", + "2": "action", + "3": "worry" } }, "0908": { - "SLPS_016_0x_offset": "419864", "image_table_indices": { "1": "155", "2": "518", @@ -4535,25 +3365,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[28]", "node_name": "Lda020", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "271", - "2": "43", - "3": "195" + "1": "reward", + "2": "environment", + "3": "father" } }, "0909": { - "SLPS_016_0x_offset": "419904", "image_table_indices": { "1": "688", "2": "769", @@ -4562,52 +3385,38 @@ "is_hidden": "0", "media_file": "LAIN03.XA[29]", "node_name": "Lda021", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda020", "upgrade_requirement": "2", "words": { - "1": "272", - "2": "132", - "3": "273" + "1": "breast", + "2": "desire", + "3": "sexuality" } }, "0911": { - "SLPS_016_0x_offset": "412144", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F026.STR", + "media_file": "F026.STR", "node_name": "Dc1016", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "37", - "2": "44", - "3": "45" + "1": "life", + "2": "individuation", + "3": "body" } }, "0912": { - "SLPS_016_0x_offset": "430104", "image_table_indices": { "1": "366", "2": "121", @@ -4616,25 +3425,18 @@ "is_hidden": "3", "media_file": "LAIN09.XA[5]", "node_name": "Tda039", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "402", - "2": "288", - "3": "47" + "1": "flower", + "2": "telephone", + "3": "instrument" } }, "0913": { - "SLPS_016_0x_offset": "433584", "image_table_indices": { "1": "-1", "2": "-1", @@ -4643,25 +3445,18 @@ "is_hidden": "67", "media_file": "LAIN10.XA[12]", "node_name": "TaK034", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "339", - "2": "-1", - "3": "-1" + "1": "idea", + "2": "", + "3": "" } }, "0914": { - "SLPS_016_0x_offset": "437704", "image_table_indices": { "1": "-1", "2": "-1", @@ -4670,25 +3465,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[20]", "node_name": "TaK137", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "4", - "2": "-1", - "3": "-1" + "1": "phenomenon", + "2": "", + "3": "" } }, "0917": { - "SLPS_016_0x_offset": "419944", "image_table_indices": { "1": "21", "2": "425", @@ -4697,25 +3485,18 @@ "is_hidden": "3", "media_file": "LAIN03.XA[30]", "node_name": "Lda022", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "16", - "2": "253", - "3": "274" + "1": "school", + "2": "kyoko", + "3": "note" } }, "0918": { - "SLPS_016_0x_offset": "419984", "image_table_indices": { "1": "22", "2": "27", @@ -4724,25 +3505,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[31]", "node_name": "Lda023", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda022", "upgrade_requirement": "2", "words": { - "1": "274", - "2": "219", - "3": "56" + "1": "note", + "2": "mother", + "3": "difference" } }, "0919": { - "SLPS_016_0x_offset": "433624", "image_table_indices": { "1": "-1", "2": "-1", @@ -4751,25 +3525,18 @@ "is_hidden": "83", "media_file": "LAIN10.XA[13]", "node_name": "TaK035", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "92", - "2": "-1", - "3": "-1" + "1": "time", + "2": "", + "3": "" } }, "0920": { - "SLPS_016_0x_offset": "437744", "image_table_indices": { "1": "-1", "2": "-1", @@ -4778,25 +3545,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[21]", "node_name": "TaK138", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "55", - "2": "-1", - "3": "-1" + "1": "Posi_feelings", + "2": "", + "3": "" } }, "0921": { - "SLPS_016_0x_offset": "433664", "image_table_indices": { "1": "-1", "2": "-1", @@ -4805,25 +3565,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[14]", "node_name": "TaK036", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "2", - "2": "-1", - "3": "-1" + "1": "recognition", + "2": "", + "3": "" } }, "0922": { - "SLPS_016_0x_offset": "433704", "image_table_indices": { "1": "-1", "2": "-1", @@ -4832,25 +3585,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[15]", "node_name": "TaK037", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "260", - "2": "-1", - "3": "-1" + "1": "come in sight", + "2": "", + "3": "" } }, "0923": { - "SLPS_016_0x_offset": "437784", "image_table_indices": { "1": "-1", "2": "-1", @@ -4859,27 +3605,20 @@ "is_hidden": "35", "media_file": "LAIN12.XA[22]", "node_name": "TaK139", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "336", - "2": "-1", - "3": "-1" + "1": "sorrow", + "2": "", + "3": "" } } }, "10": { "1000": { - "SLPS_016_0x_offset": "433744", "image_table_indices": { "1": "-1", "2": "-1", @@ -4888,25 +3627,18 @@ "is_hidden": "83", "media_file": "LAIN10.XA[16]", "node_name": "TaK038", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "97", - "2": "-1", - "3": "-1" + "1": "personality", + "2": "", + "3": "" } }, "1002": { - "SLPS_016_0x_offset": "420024", "image_table_indices": { "1": "9", "2": "-1", @@ -4915,25 +3647,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[0]", "node_name": "Lda024", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "261", - "2": "47", - "3": "275" + "1": "tomokun", + "2": "instrument", + "3": "think" } }, "1003": { - "SLPS_016_0x_offset": "420064", "image_table_indices": { "1": "20", "2": "448", @@ -4942,25 +3667,18 @@ "is_hidden": "0", "media_file": "LAIN04.XA[1]", "node_name": "Lda025", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda024", "upgrade_requirement": "2", "words": { - "1": "102", - "2": "261", - "3": "154" + "1": "mind", + "2": "tomokun", + "3": "special" } }, "1004": { - "SLPS_016_0x_offset": "414744", "image_table_indices": { "1": "87", "2": "194", @@ -4969,25 +3687,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[23]", "node_name": "Cou024", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "170", - "2": "171", - "3": "89" + "1": "favorable turn", + "2": "deterioration", + "3": "thought" } }, "1005": { - "SLPS_016_0x_offset": "414784", "image_table_indices": { "1": "88", "2": "291", @@ -4996,25 +3707,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[24]", "node_name": "Cou025", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou024", "upgrade_requirement": "2", "words": { - "1": "170", - "2": "172", - "3": "38" + "1": "favorable turn", + "2": "engagement", + "3": "pursuit" } }, "1006": { - "SLPS_016_0x_offset": "416704", "image_table_indices": { "1": "378", "2": "415", @@ -5023,25 +3727,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[25]", "node_name": "Dia020", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou024", "upgrade_requirement": "1", "words": { - "1": "222", - "2": "140", - "3": "8" + "1": "interest", + "2": "worry", + "3": "position" } }, "1007": { - "SLPS_016_0x_offset": "433784", "image_table_indices": { "1": "-1", "2": "-1", @@ -5050,25 +3747,18 @@ "is_hidden": "19", "media_file": "LAIN10.XA[17]", "node_name": "TaK039", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "69", - "2": "-1", - "3": "-1" + "1": "communication", + "2": "", + "3": "" } }, "1008": { - "SLPS_016_0x_offset": "430144", "image_table_indices": { "1": "18", "2": "-1", @@ -5077,25 +3767,18 @@ "is_hidden": "3", "media_file": "LAIN09.XA[6]", "node_name": "Tda040", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "288", - "2": "383", - "3": "68" + "1": "telephone", + "2": "takeshi", + "3": "simplicity" } }, "1009": { - "SLPS_016_0x_offset": "430184", "image_table_indices": { "1": "123", "2": "42", @@ -5104,25 +3787,18 @@ "is_hidden": "0", "media_file": "LAIN09.XA[7]", "node_name": "Tda041", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda040", "upgrade_requirement": "2", "words": { - "1": "282", - "2": "335", - "3": "383" + "1": "expectation", + "2": "believe", + "3": "takeshi" } }, "1011": { - "SLPS_016_0x_offset": "420104", "image_table_indices": { "1": "449", "2": "164", @@ -5131,25 +3807,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[2]", "node_name": "Lda026", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "270", - "2": "276", - "3": "277" + "1": "cake", + "2": "prohibition", + "3": "souvenir" } }, "1012": { - "SLPS_016_0x_offset": "420144", "image_table_indices": { "1": "451", "2": "25", @@ -5158,25 +3827,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[3]", "node_name": "Lda027", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "261", - "2": "253", - "3": "154" + "1": "tomokun", + "2": "kyoko", + "3": "special" } }, "1013": { - "SLPS_016_0x_offset": "420184", "image_table_indices": { "1": "342", "2": "453", @@ -5185,25 +3847,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[4]", "node_name": "Lda028", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "253", - "2": "278", - "3": "279" + "1": "kyoko", + "2": "unpleasant", + "3": "meanness" } }, "1014": { - "SLPS_016_0x_offset": "420224", "image_table_indices": { "1": "45", "2": "-1", @@ -5212,25 +3867,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[5]", "node_name": "Lda029", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "210", - "2": "151", - "3": "251" + "1": "negative", + "2": "diary", + "3": "common" } }, "1015": { - "SLPS_016_0x_offset": "437824", "image_table_indices": { "1": "-1", "2": "-1", @@ -5239,25 +3887,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[23]", "node_name": "TaK140", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "403", - "2": "-1", - "3": "-1" + "1": "obscenity", + "2": "", + "3": "" } }, "1016": { - "SLPS_016_0x_offset": "414824", "image_table_indices": { "1": "323", "2": "92", @@ -5266,25 +3907,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[25]", "node_name": "Cou026", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "89", - "2": "173", - "3": "168" + "1": "thought", + "2": "drunk", + "3": "stress" } }, "1017": { - "SLPS_016_0x_offset": "414864", "image_table_indices": { "1": "326", "2": "198", @@ -5293,25 +3927,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[26]", "node_name": "Cou027", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou026", "upgrade_requirement": "1", "words": { - "1": "174", - "2": "175", - "3": "176" + "1": "hairstyle", + "2": "charm", + "3": "seem " } }, "1018": { - "SLPS_016_0x_offset": "430224", "image_table_indices": { "1": "595", "2": "124", @@ -5320,25 +3947,18 @@ "is_hidden": "0", "media_file": "LAIN09.XA[8]", "node_name": "Tda042", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda041", "upgrade_requirement": "2", "words": { - "1": "395", - "2": "129", - "3": "193" + "1": "harumi", + "2": "consultation", + "3": "odd jobs" } }, "1019": { - "SLPS_016_0x_offset": "430264", "image_table_indices": { "1": "600", "2": "368", @@ -5347,25 +3967,18 @@ "is_hidden": "0", "media_file": "LAIN09.XA[9]", "node_name": "Tda043", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "Tda042", "upgrade_requirement": "3", "words": { - "1": "182", - "2": "178", - "3": "400" + "1": "resignation", + "2": "explanation", + "3": "unstable" } }, "1020": { - "SLPS_016_0x_offset": "416744", "image_table_indices": { "1": "379", "2": "523", @@ -5374,25 +3987,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[26]", "node_name": "Dia021", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou026", "upgrade_requirement": "1", "words": { - "1": "174", - "2": "175", - "3": "147" + "1": "hairstyle", + "2": "charm", + "3": "danger" } }, "1021": { - "SLPS_016_0x_offset": "420264", "image_table_indices": { "1": "167", "2": "-1", @@ -5401,25 +4007,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[6]", "node_name": "Lda030", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "257", - "2": "267", - "3": "10" + "1": "touko", + "2": "anger", + "3": "chaos" } }, "1022": { - "SLPS_016_0x_offset": "420304", "image_table_indices": { "1": "170", "2": "456", @@ -5428,27 +4027,20 @@ "is_hidden": "3", "media_file": "LAIN04.XA[7]", "node_name": "Lda031", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "278", - "2": "150", - "3": "280" + "1": "unpleasant", + "2": "needless", + "3": "solitude" } } }, "11": { "1100": { - "SLPS_016_0x_offset": "433824", "image_table_indices": { "1": "-1", "2": "-1", @@ -5457,25 +4049,18 @@ "is_hidden": "19", "media_file": "LAIN10.XA[18]", "node_name": "TaK040", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "158", - "2": "-1", - "3": "-1" + "1": "intrapsychic", + "2": "", + "3": "" } }, "1101": { - "SLPS_016_0x_offset": "433864", "image_table_indices": { "1": "-1", "2": "-1", @@ -5484,25 +4069,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[19]", "node_name": "TaK041", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "319", - "2": "-1", - "3": "-1" + "1": "despair", + "2": "", + "3": "" } }, "1102": { - "SLPS_016_0x_offset": "437864", "image_table_indices": { "1": "-1", "2": "-1", @@ -5511,25 +4089,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[24]", "node_name": "TaK141", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "38", - "2": "-1", - "3": "-1" + "1": "pursuit", + "2": "", + "3": "" } }, "1103": { - "SLPS_016_0x_offset": "433904", "image_table_indices": { "1": "-1", "2": "-1", @@ -5538,52 +4109,38 @@ "is_hidden": "51", "media_file": "LAIN10.XA[20]", "node_name": "TaK042", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "318", - "2": "-1", - "3": "-1" + "1": "fall ill", + "2": "", + "3": "" } }, "1104": { - "SLPS_016_0x_offset": "412384", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F036.STR", + "media_file": "F036.STR", "node_name": "Dc1022", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "57", - "2": "58", - "3": "59" + "1": "try hard", + "2": "program", + "3": "counter" } }, "1105": { - "SLPS_016_0x_offset": "420344", "image_table_indices": { "1": "457", "2": "189", @@ -5592,25 +4149,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[8]", "node_name": "Lda032", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "82", - "2": "253", - "3": "41" + "1": "tool", + "2": "kyoko", + "3": "sCh.avoidance" } }, "1106": { - "SLPS_016_0x_offset": "420384", "image_table_indices": { "1": "458", "2": "51", @@ -5619,25 +4169,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[9]", "node_name": "Lda033", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "219", - "2": "281", - "3": "97" + "1": "mother", + "2": "graduation", + "3": "personality" } }, "1107": { - "SLPS_016_0x_offset": "420424", "image_table_indices": { "1": "56", "2": "33", @@ -5646,25 +4189,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[10]", "node_name": "Lda034", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "89", - "2": "124", - "3": "282" + "1": "thought", + "2": "transfer", + "3": "expectation" } }, "1109": { - "SLPS_016_0x_offset": "433944", "image_table_indices": { "1": "-1", "2": "-1", @@ -5673,25 +4209,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[21]", "node_name": "TaK043", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "321", - "2": "-1", - "3": "-1" + "1": "hesitation", + "2": "", + "3": "" } }, "1110": { - "SLPS_016_0x_offset": "437904", "image_table_indices": { "1": "-1", "2": "-1", @@ -5700,25 +4229,18 @@ "is_hidden": "67", "media_file": "LAIN12.XA[25]", "node_name": "TaK142", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "225", - "2": "-1", - "3": "-1" + "1": "cheerful", + "2": "", + "3": "" } }, "1111": { - "SLPS_016_0x_offset": "439704", "image_table_indices": { "1": "-1", "2": "-1", @@ -5727,52 +4249,38 @@ "is_hidden": "3", "media_file": "LAIN21.XA[10]", "node_name": "P2-02", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "9", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1112": { - "SLPS_016_0x_offset": "439984", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\INS03.STR", + "media_file": "INS03.STR", "node_name": "SSkn03", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, "site": "A", "title": "mT up-date App.", "type": "7", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1113": { - "SLPS_016_0x_offset": "439744", "image_table_indices": { "1": "-1", "2": "-1", @@ -5781,25 +4289,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[11]", "node_name": "P2-03", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "9", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1114": { - "SLPS_016_0x_offset": "420464", "image_table_indices": { "1": "59", "2": "241", @@ -5808,25 +4309,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[11]", "node_name": "Lda035", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "283", - "2": "275", - "3": "219" + "1": "middle school", + "2": "think", + "3": "mother" } }, "1115": { - "SLPS_016_0x_offset": "420504", "image_table_indices": { "1": "242", "2": "60", @@ -5835,25 +4329,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[12]", "node_name": "Lda036", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "281", - "2": "217", - "3": "284" + "1": "graduation", + "2": "hatred ", + "3": "neglect" } }, "1116": { - "SLPS_016_0x_offset": "420584", "image_table_indices": { "1": "470", "2": "255", @@ -5862,25 +4349,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[14]", "node_name": "Lda038", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "286", - "2": "135", - "3": "3" + "1": "NAVI", + "2": "friend", + "3": "pretend" } }, "1117": { - "SLPS_016_0x_offset": "420624", "image_table_indices": { "1": "471", "2": "65", @@ -5889,25 +4369,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[15]", "node_name": "Lda039", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "4", - "2": "208", - "3": "64" + "1": "phenomenon", + "2": "family", + "3": "record" } }, "1118": { - "SLPS_016_0x_offset": "420664", "image_table_indices": { "1": "73", "2": "472", @@ -5916,52 +4389,38 @@ "is_hidden": "0", "media_file": "LAIN04.XA[16]", "node_name": "Lda040", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda039", "upgrade_requirement": "1", "words": { - "1": "287", - "2": "95", - "3": "160" + "1": "network", + "2": "kind", + "3": "glad" } }, "1119": { - "SLPS_016_0x_offset": "411544", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F001.STR", + "media_file": "F001.STR", "node_name": "Dc1001", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "0", - "2": "1", - "3": "2" + "1": "electric wire", + "2": "sky", + "3": "recognition" } }, "1120": { - "SLPS_016_0x_offset": "414904", "image_table_indices": { "1": "199", "2": "327", @@ -5970,25 +4429,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[27]", "node_name": "Cou028", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "177", - "2": "178", - "3": "93" + "1": "image", + "2": "explanation", + "3": "individuality" } }, "1121": { - "SLPS_016_0x_offset": "414944", "image_table_indices": { "1": "200", "2": "106", @@ -5997,25 +4449,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[28]", "node_name": "Cou029", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou028", "upgrade_requirement": "2", "words": { - "1": "2", - "2": "65", - "3": "179" + "1": "recognition", + "2": "expression", + "3": "research" } }, "1122": { - "SLPS_016_0x_offset": "416784", "image_table_indices": { "1": "532", "2": "382", @@ -6024,25 +4469,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[27]", "node_name": "Dia022", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou028", "upgrade_requirement": "2", "words": { - "1": "71", - "2": "153", - "3": "223" + "1": "psychosis", + "2": "ego", + "3": "object" } }, "1123": { - "SLPS_016_0x_offset": "420544", "image_table_indices": { "1": "243", "2": "460", @@ -6051,27 +4489,20 @@ "is_hidden": "0", "media_file": "LAIN04.XA[13]", "node_name": "Lda037", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda036", "upgrade_requirement": "1", "words": { - "1": "285", - "2": "105", - "3": "205" + "1": "meaning", + "2": "necessity", + "3": "doubt" } } }, "12": { "1201": { - "SLPS_016_0x_offset": "433984", "image_table_indices": { "1": "-1", "2": "-1", @@ -6080,25 +4511,18 @@ "is_hidden": "35", "media_file": "LAIN10.XA[22]", "node_name": "TaK044", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "316", - "2": "-1", - "3": "-1" + "1": "corporation", + "2": "", + "3": "" } }, "1202": { - "SLPS_016_0x_offset": "420704", "image_table_indices": { "1": "77", "2": "313", @@ -6107,25 +4531,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[17]", "node_name": "Lda041", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "287", - "2": "135", - "3": "67" + "1": "network", + "2": "friend", + "3": "will" } }, "1203": { - "SLPS_016_0x_offset": "420744", "image_table_indices": { "1": "314", "2": "78", @@ -6134,25 +4551,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[18]", "node_name": "Lda042", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "58", - "2": "139", - "3": "288" + "1": "program", + "2": "study", + "3": "telephone" } }, "1204": { - "SLPS_016_0x_offset": "420784", "image_table_indices": { "1": "315", "2": "477", @@ -6161,25 +4571,18 @@ "is_hidden": "0", "media_file": "LAIN04.XA[19]", "node_name": "Lda043", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda042", "upgrade_requirement": "1", "words": { - "1": "253", - "2": "140", - "3": "123" + "1": "kyoko", + "2": "worry", + "3": "wish" } }, "1206": { - "SLPS_016_0x_offset": "434024", "image_table_indices": { "1": "-1", "2": "-1", @@ -6188,25 +4591,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[23]", "node_name": "TaK045", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "237", - "2": "-1", - "3": "-1" + "1": "condition", + "2": "", + "3": "" } }, "1207": { - "SLPS_016_0x_offset": "437944", "image_table_indices": { "1": "-1", "2": "-1", @@ -6215,25 +4611,18 @@ "is_hidden": "67", "media_file": "LAIN12.XA[26]", "node_name": "TaK143", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "43", - "2": "-1", - "3": "-1" + "1": "environment", + "2": "", + "3": "" } }, "1208": { - "SLPS_016_0x_offset": "434104", "image_table_indices": { "1": "-1", "2": "-1", @@ -6242,25 +4631,18 @@ "is_hidden": "67", "media_file": "LAIN10.XA[25]", "node_name": "TaK047", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "4", - "2": "-1", - "3": "-1" + "1": "phenomenon", + "2": "", + "3": "" } }, "1209": { - "SLPS_016_0x_offset": "437984", "image_table_indices": { "1": "-1", "2": "-1", @@ -6269,25 +4651,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[27]", "node_name": "TaK144", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "64", - "2": "-1", - "3": "-1" + "1": "record", + "2": "", + "3": "" } }, "1211": { - "SLPS_016_0x_offset": "420824", "image_table_indices": { "1": "478", "2": "316", @@ -6296,25 +4671,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[20]", "node_name": "Lda044", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "213", - "2": "102", - "3": "254" + "1": "game", + "2": "mind", + "3": "whereabouts" } }, "1212": { - "SLPS_016_0x_offset": "420864", "image_table_indices": { "1": "624", "2": "90", @@ -6323,25 +4691,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[21]", "node_name": "Lda045", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "281", - "2": "289", - "3": "97" + "1": "graduation", + "2": "trouble", + "3": "personality" } }, "1213": { - "SLPS_016_0x_offset": "420904", "image_table_indices": { "1": "91", "2": "278", @@ -6350,25 +4711,18 @@ "is_hidden": "0", "media_file": "LAIN04.XA[22]", "node_name": "Lda046", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda045", "upgrade_requirement": "1", "words": { - "1": "211", - "2": "237", - "3": "284" + "1": "impression", + "2": "condition", + "3": "neglect" } }, "1214": { - "SLPS_016_0x_offset": "434064", "image_table_indices": { "1": "-1", "2": "-1", @@ -6377,52 +4731,38 @@ "is_hidden": "67", "media_file": "LAIN10.XA[24]", "node_name": "TaK046", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "220", - "2": "-1", - "3": "-1" + "1": "distrust", + "2": "", + "3": "" } }, "1215": { - "SLPS_016_0x_offset": "412424", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F037.STR", + "media_file": "F037.STR", "node_name": "Dc1023", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "60", - "2": "61", - "3": "62" + "1": "trap", + "2": "software", + "3": "technology" } }, "1216": { - "SLPS_016_0x_offset": "414984", "image_table_indices": { "1": "107", "2": "201", @@ -6431,25 +4771,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[29]", "node_name": "Cou030", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "26", - "2": "180", - "3": "64" + "1": "memories", + "2": "remembrance", + "3": "record" } }, "1217": { - "SLPS_016_0x_offset": "415024", "image_table_indices": { "1": "108", "2": "333", @@ -6458,25 +4791,18 @@ "is_hidden": "0", "media_file": "LAIN01.XA[30]", "node_name": "Cou031", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou030", "upgrade_requirement": "2", "words": { - "1": "65", - "2": "181", - "3": "182" + "1": "expression", + "2": "retrieval", + "3": "resignation" } }, "1218": { - "SLPS_016_0x_offset": "416824", "image_table_indices": { "1": "535", "2": "432", @@ -6485,25 +4811,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[28]", "node_name": "Dia023", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou030", "upgrade_requirement": "2", "words": { - "1": "134", - "2": "180", - "3": "5" + "1": "relax", + "2": "remembrance", + "3": "state" } }, "1219": { - "SLPS_016_0x_offset": "434144", "image_table_indices": { "1": "-1", "2": "-1", @@ -6512,25 +4831,18 @@ "is_hidden": "83", "media_file": "LAIN10.XA[26]", "node_name": "TaK048", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "184", - "2": "-1", - "3": "-1" + "1": "identification", + "2": "", + "3": "" } }, "1220": { - "SLPS_016_0x_offset": "420944", "image_table_indices": { "1": "96", "2": "319", @@ -6539,25 +4851,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[23]", "node_name": "Lda047", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "258", - "2": "27", - "3": "195" + "1": "library", + "2": "amusing", + "3": "father" } }, "1221": { - "SLPS_016_0x_offset": "420984", "image_table_indices": { "1": "345", "2": "97", @@ -6566,25 +4871,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[24]", "node_name": "Lda048", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "213", - "2": "227", - "3": "283" + "1": "game", + "2": "harassment", + "3": "middle school" } }, "1223": { - "SLPS_016_0x_offset": "434304", "image_table_indices": { "1": "-1", "2": "-1", @@ -6593,27 +4891,20 @@ "is_hidden": "83", "media_file": "LAIN10.XA[30]", "node_name": "TaK052", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "102", - "2": "-1", - "3": "-1" + "1": "mind", + "2": "", + "3": "" } } }, "13": { "1300": { - "SLPS_016_0x_offset": "421144", "image_table_indices": { "1": "113", "2": "485", @@ -6622,25 +4913,18 @@ "is_hidden": "0", "media_file": "LAIN04.XA[28]", "node_name": "Lda052", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda051", "upgrade_requirement": "1", "words": { - "1": "140", - "2": "142", - "3": "289" + "1": "worry", + "2": "sLf-persecution", + "3": "trouble" } }, "1302": { - "SLPS_016_0x_offset": "434184", "image_table_indices": { "1": "-1", "2": "-1", @@ -6649,25 +4933,18 @@ "is_hidden": "51", "media_file": "LAIN10.XA[27]", "node_name": "TaK049", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "133", - "2": "-1", - "3": "-1" + "1": "investigation", + "2": "", + "3": "" } }, "1303": { - "SLPS_016_0x_offset": "438024", "image_table_indices": { "1": "-1", "2": "-1", @@ -6676,25 +4953,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[28]", "node_name": "TaK145", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "10", - "2": "-1", - "3": "-1" + "1": "chaos", + "2": "", + "3": "" } }, "1305": { - "SLPS_016_0x_offset": "421024", "image_table_indices": { "1": "10", "2": "-1", @@ -6703,25 +4973,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[25]", "node_name": "Lda049", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "290", - "2": "195", - "3": "291" + "1": "business trip", + "2": "father", + "3": "seeing off" } }, "1306": { - "SLPS_016_0x_offset": "421064", "image_table_indices": { "1": "483", "2": "436", @@ -6730,25 +4993,18 @@ "is_hidden": "0", "media_file": "LAIN04.XA[26]", "node_name": "Lda050", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda049", "upgrade_requirement": "2", "words": { - "1": "292", - "2": "113", - "3": "218" + "1": "business", + "2": "self-confidence", + "3": "purpose" } }, "1307": { - "SLPS_016_0x_offset": "421104", "image_table_indices": { "1": "484", "2": "101", @@ -6757,25 +5013,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[27]", "node_name": "Lda051", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "291", - "2": "219", - "3": "206" + "1": "seeing off", + "2": "mother", + "3": "lonely" } }, "1308": { - "SLPS_016_0x_offset": "421264", "image_table_indices": { "1": "784", "2": "493", @@ -6784,52 +5033,38 @@ "is_hidden": "0", "media_file": "LAIN04.XA[31]", "node_name": "Lda055", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda054", "upgrade_requirement": "2", "words": { - "1": "65", - "2": "20", - "3": "113" + "1": "expression", + "2": "sanity", + "3": "self-confidence" } }, "1309": { - "SLPS_016_0x_offset": "412264", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F033.STR", + "media_file": "F033.STR", "node_name": "Dc1019", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "20", - "2": "51", - "3": "52" + "1": "sanity", + "2": "psychiatrist", + "3": "psychotherapy" } }, "1310": { - "SLPS_016_0x_offset": "434224", "image_table_indices": { "1": "-1", "2": "-1", @@ -6838,25 +5073,18 @@ "is_hidden": "19", "media_file": "LAIN10.XA[28]", "node_name": "TaK050", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "23", - "2": "-1", - "3": "-1" + "1": "psychomotor", + "2": "", + "3": "" } }, "1312": { - "SLPS_016_0x_offset": "434264", "image_table_indices": { "1": "-1", "2": "-1", @@ -6865,25 +5093,18 @@ "is_hidden": "19", "media_file": "LAIN10.XA[29]", "node_name": "TaK051", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "37", - "2": "-1", - "3": "-1" + "1": "life", + "2": "", + "3": "" } }, "1313": { - "SLPS_016_0x_offset": "438064", "image_table_indices": { "1": "-1", "2": "-1", @@ -6892,25 +5113,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[29]", "node_name": "TaK146", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "263", - "2": "-1", - "3": "-1" + "1": "boy", + "2": "", + "3": "" } }, "1314": { - "SLPS_016_0x_offset": "421184", "image_table_indices": { "1": "120", "2": "288", @@ -6919,25 +5133,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[29]", "node_name": "Lda053", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "293", - "2": "59", - "3": "142" + "1": "Mr.rabbit", + "2": "counter", + "3": "sLf-persecution" } }, "1315": { - "SLPS_016_0x_offset": "421224", "image_table_indices": { "1": "626", "2": "127", @@ -6946,25 +5153,18 @@ "is_hidden": "3", "media_file": "LAIN04.XA[30]", "node_name": "Lda054", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "62", - "2": "294", - "3": "60" + "1": "technology", + "2": "footprint", + "3": "trap" } }, "1317": { - "SLPS_016_0x_offset": "421304", "image_table_indices": { "1": "494", "2": "420", @@ -6973,25 +5173,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[0]", "node_name": "Lda056", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "113", - "2": "295", - "3": "37" + "1": "self-confidence", + "2": "mail", + "3": "life" } }, "1318": { - "SLPS_016_0x_offset": "421344", "image_table_indices": { "1": "232", "2": "130", @@ -7000,25 +5193,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[1]", "node_name": "Lda057", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "296", - "2": "278", - "3": "42" + "1": "open", + "2": "unpleasant", + "3": "apprehension" } }, "1319": { - "SLPS_016_0x_offset": "421384", "image_table_indices": { "1": "131", "2": "497", @@ -7027,25 +5213,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[2]", "node_name": "Lda058", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "151", - "2": "296", - "3": "297" + "1": "diary", + "2": "open", + "3": "revenge" } }, "1320": { - "SLPS_016_0x_offset": "421424", "image_table_indices": { "1": "132", "2": "675", @@ -7054,25 +5233,18 @@ "is_hidden": "0", "media_file": "LAIN05.XA[3]", "node_name": "Lda059", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda058", "upgrade_requirement": "2", "words": { - "1": "83", - "2": "13", - "3": "7" + "1": "Nega feelings", + "2": "human being", + "3": "comparison" } }, "1321": { - "SLPS_016_0x_offset": "415064", "image_table_indices": { "1": "334", "2": "109", @@ -7081,25 +5253,18 @@ "is_hidden": "3", "media_file": "LAIN01.XA[31]", "node_name": "Cou032", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "54", - "2": "183", - "3": "128" + "1": "favorite", + "2": "happiness", + "3": "dislike" } }, "1322": { - "SLPS_016_0x_offset": "415104", "image_table_indices": { "1": "336", "2": "244", @@ -7108,25 +5273,18 @@ "is_hidden": "0", "media_file": "LAIN02.XA[0]", "node_name": "Cou033", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "Cou032", "upgrade_requirement": "2", "words": { - "1": "5", - "2": "145", - "3": "184" + "1": "state", + "2": "impossible", + "3": "identification" } }, "1323": { - "SLPS_016_0x_offset": "416864", "image_table_indices": { "1": "433", "2": "537", @@ -7135,27 +5293,20 @@ "is_hidden": "0", "media_file": "LAIN02.XA[29]", "node_name": "Dia024", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou032", "upgrade_requirement": "2", "words": { - "1": "69", - "2": "207", - "3": "52" + "1": "communication", + "2": "client", + "3": "psychotherapy" } } }, "14": { "1400": { - "SLPS_016_0x_offset": "439784", "image_table_indices": { "1": "-1", "2": "-1", @@ -7164,25 +5315,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[12]", "node_name": "P2-04", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "9", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1402": { - "SLPS_016_0x_offset": "421464", "image_table_indices": { "1": "676", "2": "134", @@ -7191,25 +5335,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[4]", "node_name": "Lda060", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "298", - "2": "297", - "3": "82" + "1": "regrettable", + "2": "revenge", + "3": "tool" } }, "1403": { - "SLPS_016_0x_offset": "421504", "image_table_indices": { "1": "681", "2": "503", @@ -7218,25 +5355,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[5]", "node_name": "Lda061", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "283", - "2": "299", - "3": "165" + "1": "middle school", + "2": "peace of mind", + "3": "illness" } }, "1406": { - "SLPS_016_0x_offset": "434344", "image_table_indices": { "1": "-1", "2": "-1", @@ -7245,52 +5375,38 @@ "is_hidden": "83", "media_file": "LAIN10.XA[31]", "node_name": "TaK053", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "328", - "2": "-1", - "3": "-1" + "1": "man", + "2": "", + "3": "" } }, "1408": { - "SLPS_016_0x_offset": "412184", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F027.STR", + "media_file": "F027.STR", "node_name": "Dc1017", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "46", - "2": "47", - "3": "29" + "1": "look back on", + "2": "instrument", + "3": "memory" } }, "1409": { - "SLPS_016_0x_offset": "434384", "image_table_indices": { "1": "-1", "2": "-1", @@ -7299,25 +5415,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[0]", "node_name": "TaK054", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "250", - "2": "-1", - "3": "-1" + "1": "makeup", + "2": "", + "3": "" } }, "1410": { - "SLPS_016_0x_offset": "438144", "image_table_indices": { "1": "-1", "2": "-1", @@ -7326,25 +5435,18 @@ "is_hidden": "67", "media_file": "LAIN12.XA[31]", "node_name": "TaK148", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "141", - "2": "-1", - "3": "-1" + "1": "melancholy", + "2": "", + "3": "" } }, "1411": { - "SLPS_016_0x_offset": "421544", "image_table_indices": { "1": "11", "2": "-1", @@ -7353,25 +5455,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[6]", "node_name": "Lda062", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "49", - "2": "45", - "3": "140" + "1": "oral", + "2": "body", + "3": "worry" } }, "1412": { - "SLPS_016_0x_offset": "421584", "image_table_indices": { "1": "505", "2": "136", @@ -7380,25 +5475,18 @@ "is_hidden": "0", "media_file": "LAIN05.XA[7]", "node_name": "Lda063", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda062", "upgrade_requirement": "2", "words": { - "1": "300", - "2": "23", - "3": "177" + "1": "transfiguration", + "2": "psychomotor", + "3": "image" } }, "1414": { - "SLPS_016_0x_offset": "434424", "image_table_indices": { "1": "-1", "2": "-1", @@ -7407,25 +5495,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[1]", "node_name": "TaK055", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "223", - "2": "-1", - "3": "-1" + "1": "object", + "2": "", + "3": "" } }, "1415": { - "SLPS_016_0x_offset": "438104", "image_table_indices": { "1": "-1", "2": "-1", @@ -7434,25 +5515,18 @@ "is_hidden": "51", "media_file": "LAIN12.XA[30]", "node_name": "TaK147", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "279", - "2": "-1", - "3": "-1" + "1": "meanness", + "2": "", + "3": "" } }, "1416": { - "SLPS_016_0x_offset": "434464", "image_table_indices": { "1": "-1", "2": "-1", @@ -7461,25 +5535,18 @@ "is_hidden": "19", "media_file": "LAIN11.XA[2]", "node_name": "TaK056", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "191", - "2": "-1", - "3": "-1" + "1": "sleepless", + "2": "", + "3": "" } }, "1417": { - "SLPS_016_0x_offset": "438184", "image_table_indices": { "1": "-1", "2": "-1", @@ -7488,25 +5555,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[0]", "node_name": "TaK149", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "294", - "2": "-1", - "3": "-1" + "1": "footprint", + "2": "", + "3": "" } }, "1418": { - "SLPS_016_0x_offset": "439824", "image_table_indices": { "1": "-1", "2": "-1", @@ -7515,25 +5575,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[13]", "node_name": "P2-05", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "9", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1419": { - "SLPS_016_0x_offset": "434504", "image_table_indices": { "1": "-1", "2": "-1", @@ -7542,25 +5595,18 @@ "is_hidden": "83", "media_file": "LAIN11.XA[3]", "node_name": "TaK057", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "215", - "2": "-1", - "3": "-1" + "1": "pupil", + "2": "", + "3": "" } }, "1420": { - "SLPS_016_0x_offset": "421624", "image_table_indices": { "1": "137", "2": "506", @@ -7569,25 +5615,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[8]", "node_name": "Lda064", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "219", - "2": "301", - "3": "186" + "1": "mother", + "2": "agree", + "3": "misato" } }, "1421": { - "SLPS_016_0x_offset": "421664", "image_table_indices": { "1": "138", "2": "685", @@ -7596,81 +5635,60 @@ "is_hidden": "0", "media_file": "LAIN05.XA[9]", "node_name": "Lda065", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda064", "upgrade_requirement": "2", "words": { - "1": "241", - "2": "282", - "3": "195" + "1": "hunch", + "2": "expectation", + "3": "father" } }, "1422": { - "SLPS_016_0x_offset": "411584", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F002.STR", + "media_file": "F002.STR", "node_name": "Dc1002", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "3", - "2": "4", - "3": "5" + "1": "pretend", + "2": "phenomenon", + "3": "state" } } }, "15": { "1500": { - "SLPS_016_0x_offset": "411624", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F003.STR", + "media_file": "F003.STR", "node_name": "Dc1003", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "6", - "2": "7", - "3": "8" + "1": "be settled", + "2": "comparison", + "3": "position" } }, "1502": { - "SLPS_016_0x_offset": "434544", "image_table_indices": { "1": "-1", "2": "-1", @@ -7679,25 +5697,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[4]", "node_name": "TaK058", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "73", - "2": "-1", - "3": "-1" + "1": "action", + "2": "", + "3": "" } }, "1503": { - "SLPS_016_0x_offset": "438224", "image_table_indices": { "1": "-1", "2": "-1", @@ -7706,25 +5717,18 @@ "is_hidden": "51", "media_file": "LAIN13.XA[1]", "node_name": "TaK150", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "65", - "2": "-1", - "3": "-1" + "1": "expression", + "2": "", + "3": "" } }, "1505": { - "SLPS_016_0x_offset": "421704", "image_table_indices": { "1": "690", "2": "139", @@ -7733,25 +5737,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[10]", "node_name": "Lda066", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "186", - "2": "302", - "3": "303" + "1": "misato", + "2": "extra. lesson", + "3": "violin" } }, "1506": { - "SLPS_016_0x_offset": "421744", "image_table_indices": { "1": "695", "2": "510", @@ -7760,25 +5757,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[11]", "node_name": "Lda067", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "257", - "2": "186", - "3": "302" + "1": "touko", + "2": "misato", + "3": "extra. lesson" } }, "1507": { - "SLPS_016_0x_offset": "421784", "image_table_indices": { "1": "343", "2": "697", @@ -7787,25 +5777,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[12]", "node_name": "Lda068", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "304", - "2": "5", - "3": "254" + "1": "together", + "2": "state", + "3": "whereabouts" } }, "1508": { - "SLPS_016_0x_offset": "421904", "image_table_indices": { "1": "147", "2": "700", @@ -7814,25 +5797,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[15]", "node_name": "Lda071", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "305", - "2": "205", - "3": "278" + "1": "monopoly", + "2": "doubt", + "3": "unpleasant" } }, "1509": { - "SLPS_016_0x_offset": "421944", "image_table_indices": { "1": "705", "2": "148", @@ -7841,25 +5817,18 @@ "is_hidden": "16", "media_file": "LAIN05.XA[16]", "node_name": "Lda072", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda071", "upgrade_requirement": "2", "words": { - "1": "145", - "2": "89", - "3": "2" + "1": "impossible", + "2": "thought", + "3": "recognition" } }, "1510": { - "SLPS_016_0x_offset": "415144", "image_table_indices": { "1": "246", "2": "338", @@ -7868,25 +5837,18 @@ "is_hidden": "3", "media_file": "LAIN02.XA[1]", "node_name": "Cou034", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "16", - "2": "185", - "3": "186" + "1": "school", + "2": "experience", + "3": "misato" } }, "1511": { - "SLPS_016_0x_offset": "416904", "image_table_indices": { "1": "434", "2": "385", @@ -7895,52 +5857,38 @@ "is_hidden": "0", "media_file": "LAIN02.XA[30]", "node_name": "Dia025", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou034", "upgrade_requirement": "2", "words": { - "1": "65", - "2": "135", - "3": "43" + "1": "expression", + "2": "friend", + "3": "environment" } }, "1512": { - "SLPS_016_0x_offset": "411704", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F006.STR", + "media_file": "F006.STR", "node_name": "Dc1005", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "12", - "2": "13", - "3": "14" + "1": "indifference", + "2": "human being", + "3": "noise" } }, "1513": { - "SLPS_016_0x_offset": "434584", "image_table_indices": { "1": "-1", "2": "-1", @@ -7949,25 +5897,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[5]", "node_name": "TaK059", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "92", - "2": "-1", - "3": "-1" + "1": "time", + "2": "", + "3": "" } }, "1514": { - "SLPS_016_0x_offset": "421824", "image_table_indices": { "1": "511", "2": "143", @@ -7976,25 +5917,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[13]", "node_name": "Lda069", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "5", - "2": "237", - "3": "81" + "1": "state", + "2": "condition", + "3": "result" } }, "1515": { - "SLPS_016_0x_offset": "421864", "image_table_indices": { "1": "146", "2": "512", @@ -8003,25 +5937,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[14]", "node_name": "Lda070", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "5", - "2": "280", - "3": "195" + "1": "state", + "2": "solitude", + "3": "father" } }, "1516": { - "SLPS_016_0x_offset": "422024", "image_table_indices": { "1": "525", "2": "707", @@ -8030,25 +5957,18 @@ "is_hidden": "0", "media_file": "LAIN05.XA[18]", "node_name": "Lda074", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda073", "upgrade_requirement": "2", "words": { - "1": "145", - "2": "18", - "3": "82" + "1": "impossible", + "2": "smile", + "3": "tool" } }, "1517": { - "SLPS_016_0x_offset": "422064", "image_table_indices": { "1": "149", "2": "526", @@ -8057,52 +5977,38 @@ "is_hidden": "3", "media_file": "LAIN05.XA[19]", "node_name": "Lda075", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "150", - "2": "295", - "3": "307" + "1": "needless", + "2": "mail", + "3": "cause" } }, "1518": { - "SLPS_016_0x_offset": "411744", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F008.STR", + "media_file": "F008.STR", "node_name": "Dc1006", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "15", - "2": "16", - "3": "17" + "1": "duty", + "2": "school", + "3": "silence" } }, "1520": { - "SLPS_016_0x_offset": "434624", "image_table_indices": { "1": "-1", "2": "-1", @@ -8111,25 +6017,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[6]", "node_name": "TaK060", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "157", - "2": "-1", - "3": "-1" + "1": "fiction", + "2": "", + "3": "" } }, "1521": { - "SLPS_016_0x_offset": "438264", "image_table_indices": { "1": "-1", "2": "-1", @@ -8138,25 +6037,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[2]", "node_name": "TaK151", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "317", - "2": "-1", - "3": "-1" + "1": "awareness", + "2": "", + "3": "" } }, "1523": { - "SLPS_016_0x_offset": "421984", "image_table_indices": { "1": "12", "2": "-1", @@ -8165,27 +6057,20 @@ "is_hidden": "19", "media_file": "LAIN05.XA[17]", "node_name": "Lda073", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "306", - "2": "290", - "3": "287" + "1": "painting", + "2": "business trip", + "3": "network" } } }, "16": { "1600": { - "SLPS_016_0x_offset": "422104", "image_table_indices": { "1": "151", "2": "709", @@ -8194,25 +6079,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[20]", "node_name": "Lda076", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "195", - "2": "138", - "3": "137" + "1": "father", + "2": "be tired", + "3": "doll" } }, "1601": { - "SLPS_016_0x_offset": "422144", "image_table_indices": { "1": "710", "2": "152", @@ -8221,25 +6099,18 @@ "is_hidden": "0", "media_file": "LAIN05.XA[21]", "node_name": "Lda077", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda076", "upgrade_requirement": "2", "words": { - "1": "195", - "2": "177", - "3": "63" + "1": "father", + "2": "image", + "3": "variety" } }, "1602": { - "SLPS_016_0x_offset": "422184", "image_table_indices": { "1": "711", "2": "534", @@ -8248,25 +6119,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[22]", "node_name": "Lda078", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "277", - "2": "257", - "3": "250" + "1": "souvenir", + "2": "touko", + "3": "makeup" } }, "1603": { - "SLPS_016_0x_offset": "422224", "image_table_indices": { "1": "538", "2": "712", @@ -8275,25 +6139,18 @@ "is_hidden": "16", "media_file": "LAIN05.XA[23]", "node_name": "Lda079", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda078", "upgrade_requirement": "2", "words": { - "1": "162", - "2": "5", - "3": "282" + "1": "present", + "2": "state", + "3": "expectation" } }, "1604": { - "SLPS_016_0x_offset": "434664", "image_table_indices": { "1": "-1", "2": "-1", @@ -8302,25 +6159,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[7]", "node_name": "TaK061", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "330", - "2": "-1", - "3": "-1" + "1": "anonymous", + "2": "", + "3": "" } }, "1605": { - "SLPS_016_0x_offset": "415184", "image_table_indices": { "1": "247", "2": "112", @@ -8329,52 +6179,38 @@ "is_hidden": "3", "media_file": "LAIN02.XA[2]", "node_name": "Cou035", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "187", - "2": "188", - "3": "189" + "1": "idolize", + "2": "alienation", + "3": "missing self" } }, "1606": { - "SLPS_016_0x_offset": "411784", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F010.STR", + "media_file": "F010.STR", "node_name": "Dc1007", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "18", - "2": "19", - "3": "20" + "1": "smile", + "2": "character", + "3": "sanity" } }, "1607": { - "SLPS_016_0x_offset": "416944", "image_table_indices": { "1": "386", "2": "435", @@ -8383,52 +6219,38 @@ "is_hidden": "0", "media_file": "LAIN02.XA[31]", "node_name": "Dia026", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou035", "upgrade_requirement": "2", "words": { - "1": "187", - "2": "224", - "3": "189" + "1": "idolize", + "2": "longing", + "3": "missing self" } }, "1608": { - "SLPS_016_0x_offset": "411944", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F015.STR", + "media_file": "F015.STR", "node_name": "Dc1011", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "30", - "2": "31", - "3": "32" + "1": "bad atmosphere", + "2": "accept", + "3": "admiration" } }, "1609": { - "SLPS_016_0x_offset": "422264", "image_table_indices": { "1": "422", "2": "157", @@ -8437,25 +6259,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[24]", "node_name": "Lda080", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "280", - "2": "206", - "3": "277" + "1": "solitude", + "2": "lonely", + "3": "souvenir" } }, "1610": { - "SLPS_016_0x_offset": "422304", "image_table_indices": { "1": "158", "2": "541", @@ -8464,25 +6279,18 @@ "is_hidden": "16", "media_file": "LAIN05.XA[25]", "node_name": "Lda081", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda080", "upgrade_requirement": "2", "words": { - "1": "308", - "2": "23", - "3": "140" + "1": "seek", + "2": "psychomotor", + "3": "worry" } }, "1611": { - "SLPS_016_0x_offset": "422344", "image_table_indices": { "1": "159", "2": "715", @@ -8491,25 +6299,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[26]", "node_name": "Lda082", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "73", - "2": "309", - "3": "307" + "1": "action", + "2": "mystery", + "3": "cause" } }, "1612": { - "SLPS_016_0x_offset": "422384", "image_table_indices": { "1": "716", "2": "160", @@ -8518,25 +6319,18 @@ "is_hidden": "16", "media_file": "LAIN05.XA[27]", "node_name": "Lda083", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda082", "upgrade_requirement": "2", "words": { - "1": "55", - "2": "216", - "3": "310" + "1": "Posi_feelings", + "2": "conflict", + "3": "delete" } }, "1614": { - "SLPS_016_0x_offset": "434704", "image_table_indices": { "1": "-1", "2": "-1", @@ -8545,25 +6339,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[8]", "node_name": "TaK062", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "327", - "2": "-1", - "3": "-1" + "1": "news-group", + "2": "", + "3": "" } }, "1615": { - "SLPS_016_0x_offset": "438304", "image_table_indices": { "1": "-1", "2": "-1", @@ -8572,25 +6359,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[3]", "node_name": "TaK152", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "324", - "2": "-1", - "3": "-1" + "1": "disturbance", + "2": "", + "3": "" } }, "1618": { - "SLPS_016_0x_offset": "422424", "image_table_indices": { "1": "13", "2": "-1", @@ -8599,25 +6379,18 @@ "is_hidden": "19", "media_file": "LAIN05.XA[28]", "node_name": "Lda084", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "186", - "2": "269", - "3": "311" + "1": "misato", + "2": "cold", + "3": "pleasant" } }, "1619": { - "SLPS_016_0x_offset": "422464", "image_table_indices": { "1": "552", "2": "717", @@ -8626,25 +6399,18 @@ "is_hidden": "16", "media_file": "LAIN05.XA[29]", "node_name": "Lda085", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda084", "upgrade_requirement": "2", "words": { - "1": "312", - "2": "65", - "3": "55" + "1": "constancy", + "2": "expression", + "3": "Posi_feelings" } }, "1620": { - "SLPS_016_0x_offset": "422504", "image_table_indices": { "1": "554", "2": "162", @@ -8653,25 +6419,18 @@ "is_hidden": "3", "media_file": "LAIN05.XA[30]", "node_name": "Lda086", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "295", - "2": "293", - "3": "165" + "1": "mail", + "2": "Mr.rabbit", + "3": "illness" } }, "1621": { - "SLPS_016_0x_offset": "422544", "image_table_indices": { "1": "168", "2": "560", @@ -8680,81 +6439,60 @@ "is_hidden": "16", "media_file": "LAIN05.XA[31]", "node_name": "Lda087", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda086", "upgrade_requirement": "2", "words": { - "1": "165", - "2": "221", - "3": "205" + "1": "illness", + "2": "faith", + "3": "doubt" } }, "1622": { - "SLPS_016_0x_offset": "411984", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F020.STR", + "media_file": "F020.STR", "node_name": "Dc1012", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "33", - "2": "34", - "3": "35" + "1": "abuse", + "2": "decision", + "3": "excuse" } } }, "17": { "1700": { - "SLPS_016_0x_offset": "440024", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\INS04.STR", + "media_file": "INS04.STR", "node_name": "SSkn04", - "protocol_lines": { - "1": "47", - "2": "48", - "3": "49", - "4": "50" - }, "site": "A", "title": "mT up-date App.", "type": "7", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1701": { - "SLPS_016_0x_offset": "439624", "image_table_indices": { "1": "-1", "2": "-1", @@ -8763,25 +6501,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[8]", "node_name": "GaTE04", - "protocol_lines": { - "1": "42", - "2": "43", - "3": "44", - "4": "45" - }, "site": "A", "title": "nT APPLICATION", "type": "8", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1703": { - "SLPS_016_0x_offset": "422584", "image_table_indices": { "1": "423", "2": "720", @@ -8790,25 +6521,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[0]", "node_name": "Lda088", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "313", - "2": "92", - "3": "137" + "1": "cUl.attraction", + "2": "time", + "3": "doll" } }, "1704": { - "SLPS_016_0x_offset": "422624", "image_table_indices": { "1": "721", "2": "169", @@ -8817,25 +6541,18 @@ "is_hidden": "16", "media_file": "LAIN06.XA[1]", "node_name": "Lda089", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda088", "upgrade_requirement": "2", "words": { - "1": "186", - "2": "23", - "3": "205" + "1": "misato", + "2": "psychomotor", + "3": "doubt" } }, "1705": { - "SLPS_016_0x_offset": "422664", "image_table_indices": { "1": "722", "2": "574", @@ -8844,52 +6561,38 @@ "is_hidden": "3", "media_file": "LAIN06.XA[2]", "node_name": "Lda090", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "22", - "2": "306", - "3": "314" + "1": "computer", + "2": "painting", + "3": "motive" } }, "1707": { - "SLPS_016_0x_offset": "412304", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F034.STR", + "media_file": "F034.STR", "node_name": "Dc1020", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "53", - "2": "54", - "3": "55" + "1": "prejudice", + "2": "favorite", + "3": "Posi_feelings" } }, "1709": { - "SLPS_016_0x_offset": "434744", "image_table_indices": { "1": "-1", "2": "-1", @@ -8898,25 +6601,18 @@ "is_hidden": "19", "media_file": "LAIN11.XA[9]", "node_name": "TaK063", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "82", - "2": "-1", - "3": "-1" + "1": "tool", + "2": "", + "3": "" } }, "1710": { - "SLPS_016_0x_offset": "438344", "image_table_indices": { "1": "-1", "2": "-1", @@ -8925,25 +6621,18 @@ "is_hidden": "51", "media_file": "LAIN13.XA[4]", "node_name": "TaK153", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "275", - "2": "-1", - "3": "-1" + "1": "think", + "2": "", + "3": "" } }, "1711": { - "SLPS_016_0x_offset": "434784", "image_table_indices": { "1": "-1", "2": "-1", @@ -8952,25 +6641,18 @@ "is_hidden": "19", "media_file": "LAIN11.XA[10]", "node_name": "TaK064", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "333", - "2": "-1", - "3": "-1" + "1": "agreement", + "2": "", + "3": "" } }, "1712": { - "SLPS_016_0x_offset": "422704", "image_table_indices": { "1": "575", "2": "723", @@ -8979,25 +6661,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[3]", "node_name": "Lda091", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "61", - "2": "62", - "3": "315" + "1": "software", + "2": "technology", + "3": "money" } }, "1713": { - "SLPS_016_0x_offset": "422744", "image_table_indices": { "1": "576", "2": "207", @@ -9006,25 +6681,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[4]", "node_name": "Lda092", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "316", - "2": "89", - "3": "110" + "1": "corporation", + "2": "thought", + "3": "room" } }, "1714": { - "SLPS_016_0x_offset": "422784", "image_table_indices": { "1": "208", "2": "581", @@ -9033,25 +6701,18 @@ "is_hidden": "0", "media_file": "LAIN06.XA[5]", "node_name": "Lda093", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda092", "upgrade_requirement": "2", "words": { - "1": "176", - "2": "5", - "3": "317" + "1": "seem ", + "2": "state", + "3": "awareness" } }, "1716": { - "SLPS_016_0x_offset": "422944", "image_table_indices": { "1": "590", "2": "729", @@ -9060,52 +6721,38 @@ "is_hidden": "16", "media_file": "LAIN06.XA[9]", "node_name": "Lda097", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda096", "upgrade_requirement": "2", "words": { - "1": "45", - "2": "102", - "3": "318" + "1": "body", + "2": "mind", + "3": "fall ill" } }, "1717": { - "SLPS_016_0x_offset": "412064", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F024.STR", + "media_file": "F024.STR", "node_name": "Dc1014", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "39", - "2": "40", - "3": "41" + "1": "anxiety", + "2": "intellectual", + "3": "sCh.avoidance" } }, "1719": { - "SLPS_016_0x_offset": "434824", "image_table_indices": { "1": "-1", "2": "-1", @@ -9114,25 +6761,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[11]", "node_name": "TaK065", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "107", - "2": "-1", - "3": "-1" + "1": "obstacle", + "2": "", + "3": "" } }, "1720": { - "SLPS_016_0x_offset": "438384", "image_table_indices": { "1": "-1", "2": "-1", @@ -9141,25 +6781,18 @@ "is_hidden": "67", "media_file": "LAIN13.XA[5]", "node_name": "TaK154", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "406", - "2": "-1", - "3": "-1" + "1": "blessing", + "2": "", + "3": "" } }, "1721": { - "SLPS_016_0x_offset": "422824", "image_table_indices": { "1": "424", "2": "726", @@ -9168,25 +6801,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[6]", "node_name": "Lda094", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "248", - "2": "69", - "3": "136" + "1": "confession", + "2": "communication", + "3": "secret" } }, "1722": { - "SLPS_016_0x_offset": "422864", "image_table_indices": { "1": "727", "2": "209", @@ -9195,25 +6821,18 @@ "is_hidden": "16", "media_file": "LAIN06.XA[7]", "node_name": "Lda095", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda094", "upgrade_requirement": "2", "words": { - "1": "145", - "2": "8", - "3": "59" + "1": "impossible", + "2": "position", + "3": "counter" } }, "1723": { - "SLPS_016_0x_offset": "422904", "image_table_indices": { "1": "728", "2": "589", @@ -9222,27 +6841,20 @@ "is_hidden": "19", "media_file": "LAIN06.XA[8]", "node_name": "Lda096", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "247", - "2": "304", - "3": "272" + "1": "lover", + "2": "together", + "3": "breast" } } }, "18": { "1800": { - "SLPS_016_0x_offset": "423064", "image_table_indices": { "1": "215", "2": "732", @@ -9251,25 +6863,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[12]", "node_name": "Lda100", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "271", - "2": "303", - "3": "160" + "1": "reward", + "2": "violin", + "3": "glad" } }, "1801": { - "SLPS_016_0x_offset": "423104", "image_table_indices": { "1": "302", "2": "216", @@ -9278,25 +6883,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[13]", "node_name": "Lda101", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "95", - "2": "62", - "3": "292" + "1": "kind", + "2": "technology", + "3": "business" } }, "1804": { - "SLPS_016_0x_offset": "434864", "image_table_indices": { "1": "-1", "2": "-1", @@ -9305,25 +6903,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[12]", "node_name": "TaK066", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "2", - "2": "-1", - "3": "-1" + "1": "recognition", + "2": "", + "3": "" } }, "1806": { - "SLPS_016_0x_offset": "422984", "image_table_indices": { "1": "591", "2": "213", @@ -9332,25 +6923,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[10]", "node_name": "Lda098", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "257", - "2": "35", - "3": "136" + "1": "touko", + "2": "excuse", + "3": "secret" } }, "1807": { - "SLPS_016_0x_offset": "423024", "image_table_indices": { "1": "214", "2": "-1", @@ -9359,25 +6943,18 @@ "is_hidden": "0", "media_file": "LAIN06.XA[11]", "node_name": "Lda099", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda098", "upgrade_requirement": "2", "words": { - "1": "292", - "2": "15", - "3": "319" + "1": "business", + "2": "duty", + "3": "despair" } }, "1808": { - "SLPS_016_0x_offset": "423184", "image_table_indices": { "1": "601", "2": "734", @@ -9386,25 +6963,18 @@ "is_hidden": "16", "media_file": "LAIN06.XA[15]", "node_name": "Lda103", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda102", "upgrade_requirement": "3", "words": { - "1": "65", - "2": "43", - "3": "143" + "1": "expression", + "2": "environment", + "3": "imagination" } }, "1809": { - "SLPS_016_0x_offset": "423224", "image_table_indices": { "1": "602", "2": "219", @@ -9413,25 +6983,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[16]", "node_name": "Lda104", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "313", - "2": "320", - "3": "321" + "1": "cUl.attraction", + "2": "cO.unconsious", + "3": "hesitation" } }, "1810": { - "SLPS_016_0x_offset": "423264", "image_table_indices": { "1": "221", "2": "603", @@ -9440,25 +7003,18 @@ "is_hidden": "16", "media_file": "LAIN06.XA[17]", "node_name": "Lda105", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda104", "upgrade_requirement": "3", "words": { - "1": "322", - "2": "186", - "3": "287" + "1": "jealousy", + "2": "misato", + "3": "network" } }, "1811": { - "SLPS_016_0x_offset": "434904", "image_table_indices": { "1": "-1", "2": "-1", @@ -9467,25 +7023,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[13]", "node_name": "TaK067", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "156", - "2": "-1", - "3": "-1" + "1": "deny", + "2": "", + "3": "" } }, "1812": { - "SLPS_016_0x_offset": "438424", "image_table_indices": { "1": "-1", "2": "-1", @@ -9494,25 +7043,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[6]", "node_name": "TaK155", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "20", - "2": "-1", - "3": "-1" + "1": "sanity", + "2": "", + "3": "" } }, "1813": { - "SLPS_016_0x_offset": "434944", "image_table_indices": { "1": "-1", "2": "-1", @@ -9521,25 +7063,18 @@ "is_hidden": "83", "media_file": "LAIN11.XA[14]", "node_name": "TaK068", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "275", - "2": "-1", - "3": "-1" + "1": "think", + "2": "", + "3": "" } }, "1815": { - "SLPS_016_0x_offset": "423144", "image_table_indices": { "1": "733", "2": "599", @@ -9548,25 +7083,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[14]", "node_name": "Lda102", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "186", - "2": "110", - "3": "315" + "1": "misato", + "2": "room", + "3": "money" } }, "1816": { - "SLPS_016_0x_offset": "423304", "image_table_indices": { "1": "222", "2": "737", @@ -9575,25 +7103,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[18]", "node_name": "Lda106", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "113", - "2": "286", - "3": "323" + "1": "self-confidence", + "2": "NAVI", + "3": "exchange" } }, "1817": { - "SLPS_016_0x_offset": "423344", "image_table_indices": { "1": "738", "2": "223", @@ -9602,25 +7123,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[19]", "node_name": "Lda107", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "37", - "2": "4", - "3": "237" + "1": "life", + "2": "phenomenon", + "3": "condition" } }, "1818": { - "SLPS_016_0x_offset": "423384", "image_table_indices": { "1": "739", "2": "609", @@ -9629,25 +7143,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[20]", "node_name": "Lda108", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "306", - "2": "313", - "3": "47" + "1": "painting", + "2": "cUl.attraction", + "3": "instrument" } }, "1819": { - "SLPS_016_0x_offset": "434984", "image_table_indices": { "1": "-1", "2": "-1", @@ -9656,25 +7163,18 @@ "is_hidden": "19", "media_file": "LAIN11.XA[15]", "node_name": "TaK069", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "254", - "2": "-1", - "3": "-1" + "1": "whereabouts", + "2": "", + "3": "" } }, "1820": { - "SLPS_016_0x_offset": "438464", "image_table_indices": { "1": "-1", "2": "-1", @@ -9683,25 +7183,18 @@ "is_hidden": "51", "media_file": "LAIN13.XA[7]", "node_name": "TaK156", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "97", - "2": "-1", - "3": "-1" + "1": "personality", + "2": "", + "3": "" } }, "1821": { - "SLPS_016_0x_offset": "435024", "image_table_indices": { "1": "-1", "2": "-1", @@ -9710,25 +7203,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[16]", "node_name": "TaK070", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "172", - "2": "-1", - "3": "-1" + "1": "engagement", + "2": "", + "3": "" } }, "1822": { - "SLPS_016_0x_offset": "435064", "image_table_indices": { "1": "-1", "2": "-1", @@ -9737,25 +7223,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[17]", "node_name": "TaK071", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "73", - "2": "-1", - "3": "-1" + "1": "action", + "2": "", + "3": "" } }, "1823": { - "SLPS_016_0x_offset": "438504", "image_table_indices": { "1": "-1", "2": "-1", @@ -9764,27 +7243,20 @@ "is_hidden": "67", "media_file": "LAIN13.XA[8]", "node_name": "TaK157", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "249", - "2": "-1", - "3": "-1" + "1": "boredom", + "2": "", + "3": "" } } }, "19": { "1901": { - "SLPS_016_0x_offset": "423424", "image_table_indices": { "1": "610", "2": "740", @@ -9793,25 +7265,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[21]", "node_name": "Lda109", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "257", - "2": "324", - "3": "179" + "1": "touko", + "2": "disturbance", + "3": "research" } }, "1902": { - "SLPS_016_0x_offset": "423464", "image_table_indices": { "1": "611", "2": "226", @@ -9820,25 +7285,18 @@ "is_hidden": "0", "media_file": "LAIN06.XA[22]", "node_name": "Lda110", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda109", "upgrade_requirement": "3", "words": { - "1": "69", - "2": "307", - "3": "257" + "1": "communication", + "2": "cause", + "3": "touko" } }, "1903": { - "SLPS_016_0x_offset": "423504", "image_table_indices": { "1": "227", "2": "612", @@ -9847,25 +7305,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[23]", "node_name": "Lda111", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "208", - "2": "37", - "3": "289" + "1": "family", + "2": "life", + "3": "trouble" } }, "1904": { - "SLPS_016_0x_offset": "423544", "image_table_indices": { "1": "228", "2": "743", @@ -9874,25 +7325,18 @@ "is_hidden": "0", "media_file": "LAIN06.XA[24]", "node_name": "Lda112", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda111", "upgrade_requirement": "3", "words": { - "1": "195", - "2": "219", - "3": "201" + "1": "father", + "2": "mother", + "3": "love" } }, "1905": { - "SLPS_016_0x_offset": "435104", "image_table_indices": { "1": "-1", "2": "-1", @@ -9901,25 +7345,18 @@ "is_hidden": "19", "media_file": "LAIN11.XA[18]", "node_name": "TaK072", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "331", - "2": "-1", - "3": "-1" + "1": "naturally", + "2": "", + "3": "" } }, "1906": { - "SLPS_016_0x_offset": "435144", "image_table_indices": { "1": "-1", "2": "-1", @@ -9928,25 +7365,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[19]", "node_name": "TaK073", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "102", - "2": "-1", - "3": "-1" + "1": "mind", + "2": "", + "3": "" } }, "1907": { - "SLPS_016_0x_offset": "438544", "image_table_indices": { "1": "-1", "2": "-1", @@ -9955,25 +7385,18 @@ "is_hidden": "67", "media_file": "LAIN13.XA[9]", "node_name": "TaK158", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "387", - "2": "-1", - "3": "-1" + "1": "as it is", + "2": "", + "3": "" } }, "1908": { - "SLPS_016_0x_offset": "435224", "image_table_indices": { "1": "-1", "2": "-1", @@ -9982,25 +7405,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[21]", "node_name": "TaK075", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "275", - "2": "-1", - "3": "-1" + "1": "think", + "2": "", + "3": "" } }, "1909": { - "SLPS_016_0x_offset": "438584", "image_table_indices": { "1": "-1", "2": "-1", @@ -10009,25 +7425,18 @@ "is_hidden": "67", "media_file": "LAIN13.XA[10]", "node_name": "TaK159", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "89", - "2": "-1", - "3": "-1" + "1": "thought", + "2": "", + "3": "" } }, "1910": { - "SLPS_016_0x_offset": "423584", "image_table_indices": { "1": "731", "2": "229", @@ -10036,25 +7445,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[25]", "node_name": "Lda113", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "169", - "2": "23", - "3": "81" + "1": "normal", + "2": "psychomotor", + "3": "result" } }, "1911": { - "SLPS_016_0x_offset": "423624", "image_table_indices": { "1": "745", "2": "616", @@ -10063,25 +7465,18 @@ "is_hidden": "0", "media_file": "LAIN06.XA[26]", "node_name": "Lda114", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda113", "upgrade_requirement": "3", "words": { - "1": "169", - "2": "102", - "3": "325" + "1": "normal", + "2": "mind", + "3": "harmful effects" } }, "1912": { - "SLPS_016_0x_offset": "423664", "image_table_indices": { "1": "617", "2": "746", @@ -10090,25 +7485,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[27]", "node_name": "Lda115", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "323", - "2": "107", - "3": "288" + "1": "exchange", + "2": "obstacle", + "3": "telephone" } }, "1913": { - "SLPS_016_0x_offset": "423704", "image_table_indices": { "1": "619", "2": "234", @@ -10117,52 +7505,38 @@ "is_hidden": "0", "media_file": "LAIN06.XA[28]", "node_name": "Lda116", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda115", "upgrade_requirement": "2", "words": { - "1": "309", - "2": "55", - "3": "266" + "1": "mystery", + "2": "Posi_feelings", + "3": "dream" } }, "1914": { - "SLPS_016_0x_offset": "412344", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F035.STR", + "media_file": "F035.STR", "node_name": "Dc1021", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "56", - "2": "8", - "3": "35" + "1": "difference", + "2": "position", + "3": "excuse" } }, "1915": { - "SLPS_016_0x_offset": "435184", "image_table_indices": { "1": "-1", "2": "-1", @@ -10171,25 +7545,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[20]", "node_name": "TaK074", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "166", - "2": "-1", - "3": "-1" + "1": "counselor", + "2": "", + "3": "" } }, "1917": { - "SLPS_016_0x_offset": "439864", "image_table_indices": { "1": "-1", "2": "-1", @@ -10198,25 +7565,18 @@ "is_hidden": "3", "media_file": "LAIN21.XA[14]", "node_name": "P2-06", - "protocol_lines": { - "1": "46", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "9", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "-1", - "2": "-1", - "3": "-1" + "1": "", + "2": "", + "3": "" } }, "1918": { - "SLPS_016_0x_offset": "435264", "image_table_indices": { "1": "-1", "2": "-1", @@ -10225,25 +7585,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[22]", "node_name": "TaK076", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "314", - "2": "-1", - "3": "-1" + "1": "motive", + "2": "", + "3": "" } }, "1919": { - "SLPS_016_0x_offset": "423744", "image_table_indices": { "1": "270", "2": "620", @@ -10252,25 +7605,18 @@ "is_hidden": "19", "media_file": "LAIN06.XA[29]", "node_name": "Lda117", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "295", - "2": "69", - "3": "186" + "1": "mail", + "2": "communication", + "3": "misato" } }, "1920": { - "SLPS_016_0x_offset": "423784", "image_table_indices": { "1": "271", "2": "749", @@ -10279,25 +7625,18 @@ "is_hidden": "16", "media_file": "LAIN06.XA[30]", "node_name": "Lda118", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda117", "upgrade_requirement": "3", "words": { - "1": "287", - "2": "186", - "3": "326" + "1": "network", + "2": "misato", + "3": "selfish" } }, "1921": { - "SLPS_016_0x_offset": "423824", "image_table_indices": { "1": "750", "2": "273", @@ -10306,25 +7645,18 @@ "is_hidden": "3", "media_file": "LAIN06.XA[31]", "node_name": "Lda119", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "295", - "2": "327", - "3": "310" + "1": "mail", + "2": "news-group", + "3": "delete" } }, "1922": { - "SLPS_016_0x_offset": "423864", "image_table_indices": { "1": "751", "2": "623", @@ -10333,27 +7665,20 @@ "is_hidden": "0", "media_file": "LAIN07.XA[0]", "node_name": "Lda120", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda119", "upgrade_requirement": "3", "words": { - "1": "328", - "2": "329", - "3": "330" + "1": "man", + "2": "woman", + "3": "anonymous" } } }, "20": { "2000": { - "SLPS_016_0x_offset": "435544", "image_table_indices": { "1": "-1", "2": "-1", @@ -10362,25 +7687,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[29]", "node_name": "TaK083", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "97", - "2": "-1", - "3": "-1" + "1": "personality", + "2": "", + "3": "" } }, "2001": { - "SLPS_016_0x_offset": "435304", "image_table_indices": { "1": "-1", "2": "-1", @@ -10389,25 +7707,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[23]", "node_name": "TaK077", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "4", - "2": "-1", - "3": "-1" + "1": "phenomenon", + "2": "", + "3": "" } }, "2002": { - "SLPS_016_0x_offset": "438624", "image_table_indices": { "1": "-1", "2": "-1", @@ -10416,25 +7727,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[11]", "node_name": "TaK160", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "45", - "2": "-1", - "3": "-1" + "1": "body", + "2": "", + "3": "" } }, "2004": { - "SLPS_016_0x_offset": "423904", "image_table_indices": { "1": "479", "2": "752", @@ -10443,25 +7747,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[1]", "node_name": "Lda121", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "313", - "2": "135", - "3": "130" + "1": "cUl.attraction", + "2": "friend", + "3": "boast" } }, "2005": { - "SLPS_016_0x_offset": "423944", "image_table_indices": { "1": "625", "2": "276", @@ -10470,25 +7767,18 @@ "is_hidden": "16", "media_file": "LAIN07.XA[2]", "node_name": "Lda122", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda121", "upgrade_requirement": "3", "words": { - "1": "322", - "2": "55", - "3": "143" + "1": "jealousy", + "2": "Posi_feelings", + "3": "imagination" } }, "2006": { - "SLPS_016_0x_offset": "423984", "image_table_indices": { "1": "480", "2": "627", @@ -10497,25 +7787,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[3]", "node_name": "Lda123", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "32", - "2": "265", - "3": "129" + "1": "admiration", + "2": "abnormal", + "3": "consultation" } }, "2007": { - "SLPS_016_0x_offset": "424024", "image_table_indices": { "1": "283", "2": "755", @@ -10524,25 +7807,18 @@ "is_hidden": "16", "media_file": "LAIN07.XA[4]", "node_name": "Lda124", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda123", "upgrade_requirement": "3", "words": { - "1": "331", - "2": "14", - "3": "278" + "1": "naturally", + "2": "noise", + "3": "unpleasant" } }, "2008": { - "SLPS_016_0x_offset": "424184", "image_table_indices": { "1": "636", "2": "287", @@ -10551,52 +7827,38 @@ "is_hidden": "16", "media_file": "LAIN07.XA[8]", "node_name": "Lda128", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda127", "upgrade_requirement": "3", "words": { - "1": "288", - "2": "334", - "3": "10" + "1": "telephone", + "2": "wait for", + "3": "chaos" } }, "2009": { - "SLPS_016_0x_offset": "412584", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F042.STR", + "media_file": "F042.STR", "node_name": "Dc1027", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "68", - "2": "5", - "3": "69" + "1": "simplicity", + "2": "state", + "3": "communication" } }, "2010": { - "SLPS_016_0x_offset": "415224", "image_table_indices": { "1": "122", "2": "248", @@ -10605,25 +7867,18 @@ "is_hidden": "3", "media_file": "LAIN02.XA[3]", "node_name": "Cou036", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "153", - "2": "97", - "3": "190" + "1": "ego", + "2": "personality", + "3": "immature" } }, "2011": { - "SLPS_016_0x_offset": "416984", "image_table_indices": { "1": "387", "2": "567", @@ -10632,25 +7887,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[0]", "node_name": "Dia027", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou036", "upgrade_requirement": "2", "words": { - "1": "225", - "2": "209", - "3": "81" + "1": "cheerful", + "2": "no problem", + "3": "result" } }, "2012": { - "SLPS_016_0x_offset": "435344", "image_table_indices": { "1": "-1", "2": "-1", @@ -10659,25 +7907,18 @@ "is_hidden": "19", "media_file": "LAIN11.XA[24]", "node_name": "TaK078", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "392", - "2": "-1", - "3": "-1" + "1": "treasure", + "2": "", + "3": "" } }, "2013": { - "SLPS_016_0x_offset": "424064", "image_table_indices": { "1": "756", "2": "284", @@ -10686,25 +7927,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[5]", "node_name": "Lda125", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "332", - "2": "210", - "3": "298" + "1": "plagiarism", + "2": "negative", + "3": "regrettable" } }, "2014": { - "SLPS_016_0x_offset": "424104", "image_table_indices": { "1": "757", "2": "634", @@ -10713,25 +7947,18 @@ "is_hidden": "16", "media_file": "LAIN07.XA[6]", "node_name": "Lda126", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda125", "upgrade_requirement": "3", "words": { - "1": "186", - "2": "144", - "3": "333" + "1": "misato", + "2": "understanding", + "3": "agreement" } }, "2015": { - "SLPS_016_0x_offset": "424144", "image_table_indices": { "1": "635", "2": "758", @@ -10740,25 +7967,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[7]", "node_name": "Lda127", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "306", - "2": "17", - "3": "92" + "1": "painting", + "2": "silence", + "3": "time" } }, "2016": { - "SLPS_016_0x_offset": "424304", "image_table_indices": { "1": "762", "2": "290", @@ -10767,25 +7987,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[11]", "node_name": "Lda131", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "274", - "2": "336", - "3": "337" + "1": "note", + "2": "sorrow", + "3": "side" } }, "2017": { - "SLPS_016_0x_offset": "424344", "image_table_indices": { "1": "763", "2": "640", @@ -10794,25 +8007,18 @@ "is_hidden": "16", "media_file": "LAIN07.XA[12]", "node_name": "Lda132", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda131", "upgrade_requirement": "3", "words": { - "1": "55", - "2": "186", - "3": "119" + "1": "Posi_feelings", + "2": "misato", + "3": "impulse" } }, "2019": { - "SLPS_016_0x_offset": "435504", "image_table_indices": { "1": "-1", "2": "-1", @@ -10821,25 +8027,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[28]", "node_name": "TaK082", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "93", - "2": "-1", - "3": "-1" + "1": "individuality", + "2": "", + "3": "" } }, "2020": { - "SLPS_016_0x_offset": "435384", "image_table_indices": { "1": "-1", "2": "-1", @@ -10848,25 +8047,18 @@ "is_hidden": "35", "media_file": "LAIN11.XA[25]", "node_name": "TaK079", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "89", - "2": "-1", - "3": "-1" + "1": "thought", + "2": "", + "3": "" } }, "2021": { - "SLPS_016_0x_offset": "438664", "image_table_indices": { "1": "-1", "2": "-1", @@ -10875,25 +8067,18 @@ "is_hidden": "51", "media_file": "LAIN13.XA[12]", "node_name": "TaK161", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "184", - "2": "-1", - "3": "-1" + "1": "identification", + "2": "", + "3": "" } }, "2022": { - "SLPS_016_0x_offset": "424224", "image_table_indices": { "1": "628", "2": "637", @@ -10902,25 +8087,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[9]", "node_name": "Lda129", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "204", - "2": "332", - "3": "335" + "1": "rumor", + "2": "plagiarism", + "3": "believe" } }, "2023": { - "SLPS_016_0x_offset": "424264", "image_table_indices": { "1": "289", "2": "761", @@ -10929,27 +8107,20 @@ "is_hidden": "16", "media_file": "LAIN07.XA[10]", "node_name": "Lda130", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda129", "upgrade_requirement": "3", "words": { - "1": "288", - "2": "237", - "3": "97" + "1": "telephone", + "2": "condition", + "3": "personality" } } }, "21": { "2100": { - "SLPS_016_0x_offset": "424424", "image_table_indices": { "1": "642", "2": "294", @@ -10958,25 +8129,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[14]", "node_name": "Lda134", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "89", - "2": "320", - "3": "2" + "1": "thought", + "2": "cO.unconsious", + "3": "recognition" } }, "2101": { - "SLPS_016_0x_offset": "424464", "image_table_indices": { "1": "295", "2": "643", @@ -10985,25 +8149,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[15]", "node_name": "Lda135", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "21", - "2": "205", - "3": "83" + "1": "home page", + "2": "doubt", + "3": "Nega feelings" } }, "2102": { - "SLPS_016_0x_offset": "424504", "image_table_indices": { "1": "296", "2": "767", @@ -11012,25 +8169,18 @@ "is_hidden": "16", "media_file": "LAIN07.XA[16]", "node_name": "Lda136", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda135", "upgrade_requirement": "3", "words": { - "1": "205", - "2": "63", - "3": "167" + "1": "doubt", + "2": "variety", + "3": "hallucination" } }, "2104": { - "SLPS_016_0x_offset": "435424", "image_table_indices": { "1": "-1", "2": "-1", @@ -11039,25 +8189,18 @@ "is_hidden": "83", "media_file": "LAIN11.XA[26]", "node_name": "TaK080", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "181", - "2": "-1", - "3": "-1" + "1": "retrieval", + "2": "", + "3": "" } }, "2105": { - "SLPS_016_0x_offset": "435464", "image_table_indices": { "1": "-1", "2": "-1", @@ -11066,25 +8209,18 @@ "is_hidden": "67", "media_file": "LAIN11.XA[27]", "node_name": "TaK081", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "73", - "2": "-1", - "3": "-1" + "1": "action", + "2": "", + "3": "" } }, "2106": { - "SLPS_016_0x_offset": "438704", "image_table_indices": { "1": "-1", "2": "-1", @@ -11093,25 +8229,18 @@ "is_hidden": "67", "media_file": "LAIN13.XA[13]", "node_name": "TaK162", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "254", - "2": "-1", - "3": "-1" + "1": "whereabouts", + "2": "", + "3": "" } }, "2107": { - "SLPS_016_0x_offset": "424384", "image_table_indices": { "1": "641", "2": "764", @@ -11120,25 +8249,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[13]", "node_name": "Lda133", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "64", - "2": "338", - "3": "339" + "1": "record", + "2": "magazine", + "3": "idea" } }, "2108": { - "SLPS_016_0x_offset": "424544", "image_table_indices": { "1": "768", "2": "297", @@ -11147,25 +8269,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[17]", "node_name": "Lda137", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "338", - "2": "69", - "3": "299" + "1": "magazine", + "2": "communication", + "3": "peace of mind" } }, "2109": { - "SLPS_016_0x_offset": "424584", "image_table_indices": { "1": "629", "2": "646", @@ -11174,25 +8289,18 @@ "is_hidden": "19", "media_file": "LAIN07.XA[18]", "node_name": "Lda138", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "124", - "2": "135", - "3": "268" + "1": "transfer", + "2": "friend", + "3": "sadness" } }, "2110": { - "SLPS_016_0x_offset": "424624", "image_table_indices": { "1": "649", "2": "771", @@ -11201,25 +8309,18 @@ "is_hidden": "16", "media_file": "LAIN07.XA[19]", "node_name": "Lda139", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda138", "upgrade_requirement": "3", "words": { - "1": "204", - "2": "217", - "3": "12" + "1": "rumor", + "2": "hatred ", + "3": "indifference" } }, "2112": { - "SLPS_016_0x_offset": "415264", "image_table_indices": { "1": "140", "2": "341", @@ -11228,25 +8329,18 @@ "is_hidden": "3", "media_file": "LAIN02.XA[4]", "node_name": "Cou037", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "70", - "2": "28", - "3": "191" + "1": "therapy", + "2": "recurrence", + "3": "sleepless" } }, "2113": { - "SLPS_016_0x_offset": "417024", "image_table_indices": { "1": "568", "2": "388", @@ -11255,25 +8349,18 @@ "is_hidden": "0", "media_file": "LAIN03.XA[1]", "node_name": "Dia028", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou037", "upgrade_requirement": "2", "words": { - "1": "226", - "2": "207", - "3": "20" + "1": "Dr.takashima", + "2": "client", + "3": "sanity" } }, "2115": { - "SLPS_016_0x_offset": "438744", "image_table_indices": { "1": "-1", "2": "-1", @@ -11282,25 +8369,18 @@ "is_hidden": "67", "media_file": "LAIN13.XA[14]", "node_name": "TaK163", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "398", - "2": "-1", - "3": "-1" + "1": "not satisfied", + "2": "", + "3": "" } }, "2117": { - "SLPS_016_0x_offset": "424664", "image_table_indices": { "1": "663", "2": "300", @@ -11309,25 +8389,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[20]", "node_name": "Lda140", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "280", - "2": "16", - "3": "135" + "1": "solitude", + "2": "school", + "3": "friend" } }, "2118": { - "SLPS_016_0x_offset": "424704", "image_table_indices": { "1": "301", "2": "650", @@ -11336,25 +8409,18 @@ "is_hidden": "0", "media_file": "LAIN07.XA[21]", "node_name": "Lda141", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda140", "upgrade_requirement": "3", "words": { - "1": "135", - "2": "92", - "3": "105" + "1": "friend", + "2": "time", + "3": "necessity" } }, "2119": { - "SLPS_016_0x_offset": "424744", "image_table_indices": { "1": "231", "2": "774", @@ -11363,25 +8429,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[22]", "node_name": "Lda142", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "9", - "2": "107", - "3": "154" + "1": "moving", + "2": "obstacle", + "3": "special" } }, "2120": { - "SLPS_016_0x_offset": "424784", "image_table_indices": { "1": "775", "2": "303", @@ -11390,25 +8449,18 @@ "is_hidden": "0", "media_file": "LAIN07.XA[23]", "node_name": "Lda143", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda142", "upgrade_requirement": "3", "words": { - "1": "288", - "2": "337", - "3": "340" + "1": "telephone", + "2": "side", + "3": "regret" } }, "2121": { - "SLPS_016_0x_offset": "435624", "image_table_indices": { "1": "-1", "2": "-1", @@ -11417,27 +8469,20 @@ "is_hidden": "19", "media_file": "LAIN11.XA[31]", "node_name": "TaK085", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "2", - "2": "-1", - "3": "-1" + "1": "recognition", + "2": "", + "3": "" } } }, "22": { "2200": { - "SLPS_016_0x_offset": "435584", "image_table_indices": { "1": "-1", "2": "-1", @@ -11446,25 +8491,18 @@ "is_hidden": "51", "media_file": "LAIN11.XA[30]", "node_name": "TaK084", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "92", - "2": "-1", - "3": "-1" + "1": "time", + "2": "", + "3": "" } }, "2201": { - "SLPS_016_0x_offset": "438784", "image_table_indices": { "1": "-1", "2": "-1", @@ -11473,25 +8511,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[15]", "node_name": "TaK164", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "237", - "2": "-1", - "3": "-1" + "1": "condition", + "2": "", + "3": "" } }, "2202": { - "SLPS_016_0x_offset": "424824", "image_table_indices": { "1": "776", "2": "654", @@ -11500,25 +8531,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[24]", "node_name": "Lda144", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "307", - "2": "144", - "3": "222" + "1": "cause", + "2": "understanding", + "3": "interest" } }, "2203": { - "SLPS_016_0x_offset": "424864", "image_table_indices": { "1": "656", "2": "777", @@ -11527,25 +8551,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[25]", "node_name": "Lda145", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "119", - "2": "195", - "3": "307" + "1": "impulse", + "2": "father", + "3": "cause" } }, "2204": { - "SLPS_016_0x_offset": "424904", "image_table_indices": { "1": "657", "2": "306", @@ -11554,25 +8571,18 @@ "is_hidden": "0", "media_file": "LAIN07.XA[26]", "node_name": "Lda146", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda145", "upgrade_requirement": "3", "words": { - "1": "43", - "2": "169", - "3": "2" + "1": "environment", + "2": "normal", + "3": "recognition" } }, "2205": { - "SLPS_016_0x_offset": "435664", "image_table_indices": { "1": "-1", "2": "-1", @@ -11581,25 +8591,18 @@ "is_hidden": "35", "media_file": "LAIN12.XA[0]", "node_name": "TaK086", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "62", - "2": "-1", - "3": "-1" + "1": "technology", + "2": "", + "3": "" } }, "2207": { - "SLPS_016_0x_offset": "438824", "image_table_indices": { "1": "-1", "2": "-1", @@ -11608,25 +8611,18 @@ "is_hidden": "51", "media_file": "LAIN13.XA[16]", "node_name": "TaK165", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "393", - "2": "-1", - "3": "-1" + "1": "uneasiness", + "2": "", + "3": "" } }, "2208": { - "SLPS_016_0x_offset": "435704", "image_table_indices": { "1": "-1", "2": "-1", @@ -11635,25 +8631,18 @@ "is_hidden": "19", "media_file": "LAIN12.XA[1]", "node_name": "TaK087", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "273", - "2": "-1", - "3": "-1" + "1": "sexuality", + "2": "", + "3": "" } }, "2209": { - "SLPS_016_0x_offset": "435744", "image_table_indices": { "1": "-1", "2": "-1", @@ -11662,25 +8651,18 @@ "is_hidden": "83", "media_file": "LAIN12.XA[2]", "node_name": "TaK088", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "360", - "2": "-1", - "3": "-1" + "1": "contact", + "2": "", + "3": "" } }, "2210": { - "SLPS_016_0x_offset": "438864", "image_table_indices": { "1": "-1", "2": "-1", @@ -11689,25 +8671,18 @@ "is_hidden": "51", "media_file": "LAIN13.XA[17]", "node_name": "TaK166", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "390", - "2": "-1", - "3": "-1" + "1": "farewell", + "2": "", + "3": "" } }, "2211": { - "SLPS_016_0x_offset": "424944", "image_table_indices": { "1": "307", "2": "659", @@ -11716,25 +8691,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[27]", "node_name": "Lda147", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "210", - "2": "278", - "3": "91" + "1": "negative", + "2": "unpleasant", + "3": "patient" } }, "2212": { - "SLPS_016_0x_offset": "424984", "image_table_indices": { "1": "308", "2": "780", @@ -11743,25 +8711,18 @@ "is_hidden": "0", "media_file": "LAIN07.XA[28]", "node_name": "Lda148", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda147", "upgrade_requirement": "3", "words": { - "1": "341", - "2": "285", - "3": "205" + "1": "existence cause", + "2": "meaning", + "3": "doubt" } }, "2214": { - "SLPS_016_0x_offset": "435824", "image_table_indices": { "1": "-1", "2": "-1", @@ -11770,25 +8731,18 @@ "is_hidden": "83", "media_file": "LAIN12.XA[4]", "node_name": "TaK090", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "50", - "2": "-1", - "3": "-1" + "1": "world", + "2": "", + "3": "" } }, "2215": { - "SLPS_016_0x_offset": "438904", "image_table_indices": { "1": "-1", "2": "-1", @@ -11797,25 +8751,18 @@ "is_hidden": "35", "media_file": "LAIN13.XA[18]", "node_name": "TaK167", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "341", - "2": "-1", - "3": "-1" + "1": "existence cause", + "2": "", + "3": "" } }, "2216": { - "SLPS_016_0x_offset": "435784", "image_table_indices": { "1": "-1", "2": "-1", @@ -11824,52 +8771,38 @@ "is_hidden": "83", "media_file": "LAIN12.XA[3]", "node_name": "TaK089", - "protocol_lines": { - "1": "41", - "2": "41", - "3": "41", - "4": "41" - }, "site": "A", "title": "", "type": "6", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "107", - "2": "-1", - "3": "-1" + "1": "obstacle", + "2": "", + "3": "" } }, "2217": { - "SLPS_016_0x_offset": "412464", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F038.STR", + "media_file": "F038.STR", "node_name": "Dc1024", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "63", - "2": "64", - "3": "5" + "1": "variety", + "2": "record", + "3": "state" } }, "2218": { - "SLPS_016_0x_offset": "430304", "image_table_indices": { "1": "369", "2": "605", @@ -11878,52 +8811,38 @@ "is_hidden": "3", "media_file": "LAIN09.XA[10]", "node_name": "Tda044", - "protocol_lines": { - "1": "39", - "2": "1", - "3": "40", - "4": "3" - }, "site": "A", "title": "TOUKO's DIARY", "type": "2", "unlocked_by": "-1", "upgrade_requirement": "0", "words": { - "1": "381", - "2": "404", - "3": "36" + "1": "lain", + "2": "quiet", + "3": "knowledge" } }, "2219": { - "SLPS_016_0x_offset": "412624", "image_table_indices": { "1": "-1", "2": "-1", "3": "-1" }, "is_hidden": "3", - "media_file": "MOVIE\\F043.STR", + "media_file": "F043.STR", "node_name": "Dc1028", - "protocol_lines": { - "1": "0", - "2": "1", - "3": "2", - "4": "3" - }, "site": "A", "title": "DATA of CLN01", "type": "4", "unlocked_by": "-1", "upgrade_requirement": "1", "words": { - "1": "70", - "2": "71", - "3": "11" + "1": "therapy", + "2": "psychosis", + "3": "prompt" } }, "2220": { - "SLPS_016_0x_offset": "425024", "image_table_indices": { "1": "781", "2": "309", @@ -11932,25 +8851,18 @@ "is_hidden": "3", "media_file": "LAIN07.XA[29]", "node_name": "Lda149", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "-1", "upgrade_requirement": "3", "words": { - "1": "67", - "2": "253", - "3": "310" + "1": "will", + "2": "kyoko", + "3": "delete" } }, "2221": { - "SLPS_016_0x_offset": "425064", "image_table_indices": { "1": "782", "2": "662", @@ -11959,25 +8871,18 @@ "is_hidden": "0", "media_file": "LAIN07.XA[30]", "node_name": "Lda150", - "protocol_lines": { - "1": "37", - "2": "21", - "3": "38", - "4": "35" - }, "site": "A", "title": "", "type": "0", "unlocked_by": "Lda149", "upgrade_requirement": "3", "words": { - "1": "258", - "2": "83", - "3": "280" + "1": "library", + "2": "Nega feelings", + "3": "solitude" } }, "2222": { - "SLPS_016_0x_offset": "415304", "image_table_indices": { "1": "35", "2": "145", @@ -11986,25 +8891,18 @@ "is_hidden": "3", "media_file": "LAIN02.XA[5]", "node_name": "Cou038", - "protocol_lines": { - "1": "7", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "COUNSELING REC.", "type": "3", "unlocked_by": "-1", "upgrade_requirement": "2", "words": { - "1": "71", - "2": "192", - "3": "179" + "1": "psychosis", + "2": "function", + "3": "research" } }, "2223": { - "SLPS_016_0x_offset": "417064", "image_table_indices": { "1": "585", "2": "441", @@ -12013,21 +8911,15 @@ "is_hidden": "0", "media_file": "LAIN03.XA[2]", "node_name": "Dia029", - "protocol_lines": { - "1": "9", - "2": "1", - "3": "8", - "4": "3" - }, "site": "A", "title": "", "type": "5", "unlocked_by": "Cou038", "upgrade_requirement": "2", "words": { - "1": "69", - "2": "64", - "3": "227" + "1": "communication", + "2": "record", + "3": "harassment" } } } diff --git a/src/resources/string_table.json b/src/resources/string_table.json deleted file mode 100644 index ee65c52..0000000 --- a/src/resources/string_table.json +++ /dev/null @@ -1,470 +0,0 @@ -{ - "0": "electric wire", - "1": "sky", - "10": "chaos", - "100": "aggression", - "101": "decision ", - "102": "mind", - "103": "murder intent", - "104": "suicide", - "105": "necessity", - "107": "utilization", - "107": "obstacle", - "108": "be frightened", - "109": "birth", - "11": "prompt", - "110": "room", - "111": "never realize", - "112": "absent", - "113": "self-confidence", - "114": "absorption", - "115": "trance", - "116": "soothing", - "117": "primacy", - "118": "vain person", - "119": "impulse", - "12": "indifference", - "120": "useless", - "121": "will&existence", - "122": "lower half", - "123": "wish", - "124": "transfer", - "125": "open the nExt.", - "126": "black tea", - "127": "milk", - "128": "dislike", - "129": "consultation", - "13": "human being", - "130": "boast", - "131": "advice", - "132": "desire", - "133": "investigation", - "134": "relax", - "135": "friend", - "136": "secret", - "137": "doll", - "138": "be tired", - "139": "study", - "14": "noise", - "140": "worry", - "141": "melancholy", - "142": "sLf-persecution", - "143": "imagination", - "144": "understanding", - "145": "impossible", - "146": "laboratory", - "147": "danger", - "148": "A.hallucination", - "149": "sensitivity", - "15": "duty", - "150": "needless", - "151": "diary", - "152": "complaint", - "153": "ego", - "154": "special", - "155": "elusion", - "156": "deny", - "157": "fiction", - "158": "intrapsychic", - "159": "apology", - "16": "school", - "160": "glad", - "161": "birthday", - "162": "present", - "163": "eye", - "164": "delusion", - "165": "illness", - "166": "counselor", - "167": "hallucination", - "168": "stress", - "169": "normal", - "17": "silence", - "170": "favorable turn", - "171": "deterioration", - "172": "engagement", - "173": "drunk", - "174": "hairstyle", - "175": "charm", - "176": "seem ", - "177": "image", - "178": "explanation", - "179": "research", - "18": "smile", - "180": "remembrance", - "181": "retrieval", - "182": "resignation", - "183": "happiness", - "184": "identification", - "185": "experience", - "186": "misato", - "187": "idolize", - "188": "alienation", - "189": "missing self", - "19": "character", - "190": "immature", - "191": "sleepless", - "192": "function", - "193": "odd jobs", - "194": "treatise", - "195": "father", - "196": "existence", - "197": "proof", - "198": "fact", - "199": "private tutor", - "2": "recognition", - "20": "sanity", - "200": "kaori", - "201": "love", - "202": "area", - "203": "God", - "204": "rumor", - "205": "doubt", - "206": "lonely", - "207": "client", - "208": "family", - "209": "no problem", - "21": "home page", - "210": "negative", - "211": "impression", - "212": "symptom", - "213": "game", - "214": "complex", - "215": "pupil", - "216": "conflict", - "217": "hatred ", - "218": "purpose", - "219": "mother", - "22": "computer", - "220": "distrust", - "221": "faith", - "222": "interest", - "223": "object", - "224": "longing", - "225": "cheerful", - "226": "Dr.takashima", - "227": "harassment", - "228": "chief of bureau", - "229": "classmate", - "23": "psychomotor", - "230": "problem", - "231": "neutrality", - "232": "charge", - "233": "restoration", - "234": "ethics", - "235": "lead", - "236": "hysterics", - "237": "condition", - "238": "amnesia", - "239": "self-rating", - "24": "exercise", - "240": "look good on", - "241": "hunch", - "242": "tachibana", - "243": "answer", - "244": "scold", - "245": "habit", - "246": "glasses", - "247": "lover", - "248": "confession", - "249": "boredom", - "25": "be active", - "250": "makeup", - "251": "common", - "252": "wretched", - "253": "kyoko", - "254": "whereabouts", - "255": "distortion", - "256": "conversion", - "257": "touko", - "258": "library", - "259": "talk with", - "26": "memories", - "260": "come in sight", - "261": "tomokun", - "262": "alright", - "263": "boy", - "264": "natural", - "265": "abnormal", - "266": "dream", - "267": "anger", - "268": "sadness", - "269": "cold", - "27": "amusing", - "270": "cake", - "271": "reward", - "272": "breast", - "273": "sexuality", - "274": "note", - "275": "think", - "276": "prohibition", - "277": "souvenir", - "278": "unpleasant", - "279": "meanness", - "28": "recurrence", - "280": "solitude", - "281": "graduation", - "282": "expectation", - "283": "middle school", - "284": "neglect", - "285": "meaning", - "286": "NAVI", - "287": "network", - "288": "telephone", - "289": "trouble", - "29": "memory", - "290": "business trip", - "291": "seeing off", - "292": "business", - "293": "Mr.rabbit", - "294": "footprint", - "295": "mail", - "296": "open", - "297": "revenge", - "298": "regrettable", - "299": "peace of mind", - "3": "pretend", - "30": "bad atmosphere", - "300": "transfiguration", - "301": "agree", - "302": "extra. lesson", - "303": "violin", - "304": "together", - "305": "monopoly", - "306": "painting", - "307": "cause", - "308": "seek", - "309": "mystery", - "31": "accept", - "310": "delete", - "311": "pleasant", - "312": "constancy", - "313": "cUl.attraction", - "314": "motive", - "315": "money", - "316": "corporation", - "317": "awareness", - "318": "fall ill", - "319": "despair", - "32": "admiration", - "320": "cO.unconsious", - "321": "hesitation", - "322": "jealousy", - "323": "exchange", - "324": "disturbance", - "325": "harmful effects", - "326": "selfish", - "327": "news-group", - "328": "man", - "329": "woman", - "33": "abuse", - "330": "anonymous", - "331": "naturally", - "332": "plagiarism", - "333": "agreement", - "334": "wait for", - "335": "believe", - "336": "sorrow", - "337": "side", - "338": "magazine", - "339": "idea", - "34": "decision", - "340": "regret", - "341": "existence cause", - "342": "bed", - "343": "smell", - "344": "wired", - "345": "companion", - "346": "data", - "347": "observation", - "348": "address", - "349": "illusion", - "35": "excuse", - "350": "divorce", - "351": "hug", - "352": "cry", - "353": "parting", - "354": "weed", - "355": "swing", - "356": "grudge", - "357": "ant", - "358": "cracking", - "359": "renewal", - "36": "knowledge", - "360": "contact", - "361": "feature", - "362": "robot", - "363": "limitation", - "364": "evolution", - "365": "interspersed", - "366": "lie", - "367": "proto", - "368": "misunderstand", - "369": "parts", - "37": "life", - "370": "excitement", - "371": "home", - "372": "Oh my God.", - "373": "bug", - "374": "access", - "375": "mischief", - "376": "permission", - "377": "help", - "378": "nonsense", - "379": "notice", - "38": "pursuit", - "380": "police", - "381": "lain", - "382": "painful", - "383": "takeshi", - "384": "cool", - "385": "suppression", - "386": "diet", - "387": "as it is", - "388": "in the future", - "389": "care", - "39": "anxiety", - "390": "farewell", - "391": "congratulations", - "392": "treasure", - "393": "uneasiness", - "394": "leave alone", - "395": "harumi", - "396": "marriage", - "397": "kanako", - "398": "not satisfied", - "399": "sexual", - "4": "phenomenon", - "40": "intellectual", - "400": "unstable", - "401": "despise", - "402": "flower", - "403": "obscenity", - "404": "quiet", - "405": "lunch", - "406": "blessing", - "407": "envy", - "408": "yoshida", - "409": "health imple.", - "41": "sCh.avoidance", - "410": "point out", - "411": "RML", - "412": "ring", - "413": "control", - "414": "prayer", - "415": "betrayal", - "416": "persuasion", - "417": "DATA of CLN01", - "418": "authorized_il", - "419": "active_file:lv", - "42": "apprehension", - "420": "ftp/tl.S_server", - "421": "DATA of CLN-1", - "422": "DATA of CLN00", - "423": "101", - "424": "COUNSELING_REC.", - "425": "downloaded file", - "426": "DIAGNOSIS_CLN01", - "427": "DIAGNOSIS_CLN00", - "428": "RESEARCH_\"Ma\"", - "429": "ftp/poa_server", - "43": "environment", - "430": "NEWS_SHOW", - "431": "talking_F#00021", - "432": "talking_F#00381", - "433": "talking_F#01980", - "434": "talking_F#04522", - "435": "talking_F#10294", - "436": "talking_F#15413", - "437": "network_voices?", - "438": "anonymous_user", - "439": "***unknown", - "44": "individuation", - "440": "ftp/**%#\"673\"", - "441": "ftp/**76%373\"", - "442": "ftp/52\"**3\"", - "443": "ftp/%2\"53\"", - "444": "ftp/006%3", - "445": "ftp/*4451%\"", - "446": "ftp/789.235\"", - "447": "ftp/121.%%0", - "448": "ftp/078.123%\"", - "449": "ftp/\"\"%#808", - "45": "body", - "450": "RESEARCH_\"Ky\"", - "451": "decoded file:", - "452": "ftp/tl.L_server", - "453": "RESEARCH_\"Ka\"", - "454": "lain's_DIARY", - "455": "active_file:", - "456": "TOUKO's_DIARY", - "457": "decoded file:t", - "458": "", - "459": "nT APPLICATION", - "46": "look back on", - "460": "network tool", - "461": "changing site", - "462": " quarter of GP", - "463": "POLY-TAN PARTS", - "464": "mT up-date App.", - "465": "movie tool", - "466": "playing movie", - "467": "freeware", - "47": "instrument", - "48": "feeling", - "49": "oral", - "5": "state", - "50": "world", - "51": "psychiatrist", - "52": "psychotherapy", - "53": "prejudice", - "54": "favorite", - "55": "Posi_feelings", - "56": "difference", - "57": "try hard", - "58": "program", - "59": "counter", - "6": "be settled", - "60": "trap", - "61": "software", - "62": "technology", - "63": "variety", - "64": "record", - "65": "expression", - "66": "close", - "67": "will", - "68": "simplicity", - "69": "communication", - "7": "comparison", - "70": "therapy", - "71": "psychosis", - "72": "trial", - "73": "action", - "74": "conceal", - "75": "copy", - "76": "migration", - "77": "agent", - "78": "factory", - "79": "immortality", - "8": "position", - "80": "possible", - "81": "result", - "82": "tool", - "83": "Nega feelings", - "84": "EEG", - "85": "manufacture", - "86": "joint", - "87": "reaction", - "88": "compensation", - "89": "thought", - "9": "moving", - "90": "walk through", - "91": "patient", - "92": "time", - "93": "individuality", - "94": "greeting", - "95": "kind", - "96": "elegance", - "97": "personality", - "98": "regimen", - "99": "kill" -} diff --git a/src/scenes/MainScene.tsx b/src/scenes/MainScene.tsx index 2493d0f..3856374 100644 --- a/src/scenes/MainScene.tsx +++ b/src/scenes/MainScene.tsx @@ -25,11 +25,6 @@ const MainScene = () => { const setLainMoveState = useLainStore((state) => state.setLainMoveState); const setActiveNodeHudId = useHudStore((state) => state.setId); - useEffect(() => { - setLainMoveState("standing"); - setActiveNodeHudId("fg_hud_1"); - }, [setActiveNodeHudId, setLainMoveState]); - return ( diff --git a/src/scenes/MediaScene.tsx b/src/scenes/MediaScene.tsx index 7b6227b..cff020b 100644 --- a/src/scenes/MediaScene.tsx +++ b/src/scenes/MediaScene.tsx @@ -1,4 +1,4 @@ -import React, { useCallback, useEffect, useMemo } from "react"; +import React, { useCallback, useEffect, useMemo, useState } from "react"; import { useLevelSelectionStore, useLevelStore, @@ -16,11 +16,11 @@ import { OrbitControls } from "@react-three/drei"; import Images from "../components/MediaScene/Images"; import YellowTextRenderer from "../components/TextRenderer/YellowTextRenderer"; import MediumLetter from "../components/TextRenderer/MediumLetter"; -import { a } from "@react-spring/three"; import site_a from "../resources/site_a.json"; import { SiteType } from "../components/MainScene/Site"; const MediaScene = () => { + const [textVisible, setTextVisible] = useState(false); const mediaComponentMatrixIndices = useMediaStore( (state) => state.componentMatrixIndices ); @@ -28,8 +28,9 @@ const MediaScene = () => { const activeNodeId = useNodeStore((state) => state.activeNodeState.id); const activeLevel = useLevelStore((state) => state.activeLevel); - const activeNodeName = (site_a as SiteType)[activeLevel][activeNodeId] - .node_name; + const activeNodeData = (site_a as SiteType)[activeLevel][activeNodeId]; + const activeNodeName = activeNodeData.node_name; + const activeNodeMedia = activeNodeData.media_file; const activeMediaComponent = useMediaStore( useCallback( @@ -46,6 +47,13 @@ const MediaScene = () => { useEffect(() => { document.getElementsByTagName("canvas")[0].className = "media-scene-background"; + setTimeout(() => { + setTextVisible(true); + }, 800); + + return () => { + setTextVisible(false); + }; }, []); return ( @@ -54,8 +62,6 @@ const MediaScene = () => { - - @@ -66,11 +72,19 @@ const MediaScene = () => { ))} - + - - + {activeNodeMedia.includes("XA") ? ( + <> + + + + {" "} + + ) : ( + <> + )} ); diff --git a/src/store.ts b/src/store.ts index 4432073..07c40c4 100644 --- a/src/store.ts +++ b/src/store.ts @@ -58,6 +58,7 @@ type StarfieldState = { }; type SiteState = { + currentSite: "a" | "b"; transformState: { posY: number; rotY: number; @@ -84,8 +85,6 @@ type MiddleRingState = { type MediaWordState = { posStateIdx: number; - words: string[]; - setWords: (to: string[]) => void; setPosStateIdx: (to: number) => void; resetPosStateIdx: () => void; }; @@ -271,6 +270,7 @@ export const useStarfieldStore = create((set) => ({ export const useSiteStore = create( combine( { + currentSite: "a", transformState: { posY: 0, rotY: 0, @@ -372,10 +372,8 @@ export const useMediaStore = create( ); export const useMediaWordStore = create((set) => ({ - words: ["eye", "quiet", "hallucination"], posStateIdx: 1, setPosStateIdx: (to) => set(() => ({ posStateIdx: to })), - setWords: (to) => set(() => ({ words: to })), resetPosStateIdx: () => set(() => ({ posStateIdx: 1 })), })); @@ -390,7 +388,7 @@ export const useSSknStore = create((set) => ({ })); export const useSceneStore = create((set) => ({ - currentScene: "media", + currentScene: "main", setScene: (to) => set(() => ({ currentScene: to })), }));