-
Notifications
You must be signed in to change notification settings - Fork 0
/
adon-window-context.csv
We can make this file beautiful and searchable if this error is corrected: It looks like row 2 should actually have 1165 columns, instead of 3 in line 1.
1184 lines (1184 loc) · 94.4 KB
/
adon-window-context.csv
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
parent,object,parent,opener,top,length,frames,closed,location,self,window,document,name,customElements,history,locationbar,menubar,personalbar,scrollbars,statusbar,toolbar,status,frameElement,navigator,origin,external,screen,innerWidth,innerHeight,scrollX,pageXOffset,scrollY,pageYOffset,visualViewport,screenX,screenY,outerWidth,outerHeight,devicePixelRatio,clientInformation,screenLeft,screenTop,defaultStatus,defaultstatus,styleMedia,onsearch,isSecureContext,onabort,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,onauxclick,ongotpointercapture,onlostpointercapture,onpointerdown,onpointermove,onpointerup,onpointercancel,onpointerover,onpointerout,onpointerenter,onpointerleave,onselectstart,onselectionchange,onanimationend,onanimationiteration,onanimationstart,ontransitionend,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage,onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload,performance,stop,open,alert,confirm,prompt,print,queueMicrotask,requestAnimationFrame,cancelAnimationFrame,captureEvents,releaseEvents,requestIdleCallback,cancelIdleCallback,getComputedStyle,matchMedia,moveTo,moveBy,resizeTo,resizeBy,scroll,scrollTo,scrollBy,getSelection,find,webkitRequestAnimationFrame,webkitCancelAnimationFrame,fetch,btoa,atob,setTimeout,clearTimeout,setInterval,clearInterval,createImageBitmap,close,focus,blur,postMessage,onappinstalled,onbeforeinstallprompt,crypto,indexedDB,webkitStorageInfo,sessionStorage,localStorage,chrome,nw,applicationCache,onpointerrawupdate,trustedTypes,speechSynthesis,webkitRequestFileSystem,webkitResolveLocalFileSystemURL,openDatabase,caches,ondevicemotion,ondeviceorientation,ondeviceorientationabsolute,require,process,Buffer,global,ENG,SPA,GER,ITA,CHI,RUS,TUR,FRA,POL,JPN,fs,greenworks,error_process,file_share_process,EventEmitter,safari,lang,langnum,allang,mpc,subtype,grep,j,insub,i,setlang,errorloop,kill,sizeit,context,BufferLoader,intrus,glimpse,jwata,jwatb,jwatc,impact,whacklong,whackshort,whack45,jimaya,genscry,jhmoving,snig,grunt,runS,runM,runL,walk,buzz,movewind,inst,gappear,lockin,floco,map,ml,youmap,incmap,swp,cornered,walkoffs,vids,vl,spyrooms,roomlist,keylist,itemlist,il,events,roomser,randomitems,repcosc,vt,vidall,cvid,chvid,cnow,vpon,roompairs,sagot,vidstart,vidend,vidcurs,vidon,vidlast,flicker,flicknew,spaco,promgo,promnow,sflip,exflip,exflipnow,ambsgo,sendflip,cursel,snear,sfar,jclose,resamb,resheart,newghost,quesnow,talkpos,gready,quescount,queson,subend,guidenow,inton,intover,gover,goinst,gofind,gofound,guestrooms,guestsin,rescue,ghostNow,ghostNear,ghostSel,ghostPrev,setev,setbox,ghostpres,ghostfade,peeps,gnames,dks,yes,res,mHell,mName,mWho,gMay,gWho,gCh,gNo,volco,gPos,allGv,curcomp,gint,ghosts,bright,colour,mastvol,gop,jwords,jwort,usi,jcatem,jhcatches,jhcatch,jw,jtc,jtime,whack,inwhack,goinsight,flee,rescon,gogame,butlen,conon,gvision,setgo,ambresvol,setvs,subon,adon,adoff,repsnow,metmax,emfgo,wig,golo,gdir,jdir,pairA,pairB,prepair,pairnow,fulls,splitL,splitR,medlist,csX,csY,spinblok,menon,itemon,unsafe,gounsafe,save,goachieve,Atex,csA,csB,csDR,lincur,opars,selit,selprev,selv,selvprev,seltex,pairbo,pairover,prep,pairon,csexits,selNow,selExit,selPanel,itemget,itemtoget,keytoget,csrooms,infon,infostack,ff,mensel,menlay,rason,menew,mensav,configon,conID,arspin,aret,csXL,csXR,csCN,csYT,flipon,sloop,slooplen,slook,ambflip,ambfad,amco,ambstak,ambvol,ambience,sambience,feet,started,ending,checknum,itemwhere,walkTO,behindTO,jwTO,menmusTO,menTO,ambTO,linkTO,talkTO,pairTO,poverTO,emfTO,messTO,infoTO,savTO,safeTO,proTO,getTO,repTO,zTO,camTO,curseTO,detTO,avTO,compTO,subaTO,subbTO,adTO,jsTO,subTO,wakeTO,cursTO,replay,prerep,pairs,panelon,panswitch,inlift,liftfloor,stairs,jhfloor,jimshout,pos,floor,newfloor,jim,jimfree,jimp,jmop,jsp,jhchange,floorspeed,jimbored,jspeak,lockpick,jimtype,jimext,gametype,progress,quickresc,florad,florpos,floorGv,exempt,pswitch,ButOneLink,ButTwoLink,fwd,trantype,corn,npos,rompos,guestpos,posd,clash,statvisgo,statvis,jhatpos,jhatstairs,jhvistime,jhartime,locjump,inroom,keyon,keylook,hide,goroom,facedoor,tabface,gofwd,roomlink,wakelink,atdel,tempcols,jhdec,sjump,jhwait,jhinroom,jhsearch,setseen,jhbath,hideset,hideseq,jhnext,gohide,goattack,gostore,storeat,atmove,jhprox,jheard,spy,prevl,spyvers,ls,le,lsvid,evex,intercept,interrupt,lit,litlocs,oddson,oz,dComp,dCal,pdCal,nCal,mCal,dDir,comPos,comTarg,mapoffx,mapoffy,mapxwid,mapywid,dnorm,dflip,nesw,msr,yang,ux,uy,uv,lv,rv,tpm,active,activeb,mblock,searchon,runturn,handle,moving,runstop,avail,trig,trigo,trigtime,tneg,clhour,clmin,clsec,md,mof,subgo,subnow,subvers,dirs,jhmc,jhwalk,attack,attackspeed,postconf,hiding,jhLOS,cansee,hidewait,giggle,behindyou,heardher,menover,bookover,bookon,typover,boxover,emfon,askintover,whackon,ghostint,gseen,gobuz,anson,evpon,evpover,opsblock,exblok,speakover,jhend,scryon,prescry,scryavail,doorcall,goheard,scryover,gonow,cluegen,gorec,gentem,genpik,ranser,evphid,evpcol,evad,compcol,gocomp,scrycol,scrysoon,scrysn,scrywait,hidrooms,firstspeak,firstconv,firstpair,firstmirror,firstcomp,firstevp,firstjim,firstkey,firstwake,firstguest,callout,reply,volFizzMax,volBoxMax,volNoiseMax,volAmbsMax,volJHMax,jimvol,jimpan,panJH,ghostpans,ambspan,panAmbs,ambsdir,ambsvol,ambspos,amch,preambs,zvo,zvot,menvo,allGd,ghostdis,ghostdel,gpop,volGhostMax,gsnow,radtemp,loopmax,adel,adels,avdels,jhfeet,breath,bspeed,bnow,bcoun,bdel,brun,leaving,spotwait,linkon,arson,arslr,touchon,spotfx,setspotJ,setspot,lopass,loptarg,lopSpeed,lopgo,lopgot,macbut,nixon,nums,countsec,countmin,bron,repsflip,prereps,headflip,prehead,subflip,texlen,ico,tico,itype,icc,atype,preico,itpage,colnew,selnew,askov,askon,pairsel,conov,revlist,revpage,winw,winh,seth,setw,vidw,vidh,setop,setleft,fsize,isize,evflo,ptml,rtml,bgs,samps,sourceA,sourceB,sourceC,sourceD,sourceE,sourceF,sourceX,sourceHeart,sourceJHA,sourceJHB,sourceOneA,sourceOneB,sourceDistA,sourceDistB,sourceEVP,sourceEVPfizz,sourceEVPnoise,sourceEVPmaster,sourceGhostSpot,audioEVrep,audioEVrepEcho,audioEVrepRev,audioGhost,audioGhostSpot,audioLA,audioLB,audioExt,audioClue,audioLoops,audioMenu,gainNodeMAS,gainNodeA,gainNodeB,gainNodeC,gainNodeD,gainNodeE,gainNodeF,gainNodeX,gainNodeHeart,gainNodeEVP,gainNodeEVPfizz,gainNodeEVPnoise,gainNodeJHA,gainNodeJHB,gainNodeAmbsA,gainNodeAmbsB,panNodeJHA,panNodeJHB,panNodeAmbsA,panNodeAmbsB,gainNodeDistA,gainNodeDistB,gainNodeOneA,gainNodeOneB,gainNodeEVrep,gainNodeEVrepEcho,gainNodeEVrepRev,gainNodeLA,gainNodeLB,gainNodeLMAS,gainNodeSL,gainNodeExt,gainNodeClue,gainNodeMenu,gainNodeWake,gainNodeScry,gainNodeVid,gainNodeGhostSpot,gainNodeZP,gainNodeGhost,sourceGhost,panNodeGhost,bufferLoader,playGhost,goGhost,gos0Int,gos1Int,gos2Int,gos3Int,gos4Int,repGhost0,repGhost1,repGhost2,repGhost3,repGhost4,compressor,filterA,filterB,filterEVP,mayfil,filterMaya,playVision,playSamp,playBreath,playHeart,playStatic,playFizz,playNoise,playVers,playSpot,playJHvers,playJH,playDist,playOne,playOneA,playOneB,playExt,goplayExt,playAmbs,goplayAmbs,wakesamp,playWake,goplayWake,playScry,goplayScry,playClue,goplayClue,playSL,goplayLoops,setitems,showits,showrevs,collect,showfind,nowsafe,nowunsafe,goInfo,goSaved,goHelp,grabops,hearlist,f,nodes,todes,volmap,vs,v,hl,conbri,convol,subad,setsubad,setsub,fixstart,msubtex,keydown,boxes,zo1,zo2,zo3,temchek,subchek,gprev,gpeps,vcheck,gset,gsetTO,cupo,jhtemp,plon,temap,testX,testY,listest,quickon,footflip,footrot,inon,menuTog,menuOn,menuOff,scryops,showroom,conselops,select,goReps,goHead,mayaSpeak,mayaSpeakPlay,ghostSpeak,ghostSpeakPlay,subtime,goSub,evpQuesResp,evpPairResp,repDK,evpEnd,resits,questop,evpFirstResp,showghost,hideghost,compon,compoff,EVPton,EVPtoff,jhalert,types,gotut,gopro,exit,addgen,startnew,gokeys,cursred,moco,touchgo,touchstop,skipwake,skiphole,menCRS,menl,endrep,fadz,clearmen,clearevs,clearars,cursrot,cursres,cursdim,goPair,trypair,ambshear,jimhear,ghosthear,forcespin,spinleft,spinright,openbook,closebook,sideQon,sideQoff,move,setbreath,setfloor,startvid,quickvid,govid,logit,arrival,setpick,jhmove,getprox,adjimp,jimad,barco,storeattack,setattack,spyhole,jimgoes,spyvid,sethide,getdis,genhear,walkaway,insight,seeyou,conform,setgig,newmirror,newEVP,setghost,ghostoff,opsops,goend,runch,vidloop,checkcon,gocons,butson,axon,axgo,buts,consel,prepage,conmen,conlay,presel,nowcon,precon,setbut,setops,ldpos,mencons,laycons,setldot,reshi,clearits,setpage,setcurs,showsub,subco,startzvid,evposs,wakenow,wakerooms,gowhack,jimhide,setcandle,sethands,setdist,setambsvol,setjvol,setgvol,setvolgo,setfil,flc,audiocheck,comploop,ptxt,slowloop,gameloop,dipamb,swapamb,setamcoA,setamcoB,soundswap,flashINT,floc,flod,debug,flash,flash2,destack,delist,vidInt,cursInt,gameInt,audInt,errInt,slowInt,compInt,startints,startInt,checkgo,clearints,startgame,menmusic,setgint,setcomp,serco,loadGame,setprog,showprog,achieve,goAch,gw_init,gw_cloud,gw_lang,fun,newGame,saveGame,intsc,showinst,closeint,finow,gofinal,fingo,controlon,controloff,requestAnimFrame,frep,od,ndt,camgo,gDir,comAd,comIn,comVib,audioAmbsA,audioAmbsB,audioWake,audioScry,gesfrom,vct,chekInt,lod,conspeakon,vdiv,ambspeed,voiceon
opener,object,
top,object,parent,opener,top,length,frames,closed,location,self,window,document,name,customElements,history,locationbar,menubar,personalbar,scrollbars,statusbar,toolbar,status,frameElement,navigator,origin,external,screen,innerWidth,innerHeight,scrollX,pageXOffset,scrollY,pageYOffset,visualViewport,screenX,screenY,outerWidth,outerHeight,devicePixelRatio,clientInformation,screenLeft,screenTop,defaultStatus,defaultstatus,styleMedia,onsearch,isSecureContext,onabort,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,onauxclick,ongotpointercapture,onlostpointercapture,onpointerdown,onpointermove,onpointerup,onpointercancel,onpointerover,onpointerout,onpointerenter,onpointerleave,onselectstart,onselectionchange,onanimationend,onanimationiteration,onanimationstart,ontransitionend,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage,onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload,performance,stop,open,alert,confirm,prompt,print,queueMicrotask,requestAnimationFrame,cancelAnimationFrame,captureEvents,releaseEvents,requestIdleCallback,cancelIdleCallback,getComputedStyle,matchMedia,moveTo,moveBy,resizeTo,resizeBy,scroll,scrollTo,scrollBy,getSelection,find,webkitRequestAnimationFrame,webkitCancelAnimationFrame,fetch,btoa,atob,setTimeout,clearTimeout,setInterval,clearInterval,createImageBitmap,close,focus,blur,postMessage,onappinstalled,onbeforeinstallprompt,crypto,indexedDB,webkitStorageInfo,sessionStorage,localStorage,chrome,nw,applicationCache,onpointerrawupdate,trustedTypes,speechSynthesis,webkitRequestFileSystem,webkitResolveLocalFileSystemURL,openDatabase,caches,ondevicemotion,ondeviceorientation,ondeviceorientationabsolute,require,process,Buffer,global,ENG,SPA,GER,ITA,CHI,RUS,TUR,FRA,POL,JPN,fs,greenworks,error_process,file_share_process,EventEmitter,safari,lang,langnum,allang,mpc,subtype,grep,j,insub,i,setlang,errorloop,kill,sizeit,context,BufferLoader,intrus,glimpse,jwata,jwatb,jwatc,impact,whacklong,whackshort,whack45,jimaya,genscry,jhmoving,snig,grunt,runS,runM,runL,walk,buzz,movewind,inst,gappear,lockin,floco,map,ml,youmap,incmap,swp,cornered,walkoffs,vids,vl,spyrooms,roomlist,keylist,itemlist,il,events,roomser,randomitems,repcosc,vt,vidall,cvid,chvid,cnow,vpon,roompairs,sagot,vidstart,vidend,vidcurs,vidon,vidlast,flicker,flicknew,spaco,promgo,promnow,sflip,exflip,exflipnow,ambsgo,sendflip,cursel,snear,sfar,jclose,resamb,resheart,newghost,quesnow,talkpos,gready,quescount,queson,subend,guidenow,inton,intover,gover,goinst,gofind,gofound,guestrooms,guestsin,rescue,ghostNow,ghostNear,ghostSel,ghostPrev,setev,setbox,ghostpres,ghostfade,peeps,gnames,dks,yes,res,mHell,mName,mWho,gMay,gWho,gCh,gNo,volco,gPos,allGv,curcomp,gint,ghosts,bright,colour,mastvol,gop,jwords,jwort,usi,jcatem,jhcatches,jhcatch,jw,jtc,jtime,whack,inwhack,goinsight,flee,rescon,gogame,butlen,conon,gvision,setgo,ambresvol,setvs,subon,adon,adoff,repsnow,metmax,emfgo,wig,golo,gdir,jdir,pairA,pairB,prepair,pairnow,fulls,splitL,splitR,medlist,csX,csY,spinblok,menon,itemon,unsafe,gounsafe,save,goachieve,Atex,csA,csB,csDR,lincur,opars,selit,selprev,selv,selvprev,seltex,pairbo,pairover,prep,pairon,csexits,selNow,selExit,selPanel,itemget,itemtoget,keytoget,csrooms,infon,infostack,ff,mensel,menlay,rason,menew,mensav,configon,conID,arspin,aret,csXL,csXR,csCN,csYT,flipon,sloop,slooplen,slook,ambflip,ambfad,amco,ambstak,ambvol,ambience,sambience,feet,started,ending,checknum,itemwhere,walkTO,behindTO,jwTO,menmusTO,menTO,ambTO,linkTO,talkTO,pairTO,poverTO,emfTO,messTO,infoTO,savTO,safeTO,proTO,getTO,repTO,zTO,camTO,curseTO,detTO,avTO,compTO,subaTO,subbTO,adTO,jsTO,subTO,wakeTO,cursTO,replay,prerep,pairs,panelon,panswitch,inlift,liftfloor,stairs,jhfloor,jimshout,pos,floor,newfloor,jim,jimfree,jimp,jmop,jsp,jhchange,floorspeed,jimbored,jspeak,lockpick,jimtype,jimext,gametype,progress,quickresc,florad,florpos,floorGv,exempt,pswitch,ButOneLink,ButTwoLink,fwd,trantype,corn,npos,rompos,guestpos,posd,clash,statvisgo,statvis,jhatpos,jhatstairs,jhvistime,jhartime,locjump,inroom,keyon,keylook,hide,goroom,facedoor,tabface,gofwd,roomlink,wakelink,atdel,tempcols,jhdec,sjump,jhwait,jhinroom,jhsearch,setseen,jhbath,hideset,hideseq,jhnext,gohide,goattack,gostore,storeat,atmove,jhprox,jheard,spy,prevl,spyvers,ls,le,lsvid,evex,intercept,interrupt,lit,litlocs,oddson,oz,dComp,dCal,pdCal,nCal,mCal,dDir,comPos,comTarg,mapoffx,mapoffy,mapxwid,mapywid,dnorm,dflip,nesw,msr,yang,ux,uy,uv,lv,rv,tpm,active,activeb,mblock,searchon,runturn,handle,moving,runstop,avail,trig,trigo,trigtime,tneg,clhour,clmin,clsec,md,mof,subgo,subnow,subvers,dirs,jhmc,jhwalk,attack,attackspeed,postconf,hiding,jhLOS,cansee,hidewait,giggle,behindyou,heardher,menover,bookover,bookon,typover,boxover,emfon,askintover,whackon,ghostint,gseen,gobuz,anson,evpon,evpover,opsblock,exblok,speakover,jhend,scryon,prescry,scryavail,doorcall,goheard,scryover,gonow,cluegen,gorec,gentem,genpik,ranser,evphid,evpcol,evad,compcol,gocomp,scrycol,scrysoon,scrysn,scrywait,hidrooms,firstspeak,firstconv,firstpair,firstmirror,firstcomp,firstevp,firstjim,firstkey,firstwake,firstguest,callout,reply,volFizzMax,volBoxMax,volNoiseMax,volAmbsMax,volJHMax,jimvol,jimpan,panJH,ghostpans,ambspan,panAmbs,ambsdir,ambsvol,ambspos,amch,preambs,zvo,zvot,menvo,allGd,ghostdis,ghostdel,gpop,volGhostMax,gsnow,radtemp,loopmax,adel,adels,avdels,jhfeet,breath,bspeed,bnow,bcoun,bdel,brun,leaving,spotwait,linkon,arson,arslr,touchon,spotfx,setspotJ,setspot,lopass,loptarg,lopSpeed,lopgo,lopgot,macbut,nixon,nums,countsec,countmin,bron,repsflip,prereps,headflip,prehead,subflip,texlen,ico,tico,itype,icc,atype,preico,itpage,colnew,selnew,askov,askon,pairsel,conov,revlist,revpage,winw,winh,seth,setw,vidw,vidh,setop,setleft,fsize,isize,evflo,ptml,rtml,bgs,samps,sourceA,sourceB,sourceC,sourceD,sourceE,sourceF,sourceX,sourceHeart,sourceJHA,sourceJHB,sourceOneA,sourceOneB,sourceDistA,sourceDistB,sourceEVP,sourceEVPfizz,sourceEVPnoise,sourceEVPmaster,sourceGhostSpot,audioEVrep,audioEVrepEcho,audioEVrepRev,audioGhost,audioGhostSpot,audioLA,audioLB,audioExt,audioClue,audioLoops,audioMenu,gainNodeMAS,gainNodeA,gainNodeB,gainNodeC,gainNodeD,gainNodeE,gainNodeF,gainNodeX,gainNodeHeart,gainNodeEVP,gainNodeEVPfizz,gainNodeEVPnoise,gainNodeJHA,gainNodeJHB,gainNodeAmbsA,gainNodeAmbsB,panNodeJHA,panNodeJHB,panNodeAmbsA,panNodeAmbsB,gainNodeDistA,gainNodeDistB,gainNodeOneA,gainNodeOneB,gainNodeEVrep,gainNodeEVrepEcho,gainNodeEVrepRev,gainNodeLA,gainNodeLB,gainNodeLMAS,gainNodeSL,gainNodeExt,gainNodeClue,gainNodeMenu,gainNodeWake,gainNodeScry,gainNodeVid,gainNodeGhostSpot,gainNodeZP,gainNodeGhost,sourceGhost,panNodeGhost,bufferLoader,playGhost,goGhost,gos0Int,gos1Int,gos2Int,gos3Int,gos4Int,repGhost0,repGhost1,repGhost2,repGhost3,repGhost4,compressor,filterA,filterB,filterEVP,mayfil,filterMaya,playVision,playSamp,playBreath,playHeart,playStatic,playFizz,playNoise,playVers,playSpot,playJHvers,playJH,playDist,playOne,playOneA,playOneB,playExt,goplayExt,playAmbs,goplayAmbs,wakesamp,playWake,goplayWake,playScry,goplayScry,playClue,goplayClue,playSL,goplayLoops,setitems,showits,showrevs,collect,showfind,nowsafe,nowunsafe,goInfo,goSaved,goHelp,grabops,hearlist,f,nodes,todes,volmap,vs,v,hl,conbri,convol,subad,setsubad,setsub,fixstart,msubtex,keydown,boxes,zo1,zo2,zo3,temchek,subchek,gprev,gpeps,vcheck,gset,gsetTO,cupo,jhtemp,plon,temap,testX,testY,listest,quickon,footflip,footrot,inon,menuTog,menuOn,menuOff,scryops,showroom,conselops,select,goReps,goHead,mayaSpeak,mayaSpeakPlay,ghostSpeak,ghostSpeakPlay,subtime,goSub,evpQuesResp,evpPairResp,repDK,evpEnd,resits,questop,evpFirstResp,showghost,hideghost,compon,compoff,EVPton,EVPtoff,jhalert,types,gotut,gopro,exit,addgen,startnew,gokeys,cursred,moco,touchgo,touchstop,skipwake,skiphole,menCRS,menl,endrep,fadz,clearmen,clearevs,clearars,cursrot,cursres,cursdim,goPair,trypair,ambshear,jimhear,ghosthear,forcespin,spinleft,spinright,openbook,closebook,sideQon,sideQoff,move,setbreath,setfloor,startvid,quickvid,govid,logit,arrival,setpick,jhmove,getprox,adjimp,jimad,barco,storeattack,setattack,spyhole,jimgoes,spyvid,sethide,getdis,genhear,walkaway,insight,seeyou,conform,setgig,newmirror,newEVP,setghost,ghostoff,opsops,goend,runch,vidloop,checkcon,gocons,butson,axon,axgo,buts,consel,prepage,conmen,conlay,presel,nowcon,precon,setbut,setops,ldpos,mencons,laycons,setldot,reshi,clearits,setpage,setcurs,showsub,subco,startzvid,evposs,wakenow,wakerooms,gowhack,jimhide,setcandle,sethands,setdist,setambsvol,setjvol,setgvol,setvolgo,setfil,flc,audiocheck,comploop,ptxt,slowloop,gameloop,dipamb,swapamb,setamcoA,setamcoB,soundswap,flashINT,floc,flod,debug,flash,flash2,destack,delist,vidInt,cursInt,gameInt,audInt,errInt,slowInt,compInt,startints,startInt,checkgo,clearints,startgame,menmusic,setgint,setcomp,serco,loadGame,setprog,showprog,achieve,goAch,gw_init,gw_cloud,gw_lang,fun,newGame,saveGame,intsc,showinst,closeint,finow,gofinal,fingo,controlon,controloff,requestAnimFrame,frep,od,ndt,camgo,gDir,comAd,comIn,comVib,audioAmbsA,audioAmbsB,audioWake,audioScry,gesfrom,vct,chekInt,lod,conspeakon,vdiv,ambspeed,voiceon
length,number,0
frames,object,parent,opener,top,length,frames,closed,location,self,window,document,name,customElements,history,locationbar,menubar,personalbar,scrollbars,statusbar,toolbar,status,frameElement,navigator,origin,external,screen,innerWidth,innerHeight,scrollX,pageXOffset,scrollY,pageYOffset,visualViewport,screenX,screenY,outerWidth,outerHeight,devicePixelRatio,clientInformation,screenLeft,screenTop,defaultStatus,defaultstatus,styleMedia,onsearch,isSecureContext,onabort,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,onauxclick,ongotpointercapture,onlostpointercapture,onpointerdown,onpointermove,onpointerup,onpointercancel,onpointerover,onpointerout,onpointerenter,onpointerleave,onselectstart,onselectionchange,onanimationend,onanimationiteration,onanimationstart,ontransitionend,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage,onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload,performance,stop,open,alert,confirm,prompt,print,queueMicrotask,requestAnimationFrame,cancelAnimationFrame,captureEvents,releaseEvents,requestIdleCallback,cancelIdleCallback,getComputedStyle,matchMedia,moveTo,moveBy,resizeTo,resizeBy,scroll,scrollTo,scrollBy,getSelection,find,webkitRequestAnimationFrame,webkitCancelAnimationFrame,fetch,btoa,atob,setTimeout,clearTimeout,setInterval,clearInterval,createImageBitmap,close,focus,blur,postMessage,onappinstalled,onbeforeinstallprompt,crypto,indexedDB,webkitStorageInfo,sessionStorage,localStorage,chrome,nw,applicationCache,onpointerrawupdate,trustedTypes,speechSynthesis,webkitRequestFileSystem,webkitResolveLocalFileSystemURL,openDatabase,caches,ondevicemotion,ondeviceorientation,ondeviceorientationabsolute,require,process,Buffer,global,ENG,SPA,GER,ITA,CHI,RUS,TUR,FRA,POL,JPN,fs,greenworks,error_process,file_share_process,EventEmitter,safari,lang,langnum,allang,mpc,subtype,grep,j,insub,i,setlang,errorloop,kill,sizeit,context,BufferLoader,intrus,glimpse,jwata,jwatb,jwatc,impact,whacklong,whackshort,whack45,jimaya,genscry,jhmoving,snig,grunt,runS,runM,runL,walk,buzz,movewind,inst,gappear,lockin,floco,map,ml,youmap,incmap,swp,cornered,walkoffs,vids,vl,spyrooms,roomlist,keylist,itemlist,il,events,roomser,randomitems,repcosc,vt,vidall,cvid,chvid,cnow,vpon,roompairs,sagot,vidstart,vidend,vidcurs,vidon,vidlast,flicker,flicknew,spaco,promgo,promnow,sflip,exflip,exflipnow,ambsgo,sendflip,cursel,snear,sfar,jclose,resamb,resheart,newghost,quesnow,talkpos,gready,quescount,queson,subend,guidenow,inton,intover,gover,goinst,gofind,gofound,guestrooms,guestsin,rescue,ghostNow,ghostNear,ghostSel,ghostPrev,setev,setbox,ghostpres,ghostfade,peeps,gnames,dks,yes,res,mHell,mName,mWho,gMay,gWho,gCh,gNo,volco,gPos,allGv,curcomp,gint,ghosts,bright,colour,mastvol,gop,jwords,jwort,usi,jcatem,jhcatches,jhcatch,jw,jtc,jtime,whack,inwhack,goinsight,flee,rescon,gogame,butlen,conon,gvision,setgo,ambresvol,setvs,subon,adon,adoff,repsnow,metmax,emfgo,wig,golo,gdir,jdir,pairA,pairB,prepair,pairnow,fulls,splitL,splitR,medlist,csX,csY,spinblok,menon,itemon,unsafe,gounsafe,save,goachieve,Atex,csA,csB,csDR,lincur,opars,selit,selprev,selv,selvprev,seltex,pairbo,pairover,prep,pairon,csexits,selNow,selExit,selPanel,itemget,itemtoget,keytoget,csrooms,infon,infostack,ff,mensel,menlay,rason,menew,mensav,configon,conID,arspin,aret,csXL,csXR,csCN,csYT,flipon,sloop,slooplen,slook,ambflip,ambfad,amco,ambstak,ambvol,ambience,sambience,feet,started,ending,checknum,itemwhere,walkTO,behindTO,jwTO,menmusTO,menTO,ambTO,linkTO,talkTO,pairTO,poverTO,emfTO,messTO,infoTO,savTO,safeTO,proTO,getTO,repTO,zTO,camTO,curseTO,detTO,avTO,compTO,subaTO,subbTO,adTO,jsTO,subTO,wakeTO,cursTO,replay,prerep,pairs,panelon,panswitch,inlift,liftfloor,stairs,jhfloor,jimshout,pos,floor,newfloor,jim,jimfree,jimp,jmop,jsp,jhchange,floorspeed,jimbored,jspeak,lockpick,jimtype,jimext,gametype,progress,quickresc,florad,florpos,floorGv,exempt,pswitch,ButOneLink,ButTwoLink,fwd,trantype,corn,npos,rompos,guestpos,posd,clash,statvisgo,statvis,jhatpos,jhatstairs,jhvistime,jhartime,locjump,inroom,keyon,keylook,hide,goroom,facedoor,tabface,gofwd,roomlink,wakelink,atdel,tempcols,jhdec,sjump,jhwait,jhinroom,jhsearch,setseen,jhbath,hideset,hideseq,jhnext,gohide,goattack,gostore,storeat,atmove,jhprox,jheard,spy,prevl,spyvers,ls,le,lsvid,evex,intercept,interrupt,lit,litlocs,oddson,oz,dComp,dCal,pdCal,nCal,mCal,dDir,comPos,comTarg,mapoffx,mapoffy,mapxwid,mapywid,dnorm,dflip,nesw,msr,yang,ux,uy,uv,lv,rv,tpm,active,activeb,mblock,searchon,runturn,handle,moving,runstop,avail,trig,trigo,trigtime,tneg,clhour,clmin,clsec,md,mof,subgo,subnow,subvers,dirs,jhmc,jhwalk,attack,attackspeed,postconf,hiding,jhLOS,cansee,hidewait,giggle,behindyou,heardher,menover,bookover,bookon,typover,boxover,emfon,askintover,whackon,ghostint,gseen,gobuz,anson,evpon,evpover,opsblock,exblok,speakover,jhend,scryon,prescry,scryavail,doorcall,goheard,scryover,gonow,cluegen,gorec,gentem,genpik,ranser,evphid,evpcol,evad,compcol,gocomp,scrycol,scrysoon,scrysn,scrywait,hidrooms,firstspeak,firstconv,firstpair,firstmirror,firstcomp,firstevp,firstjim,firstkey,firstwake,firstguest,callout,reply,volFizzMax,volBoxMax,volNoiseMax,volAmbsMax,volJHMax,jimvol,jimpan,panJH,ghostpans,ambspan,panAmbs,ambsdir,ambsvol,ambspos,amch,preambs,zvo,zvot,menvo,allGd,ghostdis,ghostdel,gpop,volGhostMax,gsnow,radtemp,loopmax,adel,adels,avdels,jhfeet,breath,bspeed,bnow,bcoun,bdel,brun,leaving,spotwait,linkon,arson,arslr,touchon,spotfx,setspotJ,setspot,lopass,loptarg,lopSpeed,lopgo,lopgot,macbut,nixon,nums,countsec,countmin,bron,repsflip,prereps,headflip,prehead,subflip,texlen,ico,tico,itype,icc,atype,preico,itpage,colnew,selnew,askov,askon,pairsel,conov,revlist,revpage,winw,winh,seth,setw,vidw,vidh,setop,setleft,fsize,isize,evflo,ptml,rtml,bgs,samps,sourceA,sourceB,sourceC,sourceD,sourceE,sourceF,sourceX,sourceHeart,sourceJHA,sourceJHB,sourceOneA,sourceOneB,sourceDistA,sourceDistB,sourceEVP,sourceEVPfizz,sourceEVPnoise,sourceEVPmaster,sourceGhostSpot,audioEVrep,audioEVrepEcho,audioEVrepRev,audioGhost,audioGhostSpot,audioLA,audioLB,audioExt,audioClue,audioLoops,audioMenu,gainNodeMAS,gainNodeA,gainNodeB,gainNodeC,gainNodeD,gainNodeE,gainNodeF,gainNodeX,gainNodeHeart,gainNodeEVP,gainNodeEVPfizz,gainNodeEVPnoise,gainNodeJHA,gainNodeJHB,gainNodeAmbsA,gainNodeAmbsB,panNodeJHA,panNodeJHB,panNodeAmbsA,panNodeAmbsB,gainNodeDistA,gainNodeDistB,gainNodeOneA,gainNodeOneB,gainNodeEVrep,gainNodeEVrepEcho,gainNodeEVrepRev,gainNodeLA,gainNodeLB,gainNodeLMAS,gainNodeSL,gainNodeExt,gainNodeClue,gainNodeMenu,gainNodeWake,gainNodeScry,gainNodeVid,gainNodeGhostSpot,gainNodeZP,gainNodeGhost,sourceGhost,panNodeGhost,bufferLoader,playGhost,goGhost,gos0Int,gos1Int,gos2Int,gos3Int,gos4Int,repGhost0,repGhost1,repGhost2,repGhost3,repGhost4,compressor,filterA,filterB,filterEVP,mayfil,filterMaya,playVision,playSamp,playBreath,playHeart,playStatic,playFizz,playNoise,playVers,playSpot,playJHvers,playJH,playDist,playOne,playOneA,playOneB,playExt,goplayExt,playAmbs,goplayAmbs,wakesamp,playWake,goplayWake,playScry,goplayScry,playClue,goplayClue,playSL,goplayLoops,setitems,showits,showrevs,collect,showfind,nowsafe,nowunsafe,goInfo,goSaved,goHelp,grabops,hearlist,f,nodes,todes,volmap,vs,v,hl,conbri,convol,subad,setsubad,setsub,fixstart,msubtex,keydown,boxes,zo1,zo2,zo3,temchek,subchek,gprev,gpeps,vcheck,gset,gsetTO,cupo,jhtemp,plon,temap,testX,testY,listest,quickon,footflip,footrot,inon,menuTog,menuOn,menuOff,scryops,showroom,conselops,select,goReps,goHead,mayaSpeak,mayaSpeakPlay,ghostSpeak,ghostSpeakPlay,subtime,goSub,evpQuesResp,evpPairResp,repDK,evpEnd,resits,questop,evpFirstResp,showghost,hideghost,compon,compoff,EVPton,EVPtoff,jhalert,types,gotut,gopro,exit,addgen,startnew,gokeys,cursred,moco,touchgo,touchstop,skipwake,skiphole,menCRS,menl,endrep,fadz,clearmen,clearevs,clearars,cursrot,cursres,cursdim,goPair,trypair,ambshear,jimhear,ghosthear,forcespin,spinleft,spinright,openbook,closebook,sideQon,sideQoff,move,setbreath,setfloor,startvid,quickvid,govid,logit,arrival,setpick,jhmove,getprox,adjimp,jimad,barco,storeattack,setattack,spyhole,jimgoes,spyvid,sethide,getdis,genhear,walkaway,insight,seeyou,conform,setgig,newmirror,newEVP,setghost,ghostoff,opsops,goend,runch,vidloop,checkcon,gocons,butson,axon,axgo,buts,consel,prepage,conmen,conlay,presel,nowcon,precon,setbut,setops,ldpos,mencons,laycons,setldot,reshi,clearits,setpage,setcurs,showsub,subco,startzvid,evposs,wakenow,wakerooms,gowhack,jimhide,setcandle,sethands,setdist,setambsvol,setjvol,setgvol,setvolgo,setfil,flc,audiocheck,comploop,ptxt,slowloop,gameloop,dipamb,swapamb,setamcoA,setamcoB,soundswap,flashINT,floc,flod,debug,flash,flash2,destack,delist,vidInt,cursInt,gameInt,audInt,errInt,slowInt,compInt,startints,startInt,checkgo,clearints,startgame,menmusic,setgint,setcomp,serco,loadGame,setprog,showprog,achieve,goAch,gw_init,gw_cloud,gw_lang,fun,newGame,saveGame,intsc,showinst,closeint,finow,gofinal,fingo,controlon,controloff,requestAnimFrame,frep,od,ndt,camgo,gDir,comAd,comIn,comVib,audioAmbsA,audioAmbsB,audioWake,audioScry,gesfrom,vct,chekInt,lod,conspeakon,vdiv,ambspeed,voiceon
closed,boolean,false
location,object,href,ancestorOrigins,origin,protocol,host,hostname,port,pathname,search,hash,assign,reload,toString,replace
self,object,parent,opener,top,length,frames,closed,location,self,window,document,name,customElements,history,locationbar,menubar,personalbar,scrollbars,statusbar,toolbar,status,frameElement,navigator,origin,external,screen,innerWidth,innerHeight,scrollX,pageXOffset,scrollY,pageYOffset,visualViewport,screenX,screenY,outerWidth,outerHeight,devicePixelRatio,clientInformation,screenLeft,screenTop,defaultStatus,defaultstatus,styleMedia,onsearch,isSecureContext,onabort,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,onauxclick,ongotpointercapture,onlostpointercapture,onpointerdown,onpointermove,onpointerup,onpointercancel,onpointerover,onpointerout,onpointerenter,onpointerleave,onselectstart,onselectionchange,onanimationend,onanimationiteration,onanimationstart,ontransitionend,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage,onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload,performance,stop,open,alert,confirm,prompt,print,queueMicrotask,requestAnimationFrame,cancelAnimationFrame,captureEvents,releaseEvents,requestIdleCallback,cancelIdleCallback,getComputedStyle,matchMedia,moveTo,moveBy,resizeTo,resizeBy,scroll,scrollTo,scrollBy,getSelection,find,webkitRequestAnimationFrame,webkitCancelAnimationFrame,fetch,btoa,atob,setTimeout,clearTimeout,setInterval,clearInterval,createImageBitmap,close,focus,blur,postMessage,onappinstalled,onbeforeinstallprompt,crypto,indexedDB,webkitStorageInfo,sessionStorage,localStorage,chrome,nw,applicationCache,onpointerrawupdate,trustedTypes,speechSynthesis,webkitRequestFileSystem,webkitResolveLocalFileSystemURL,openDatabase,caches,ondevicemotion,ondeviceorientation,ondeviceorientationabsolute,require,process,Buffer,global,ENG,SPA,GER,ITA,CHI,RUS,TUR,FRA,POL,JPN,fs,greenworks,error_process,file_share_process,EventEmitter,safari,lang,langnum,allang,mpc,subtype,grep,j,insub,i,setlang,errorloop,kill,sizeit,context,BufferLoader,intrus,glimpse,jwata,jwatb,jwatc,impact,whacklong,whackshort,whack45,jimaya,genscry,jhmoving,snig,grunt,runS,runM,runL,walk,buzz,movewind,inst,gappear,lockin,floco,map,ml,youmap,incmap,swp,cornered,walkoffs,vids,vl,spyrooms,roomlist,keylist,itemlist,il,events,roomser,randomitems,repcosc,vt,vidall,cvid,chvid,cnow,vpon,roompairs,sagot,vidstart,vidend,vidcurs,vidon,vidlast,flicker,flicknew,spaco,promgo,promnow,sflip,exflip,exflipnow,ambsgo,sendflip,cursel,snear,sfar,jclose,resamb,resheart,newghost,quesnow,talkpos,gready,quescount,queson,subend,guidenow,inton,intover,gover,goinst,gofind,gofound,guestrooms,guestsin,rescue,ghostNow,ghostNear,ghostSel,ghostPrev,setev,setbox,ghostpres,ghostfade,peeps,gnames,dks,yes,res,mHell,mName,mWho,gMay,gWho,gCh,gNo,volco,gPos,allGv,curcomp,gint,ghosts,bright,colour,mastvol,gop,jwords,jwort,usi,jcatem,jhcatches,jhcatch,jw,jtc,jtime,whack,inwhack,goinsight,flee,rescon,gogame,butlen,conon,gvision,setgo,ambresvol,setvs,subon,adon,adoff,repsnow,metmax,emfgo,wig,golo,gdir,jdir,pairA,pairB,prepair,pairnow,fulls,splitL,splitR,medlist,csX,csY,spinblok,menon,itemon,unsafe,gounsafe,save,goachieve,Atex,csA,csB,csDR,lincur,opars,selit,selprev,selv,selvprev,seltex,pairbo,pairover,prep,pairon,csexits,selNow,selExit,selPanel,itemget,itemtoget,keytoget,csrooms,infon,infostack,ff,mensel,menlay,rason,menew,mensav,configon,conID,arspin,aret,csXL,csXR,csCN,csYT,flipon,sloop,slooplen,slook,ambflip,ambfad,amco,ambstak,ambvol,ambience,sambience,feet,started,ending,checknum,itemwhere,walkTO,behindTO,jwTO,menmusTO,menTO,ambTO,linkTO,talkTO,pairTO,poverTO,emfTO,messTO,infoTO,savTO,safeTO,proTO,getTO,repTO,zTO,camTO,curseTO,detTO,avTO,compTO,subaTO,subbTO,adTO,jsTO,subTO,wakeTO,cursTO,replay,prerep,pairs,panelon,panswitch,inlift,liftfloor,stairs,jhfloor,jimshout,pos,floor,newfloor,jim,jimfree,jimp,jmop,jsp,jhchange,floorspeed,jimbored,jspeak,lockpick,jimtype,jimext,gametype,progress,quickresc,florad,florpos,floorGv,exempt,pswitch,ButOneLink,ButTwoLink,fwd,trantype,corn,npos,rompos,guestpos,posd,clash,statvisgo,statvis,jhatpos,jhatstairs,jhvistime,jhartime,locjump,inroom,keyon,keylook,hide,goroom,facedoor,tabface,gofwd,roomlink,wakelink,atdel,tempcols,jhdec,sjump,jhwait,jhinroom,jhsearch,setseen,jhbath,hideset,hideseq,jhnext,gohide,goattack,gostore,storeat,atmove,jhprox,jheard,spy,prevl,spyvers,ls,le,lsvid,evex,intercept,interrupt,lit,litlocs,oddson,oz,dComp,dCal,pdCal,nCal,mCal,dDir,comPos,comTarg,mapoffx,mapoffy,mapxwid,mapywid,dnorm,dflip,nesw,msr,yang,ux,uy,uv,lv,rv,tpm,active,activeb,mblock,searchon,runturn,handle,moving,runstop,avail,trig,trigo,trigtime,tneg,clhour,clmin,clsec,md,mof,subgo,subnow,subvers,dirs,jhmc,jhwalk,attack,attackspeed,postconf,hiding,jhLOS,cansee,hidewait,giggle,behindyou,heardher,menover,bookover,bookon,typover,boxover,emfon,askintover,whackon,ghostint,gseen,gobuz,anson,evpon,evpover,opsblock,exblok,speakover,jhend,scryon,prescry,scryavail,doorcall,goheard,scryover,gonow,cluegen,gorec,gentem,genpik,ranser,evphid,evpcol,evad,compcol,gocomp,scrycol,scrysoon,scrysn,scrywait,hidrooms,firstspeak,firstconv,firstpair,firstmirror,firstcomp,firstevp,firstjim,firstkey,firstwake,firstguest,callout,reply,volFizzMax,volBoxMax,volNoiseMax,volAmbsMax,volJHMax,jimvol,jimpan,panJH,ghostpans,ambspan,panAmbs,ambsdir,ambsvol,ambspos,amch,preambs,zvo,zvot,menvo,allGd,ghostdis,ghostdel,gpop,volGhostMax,gsnow,radtemp,loopmax,adel,adels,avdels,jhfeet,breath,bspeed,bnow,bcoun,bdel,brun,leaving,spotwait,linkon,arson,arslr,touchon,spotfx,setspotJ,setspot,lopass,loptarg,lopSpeed,lopgo,lopgot,macbut,nixon,nums,countsec,countmin,bron,repsflip,prereps,headflip,prehead,subflip,texlen,ico,tico,itype,icc,atype,preico,itpage,colnew,selnew,askov,askon,pairsel,conov,revlist,revpage,winw,winh,seth,setw,vidw,vidh,setop,setleft,fsize,isize,evflo,ptml,rtml,bgs,samps,sourceA,sourceB,sourceC,sourceD,sourceE,sourceF,sourceX,sourceHeart,sourceJHA,sourceJHB,sourceOneA,sourceOneB,sourceDistA,sourceDistB,sourceEVP,sourceEVPfizz,sourceEVPnoise,sourceEVPmaster,sourceGhostSpot,audioEVrep,audioEVrepEcho,audioEVrepRev,audioGhost,audioGhostSpot,audioLA,audioLB,audioExt,audioClue,audioLoops,audioMenu,gainNodeMAS,gainNodeA,gainNodeB,gainNodeC,gainNodeD,gainNodeE,gainNodeF,gainNodeX,gainNodeHeart,gainNodeEVP,gainNodeEVPfizz,gainNodeEVPnoise,gainNodeJHA,gainNodeJHB,gainNodeAmbsA,gainNodeAmbsB,panNodeJHA,panNodeJHB,panNodeAmbsA,panNodeAmbsB,gainNodeDistA,gainNodeDistB,gainNodeOneA,gainNodeOneB,gainNodeEVrep,gainNodeEVrepEcho,gainNodeEVrepRev,gainNodeLA,gainNodeLB,gainNodeLMAS,gainNodeSL,gainNodeExt,gainNodeClue,gainNodeMenu,gainNodeWake,gainNodeScry,gainNodeVid,gainNodeGhostSpot,gainNodeZP,gainNodeGhost,sourceGhost,panNodeGhost,bufferLoader,playGhost,goGhost,gos0Int,gos1Int,gos2Int,gos3Int,gos4Int,repGhost0,repGhost1,repGhost2,repGhost3,repGhost4,compressor,filterA,filterB,filterEVP,mayfil,filterMaya,playVision,playSamp,playBreath,playHeart,playStatic,playFizz,playNoise,playVers,playSpot,playJHvers,playJH,playDist,playOne,playOneA,playOneB,playExt,goplayExt,playAmbs,goplayAmbs,wakesamp,playWake,goplayWake,playScry,goplayScry,playClue,goplayClue,playSL,goplayLoops,setitems,showits,showrevs,collect,showfind,nowsafe,nowunsafe,goInfo,goSaved,goHelp,grabops,hearlist,f,nodes,todes,volmap,vs,v,hl,conbri,convol,subad,setsubad,setsub,fixstart,msubtex,keydown,boxes,zo1,zo2,zo3,temchek,subchek,gprev,gpeps,vcheck,gset,gsetTO,cupo,jhtemp,plon,temap,testX,testY,listest,quickon,footflip,footrot,inon,menuTog,menuOn,menuOff,scryops,showroom,conselops,select,goReps,goHead,mayaSpeak,mayaSpeakPlay,ghostSpeak,ghostSpeakPlay,subtime,goSub,evpQuesResp,evpPairResp,repDK,evpEnd,resits,questop,evpFirstResp,showghost,hideghost,compon,compoff,EVPton,EVPtoff,jhalert,types,gotut,gopro,exit,addgen,startnew,gokeys,cursred,moco,touchgo,touchstop,skipwake,skiphole,menCRS,menl,endrep,fadz,clearmen,clearevs,clearars,cursrot,cursres,cursdim,goPair,trypair,ambshear,jimhear,ghosthear,forcespin,spinleft,spinright,openbook,closebook,sideQon,sideQoff,move,setbreath,setfloor,startvid,quickvid,govid,logit,arrival,setpick,jhmove,getprox,adjimp,jimad,barco,storeattack,setattack,spyhole,jimgoes,spyvid,sethide,getdis,genhear,walkaway,insight,seeyou,conform,setgig,newmirror,newEVP,setghost,ghostoff,opsops,goend,runch,vidloop,checkcon,gocons,butson,axon,axgo,buts,consel,prepage,conmen,conlay,presel,nowcon,precon,setbut,setops,ldpos,mencons,laycons,setldot,reshi,clearits,setpage,setcurs,showsub,subco,startzvid,evposs,wakenow,wakerooms,gowhack,jimhide,setcandle,sethands,setdist,setambsvol,setjvol,setgvol,setvolgo,setfil,flc,audiocheck,comploop,ptxt,slowloop,gameloop,dipamb,swapamb,setamcoA,setamcoB,soundswap,flashINT,floc,flod,debug,flash,flash2,destack,delist,vidInt,cursInt,gameInt,audInt,errInt,slowInt,compInt,startints,startInt,checkgo,clearints,startgame,menmusic,setgint,setcomp,serco,loadGame,setprog,showprog,achieve,goAch,gw_init,gw_cloud,gw_lang,fun,newGame,saveGame,intsc,showinst,closeint,finow,gofinal,fingo,controlon,controloff,requestAnimFrame,frep,od,ndt,camgo,gDir,comAd,comIn,comVib,audioAmbsA,audioAmbsB,audioWake,audioScry,gesfrom,vct,chekInt,lod,conspeakon,vdiv,ambspeed,voiceon
window,object,parent,opener,top,length,frames,closed,location,self,window,document,name,customElements,history,locationbar,menubar,personalbar,scrollbars,statusbar,toolbar,status,frameElement,navigator,origin,external,screen,innerWidth,innerHeight,scrollX,pageXOffset,scrollY,pageYOffset,visualViewport,screenX,screenY,outerWidth,outerHeight,devicePixelRatio,clientInformation,screenLeft,screenTop,defaultStatus,defaultstatus,styleMedia,onsearch,isSecureContext,onabort,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,onauxclick,ongotpointercapture,onlostpointercapture,onpointerdown,onpointermove,onpointerup,onpointercancel,onpointerover,onpointerout,onpointerenter,onpointerleave,onselectstart,onselectionchange,onanimationend,onanimationiteration,onanimationstart,ontransitionend,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage,onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload,performance,stop,open,alert,confirm,prompt,print,queueMicrotask,requestAnimationFrame,cancelAnimationFrame,captureEvents,releaseEvents,requestIdleCallback,cancelIdleCallback,getComputedStyle,matchMedia,moveTo,moveBy,resizeTo,resizeBy,scroll,scrollTo,scrollBy,getSelection,find,webkitRequestAnimationFrame,webkitCancelAnimationFrame,fetch,btoa,atob,setTimeout,clearTimeout,setInterval,clearInterval,createImageBitmap,close,focus,blur,postMessage,onappinstalled,onbeforeinstallprompt,crypto,indexedDB,webkitStorageInfo,sessionStorage,localStorage,chrome,nw,applicationCache,onpointerrawupdate,trustedTypes,speechSynthesis,webkitRequestFileSystem,webkitResolveLocalFileSystemURL,openDatabase,caches,ondevicemotion,ondeviceorientation,ondeviceorientationabsolute,require,process,Buffer,global,ENG,SPA,GER,ITA,CHI,RUS,TUR,FRA,POL,JPN,fs,greenworks,error_process,file_share_process,EventEmitter,safari,lang,langnum,allang,mpc,subtype,grep,j,insub,i,setlang,errorloop,kill,sizeit,context,BufferLoader,intrus,glimpse,jwata,jwatb,jwatc,impact,whacklong,whackshort,whack45,jimaya,genscry,jhmoving,snig,grunt,runS,runM,runL,walk,buzz,movewind,inst,gappear,lockin,floco,map,ml,youmap,incmap,swp,cornered,walkoffs,vids,vl,spyrooms,roomlist,keylist,itemlist,il,events,roomser,randomitems,repcosc,vt,vidall,cvid,chvid,cnow,vpon,roompairs,sagot,vidstart,vidend,vidcurs,vidon,vidlast,flicker,flicknew,spaco,promgo,promnow,sflip,exflip,exflipnow,ambsgo,sendflip,cursel,snear,sfar,jclose,resamb,resheart,newghost,quesnow,talkpos,gready,quescount,queson,subend,guidenow,inton,intover,gover,goinst,gofind,gofound,guestrooms,guestsin,rescue,ghostNow,ghostNear,ghostSel,ghostPrev,setev,setbox,ghostpres,ghostfade,peeps,gnames,dks,yes,res,mHell,mName,mWho,gMay,gWho,gCh,gNo,volco,gPos,allGv,curcomp,gint,ghosts,bright,colour,mastvol,gop,jwords,jwort,usi,jcatem,jhcatches,jhcatch,jw,jtc,jtime,whack,inwhack,goinsight,flee,rescon,gogame,butlen,conon,gvision,setgo,ambresvol,setvs,subon,adon,adoff,repsnow,metmax,emfgo,wig,golo,gdir,jdir,pairA,pairB,prepair,pairnow,fulls,splitL,splitR,medlist,csX,csY,spinblok,menon,itemon,unsafe,gounsafe,save,goachieve,Atex,csA,csB,csDR,lincur,opars,selit,selprev,selv,selvprev,seltex,pairbo,pairover,prep,pairon,csexits,selNow,selExit,selPanel,itemget,itemtoget,keytoget,csrooms,infon,infostack,ff,mensel,menlay,rason,menew,mensav,configon,conID,arspin,aret,csXL,csXR,csCN,csYT,flipon,sloop,slooplen,slook,ambflip,ambfad,amco,ambstak,ambvol,ambience,sambience,feet,started,ending,checknum,itemwhere,walkTO,behindTO,jwTO,menmusTO,menTO,ambTO,linkTO,talkTO,pairTO,poverTO,emfTO,messTO,infoTO,savTO,safeTO,proTO,getTO,repTO,zTO,camTO,curseTO,detTO,avTO,compTO,subaTO,subbTO,adTO,jsTO,subTO,wakeTO,cursTO,replay,prerep,pairs,panelon,panswitch,inlift,liftfloor,stairs,jhfloor,jimshout,pos,floor,newfloor,jim,jimfree,jimp,jmop,jsp,jhchange,floorspeed,jimbored,jspeak,lockpick,jimtype,jimext,gametype,progress,quickresc,florad,florpos,floorGv,exempt,pswitch,ButOneLink,ButTwoLink,fwd,trantype,corn,npos,rompos,guestpos,posd,clash,statvisgo,statvis,jhatpos,jhatstairs,jhvistime,jhartime,locjump,inroom,keyon,keylook,hide,goroom,facedoor,tabface,gofwd,roomlink,wakelink,atdel,tempcols,jhdec,sjump,jhwait,jhinroom,jhsearch,setseen,jhbath,hideset,hideseq,jhnext,gohide,goattack,gostore,storeat,atmove,jhprox,jheard,spy,prevl,spyvers,ls,le,lsvid,evex,intercept,interrupt,lit,litlocs,oddson,oz,dComp,dCal,pdCal,nCal,mCal,dDir,comPos,comTarg,mapoffx,mapoffy,mapxwid,mapywid,dnorm,dflip,nesw,msr,yang,ux,uy,uv,lv,rv,tpm,active,activeb,mblock,searchon,runturn,handle,moving,runstop,avail,trig,trigo,trigtime,tneg,clhour,clmin,clsec,md,mof,subgo,subnow,subvers,dirs,jhmc,jhwalk,attack,attackspeed,postconf,hiding,jhLOS,cansee,hidewait,giggle,behindyou,heardher,menover,bookover,bookon,typover,boxover,emfon,askintover,whackon,ghostint,gseen,gobuz,anson,evpon,evpover,opsblock,exblok,speakover,jhend,scryon,prescry,scryavail,doorcall,goheard,scryover,gonow,cluegen,gorec,gentem,genpik,ranser,evphid,evpcol,evad,compcol,gocomp,scrycol,scrysoon,scrysn,scrywait,hidrooms,firstspeak,firstconv,firstpair,firstmirror,firstcomp,firstevp,firstjim,firstkey,firstwake,firstguest,callout,reply,volFizzMax,volBoxMax,volNoiseMax,volAmbsMax,volJHMax,jimvol,jimpan,panJH,ghostpans,ambspan,panAmbs,ambsdir,ambsvol,ambspos,amch,preambs,zvo,zvot,menvo,allGd,ghostdis,ghostdel,gpop,volGhostMax,gsnow,radtemp,loopmax,adel,adels,avdels,jhfeet,breath,bspeed,bnow,bcoun,bdel,brun,leaving,spotwait,linkon,arson,arslr,touchon,spotfx,setspotJ,setspot,lopass,loptarg,lopSpeed,lopgo,lopgot,macbut,nixon,nums,countsec,countmin,bron,repsflip,prereps,headflip,prehead,subflip,texlen,ico,tico,itype,icc,atype,preico,itpage,colnew,selnew,askov,askon,pairsel,conov,revlist,revpage,winw,winh,seth,setw,vidw,vidh,setop,setleft,fsize,isize,evflo,ptml,rtml,bgs,samps,sourceA,sourceB,sourceC,sourceD,sourceE,sourceF,sourceX,sourceHeart,sourceJHA,sourceJHB,sourceOneA,sourceOneB,sourceDistA,sourceDistB,sourceEVP,sourceEVPfizz,sourceEVPnoise,sourceEVPmaster,sourceGhostSpot,audioEVrep,audioEVrepEcho,audioEVrepRev,audioGhost,audioGhostSpot,audioLA,audioLB,audioExt,audioClue,audioLoops,audioMenu,gainNodeMAS,gainNodeA,gainNodeB,gainNodeC,gainNodeD,gainNodeE,gainNodeF,gainNodeX,gainNodeHeart,gainNodeEVP,gainNodeEVPfizz,gainNodeEVPnoise,gainNodeJHA,gainNodeJHB,gainNodeAmbsA,gainNodeAmbsB,panNodeJHA,panNodeJHB,panNodeAmbsA,panNodeAmbsB,gainNodeDistA,gainNodeDistB,gainNodeOneA,gainNodeOneB,gainNodeEVrep,gainNodeEVrepEcho,gainNodeEVrepRev,gainNodeLA,gainNodeLB,gainNodeLMAS,gainNodeSL,gainNodeExt,gainNodeClue,gainNodeMenu,gainNodeWake,gainNodeScry,gainNodeVid,gainNodeGhostSpot,gainNodeZP,gainNodeGhost,sourceGhost,panNodeGhost,bufferLoader,playGhost,goGhost,gos0Int,gos1Int,gos2Int,gos3Int,gos4Int,repGhost0,repGhost1,repGhost2,repGhost3,repGhost4,compressor,filterA,filterB,filterEVP,mayfil,filterMaya,playVision,playSamp,playBreath,playHeart,playStatic,playFizz,playNoise,playVers,playSpot,playJHvers,playJH,playDist,playOne,playOneA,playOneB,playExt,goplayExt,playAmbs,goplayAmbs,wakesamp,playWake,goplayWake,playScry,goplayScry,playClue,goplayClue,playSL,goplayLoops,setitems,showits,showrevs,collect,showfind,nowsafe,nowunsafe,goInfo,goSaved,goHelp,grabops,hearlist,f,nodes,todes,volmap,vs,v,hl,conbri,convol,subad,setsubad,setsub,fixstart,msubtex,keydown,boxes,zo1,zo2,zo3,temchek,subchek,gprev,gpeps,vcheck,gset,gsetTO,cupo,jhtemp,plon,temap,testX,testY,listest,quickon,footflip,footrot,inon,menuTog,menuOn,menuOff,scryops,showroom,conselops,select,goReps,goHead,mayaSpeak,mayaSpeakPlay,ghostSpeak,ghostSpeakPlay,subtime,goSub,evpQuesResp,evpPairResp,repDK,evpEnd,resits,questop,evpFirstResp,showghost,hideghost,compon,compoff,EVPton,EVPtoff,jhalert,types,gotut,gopro,exit,addgen,startnew,gokeys,cursred,moco,touchgo,touchstop,skipwake,skiphole,menCRS,menl,endrep,fadz,clearmen,clearevs,clearars,cursrot,cursres,cursdim,goPair,trypair,ambshear,jimhear,ghosthear,forcespin,spinleft,spinright,openbook,closebook,sideQon,sideQoff,move,setbreath,setfloor,startvid,quickvid,govid,logit,arrival,setpick,jhmove,getprox,adjimp,jimad,barco,storeattack,setattack,spyhole,jimgoes,spyvid,sethide,getdis,genhear,walkaway,insight,seeyou,conform,setgig,newmirror,newEVP,setghost,ghostoff,opsops,goend,runch,vidloop,checkcon,gocons,butson,axon,axgo,buts,consel,prepage,conmen,conlay,presel,nowcon,precon,setbut,setops,ldpos,mencons,laycons,setldot,reshi,clearits,setpage,setcurs,showsub,subco,startzvid,evposs,wakenow,wakerooms,gowhack,jimhide,setcandle,sethands,setdist,setambsvol,setjvol,setgvol,setvolgo,setfil,flc,audiocheck,comploop,ptxt,slowloop,gameloop,dipamb,swapamb,setamcoA,setamcoB,soundswap,flashINT,floc,flod,debug,flash,flash2,destack,delist,vidInt,cursInt,gameInt,audInt,errInt,slowInt,compInt,startints,startInt,checkgo,clearints,startgame,menmusic,setgint,setcomp,serco,loadGame,setprog,showprog,achieve,goAch,gw_init,gw_cloud,gw_lang,fun,newGame,saveGame,intsc,showinst,closeint,finow,gofinal,fingo,controlon,controloff,requestAnimFrame,frep,od,ndt,camgo,gDir,comAd,comIn,comVib,audioAmbsA,audioAmbsB,audioWake,audioScry,gesfrom,vct,chekInt,lod,conspeakon,vdiv,ambspeed,voiceon
document,object,location
name,string,
customElements,object,
history,object,
locationbar,object,
menubar,object,
personalbar,object,
scrollbars,object,
statusbar,object,
toolbar,object,
status,string,
frameElement,object,
navigator,object,
origin,string,chrome-extension://mnceojblkdhadkikjpllbmbhmcffacik
external,object,
screen,object,
innerWidth,number,1280
innerHeight,number,800
scrollX,number,0
pageXOffset,number,0
scrollY,number,0
pageYOffset,number,0
visualViewport,object,
screenX,number,0
screenY,number,0
outerWidth,number,1280
outerHeight,number,800
devicePixelRatio,number,2
clientInformation,object,
screenLeft,number,0
screenTop,number,0
defaultStatus,string,
defaultstatus,string,
styleMedia,object,
onsearch,object,
isSecureContext,boolean,true
onabort,object,
onblur,object,
oncancel,object,
oncanplay,object,
oncanplaythrough,object,
onchange,object,
onclick,object,
onclose,object,
oncontextmenu,object,
oncuechange,object,
ondblclick,object,
ondrag,object,
ondragend,object,
ondragenter,object,
ondragleave,object,
ondragover,object,
ondragstart,object,
ondrop,object,
ondurationchange,object,
onemptied,object,
onended,object,
onerror,object,
onfocus,object,
onformdata,object,
oninput,object,
oninvalid,object,
onkeydown,object,
onkeypress,object,
onkeyup,object,
onload,function,0
onloadeddata,object,
onloadedmetadata,object,
onloadstart,object,
onmousedown,object,
onmouseenter,object,
onmouseleave,object,
onmousemove,object,
onmouseout,object,
onmouseover,object,
onmouseup,object,
onmousewheel,object,
onpause,object,
onplay,object,
onplaying,object,
onprogress,object,
onratechange,object,
onreset,object,
onresize,function,0
onscroll,object,
onseeked,object,
onseeking,object,
onselect,object,
onstalled,object,
onsubmit,object,
onsuspend,object,
ontimeupdate,object,
ontoggle,object,
onvolumechange,object,
onwaiting,object,
onwebkitanimationend,object,
onwebkitanimationiteration,object,
onwebkitanimationstart,object,
onwebkittransitionend,object,
onwheel,object,
onauxclick,object,
ongotpointercapture,object,
onlostpointercapture,object,
onpointerdown,object,
onpointermove,object,
onpointerup,object,
onpointercancel,object,
onpointerover,object,
onpointerout,object,
onpointerenter,object,
onpointerleave,object,
onselectstart,object,
onselectionchange,object,
onanimationend,object,
onanimationiteration,object,
onanimationstart,object,
ontransitionend,object,
onafterprint,object,
onbeforeprint,object,
onbeforeunload,object,
onhashchange,object,
onlanguagechange,object,
onmessage,object,
onmessageerror,object,
onoffline,object,
ononline,object,
onpagehide,object,
onpageshow,object,
onpopstate,object,
onrejectionhandled,object,
onstorage,object,
onunhandledrejection,object,
onunload,object,
performance,object,
stop,function,0
open,function,0
alert,function,0
confirm,function,0
prompt,object,+...
print,function,0
queueMicrotask,function,1
requestAnimationFrame,function,1
cancelAnimationFrame,function,1
captureEvents,function,0
releaseEvents,function,0
requestIdleCallback,function,1
cancelIdleCallback,function,1
getComputedStyle,function,1
matchMedia,function,1
moveTo,function,2
moveBy,function,2
resizeTo,function,2
resizeBy,function,2
scroll,function,0
scrollTo,function,0
scrollBy,function,0
getSelection,function,0
find,function,0
webkitRequestAnimationFrame,function,1
webkitCancelAnimationFrame,function,1
fetch,function,1
btoa,function,1
atob,function,1
setTimeout,function,1
clearTimeout,function,0
setInterval,function,1
clearInterval,function,0
createImageBitmap,function,1
close,function,0
focus,function,0
blur,function,0
postMessage,function,1
onappinstalled,object,
onbeforeinstallprompt,object,
crypto,object,
indexedDB,object,
webkitStorageInfo,object,
sessionStorage,object,
localStorage,object,G0IR86,GCRMT9,G0RMT30,G0IC32,GCIR117,G0RMT36,GCIC12,GCIA89,GCPRO,G0RES,GCIC105,GCIC96,G0RMT57,GCKEY27,G0IA103,G0LGR1,GCIC113,GCLGR4,GCVCC,G0KEY106,GCRMT74,GCRML77,WAK,GCIR98,GCRMT10,G0KEY15,G0IA4,G0IR97,GCIC95,G0IA117,G0KEY41,G0IC49,G0IR23,GCIR130,GCRML3,G0IC105,GCIR57,GCIA122,GCIA62,G0KEY93,GCIR16,GCIA51,GCKEY103,GCIA85,G0IR91,G0KEY32,G0IR113,G0EVN3,GCIA38,G0RMT10,GCRML27,GCIC27,G0IR35,G0IR63,GCRMT55,G0IA104,G0IR28,G0CMP,G0KEY39,G0KEY115,GCRMT35,GCIR32,GCRMT37,GCJE,GCKEY57,GCKEY58,G0IA36,G0IA53,GCRMT7,GCIR53,G0LGI0,G0IC100,GCRMT4,G0RML34,GCIL18,G0IA44,GCIR42,GCKEY68,GCIA106,GCKEY115,G0IC24,G0IC117,G0KEY121,G0KEY3,G01ST,GCIC52,GCIR114,G0IR17,GCRMT56,G0KEY34,GCKEY131,G0RMT35,G0IR106,GCIA93,G0RML53,G0RMT58,GCIL25,G0IA20,GCIL93,G0RML75,G0IC129,G0RML60,GCKEY64,G0IR9,GCRML73,GCIC19,G0IR22,G0IC11,G0IC4,GCIC100,G0IC74,GCIA5,GCIC30,G0KEY99,GCIR22,GCIC123,G0RML46,G0KEY125,G0IA9,G0IR89,G0GIN1,G0IC101,GCRMT42,GCIR79,GCIR78,G0IA97,G0KEY68,GCIL98,G0IR44,G0RMT15,GCIR124,GCRML9,G0IC6,GCIA116,G0J2,G0IC68,GCIC37,GCIC59,GCRML60,G0IC83,GCIA22,GCRML47,GCIR106,GCKEY81,GCIA126,GCIC130,GCRMT23,GCKEY76,GCIR123,G0KEY46,G0IC47,G0IR52,GCIR26,GCIR23,G0IC114,GCRL,G0IA63,GCIL23,GCKEY126,GCIC90,G0RMT26,GCIA96,G0IR11,G0RML32,G0RML21,GCKEY50,G0IA7,G0IC61,G0IC106,GCIC84,GCFIL,G0IR77,G0RML48,G0IR126,GCIC39,G0IR59,G0IA6,GCIR120,G0LGI3,G0RML44,GCIC65,G0RMT65,G0IR31,GCIL13,G0IA10,G0RMT13,G0KEY31,GCIR97,G0IR60,G0IR7,GCIA112,GCRMT32,G0IA29,G0IR99,G0RML0,GCKEY94,GCIA36,G0KEY118,G0IA113,G0IA77,GCVSO,G0IC50,G0IA68,G0IA49,G0RML12,GCIA73,GCIR2,G0IR54,G0IC64,G0RML30,GCIA57,GCIR72,G0IC43,G0IC95,G0RMT7,G0IR122,ACH7,G0IR34,GCRMT28,GCIR20,GCLGI1,G0IA89,G0IA47,GCRML21,G0IA37,GCIL96,GCIA56,GCIA72,GCIC41,GCIC7,G0IA52,GCIL17,G0LIF,G0RMT33,GCIC111,ACH4,GCIA20,GCKEY2,G0IR45,GCRMT11,GCRMT43,G0IA125,GCIL126,G0RMT23,G0KEY56,G0LGR0,GCKEY31,G0IC51,G0RMT0,G0IA18,G0IA11,G0IR8,G0IR68,G0IR40,G0IC96,G0KEY57,GCIL92,GCKEY29,GCIC77,GCKEY73,G0KEY124,GCIL128,GCIA46,G0KEY52,G0RML78,GCIR11,G0IL129,G0IR130,G0IR38,G0IR67,GCKEY1,G0EVN4,G0IA75,GCIA41,GCASA,GCKEY120,GCRMT36,GCIC118,G0RML64,G0KEY30,G0IC77,GCIA64,GCIR125,G0IA66,G0IC45,GCIC22,G0KEY64,GCRML71,GCIR83,GCIL100,GCIA0,G0IA40,GCKEY109,G0IR98,G0RML42,GCRMT51,G0IR50,G0IC57,GCIC79,GCIC117,GCLGR0,GCRMT40,G0IC109,G0KEY111,G0IA13,ACH3,GCIL122,G0IR104,GCKEY110,G0IC128,G0VEH,GCKEY129,G0IC82,GCKEY33,GCRMA,GCIC121,G0IR93,G0IC94,GCIR118,GCKEY108,GCIA17,G0IA50,GCRMT1,GCIR0,G0KEY75,G0RMT48,GCKEY51,GCRMT21,GCIC64,G0IA51,G0IR71,G0IC107,G0IR76,GCRMT72,G0RML26,G0P2,GCSVS,GCIA129,GCIR40,GCIC128,G0IC87,G0KEY58,G0RML2,GCIR49,G0IA94,G0IA84,GCIR38,GCRML67,GCIC15,GCRMT47,GCRML14,GCRMT30,G0IR101,G0IA22,GCRMT68,G0IC15,G0IL125,GCIR61,G0RML38,GCIA61,G0RML28,G0IR27,GCKEY12,GCIC107,GCKEY23,GCIA86,GCKEY32,GCRMT15,G0IR36,G0KEY84,GCIA69,G0IA21,GCIC21,GCIA101,GCIC101,G0IC81,GCIR3,G0RMT54,G0RML57,GCIA45,G0IC58,G0KEY83,GCIR77,GCKEY40,GCKEY90,G0IC5,GCKEY106,GCKEY93,G0IL128,GCRML2,G0IA118,G0RML39,GCLF,GCIL94,GCKEY80,GCKEY119,G0IA128,G0RMT19,G0JBT,G0IR19,GCKEY113,GCKEY22,G0IA129,GCIR39,GCRML56,G0IR131,GCRML48,GCRML44,G0END,GCRMT24,G0IA91,G0IA46,G0RML35,GCIR4,GCRML72,G0J1,GCIA50,GCIL129,G0IC71,GCIC47,G0IA92,GCRMT33,G0RML5,GCIA10,G0IA65,GCIL9,GCIL24,GCVEC,GCIA80,GCKEY0,G0IR5,GCIL19,G0IC110,GCIC75,GCIA47,G0IR48,GCIA111,G0SVS,G0FIL,G0KEY122,GCIA114,G0IR96,G0IR74,G0GR3,GCRML12,G0KEY82,G0IA56,GCRMT62,G0IC30,G0IA35,G0IA83,GCIL101,G0IA54,GCSTA,GCIA42,G0KEY18,GCIR65,GCIR60,GCIA100,GCIA6,GCIC45,G0IR51,GCKEY52,GCASB,GCJ0,GCLGI2,GCIR128,GCKEY53,GCIA31,GCIR69,G0IA61,G0IR62,GCIA103,GCIA27,GCIC38,G0IC35,G0KEY25,GCIC3,GCIA26,G0IR128,GCKEY60,G0IA17,GCIC72,G0IR82,G0IC76,GCRMT49,GCIA2,GCGR0,G0KEY74,GCIC29,GCRML20,GCKEY75,G0J0,G0IC25,GCIR8,G0RML61,G0RMT44,GCLGI3,G0IA115,G0IR118,GCIR29,GCRMT3,G0ASB,GCIC87,GCIA24,GCKEY9,GCIA108,G0RMT6,G0KEY116,G0IR43,G0RMT38,G0IA43,G0RMT78,G0IA8,G0AMB,GCRMT26,GCKEY13,G0IC130,GCIA78,ACH6,GCRML63,GCIA1,GCIC125,GCIC42,GCIC85,G0IA111,G0IC124,GCRMT71,G0KEY50,GCRML41,GCIR14,G0IR47,G0RML58,GCIA37,GCIR66,G0P0,G0RML74,GCIR1,GCIA71,G0IR110,GCKEY124,GCRML31,GCKEY34,G0KEY128,GCIA117,G0KEY59,GCIA11,GCVEH,GCIA29,GCIA102,GCRML62,GCIR111,GCIC126,G0KEY69,GCRML22,GCGIN4,GCIL16,GCIC127,G0LGR3,GCIC32,G0IR90,G0IR100,G0IR75,G0IC2,GCIC53,G0IA112,GCIC73,GCIR6,GCIA33,GCIC99,GCRML53,GCIC91,G0RMT34,G0KEY92,GCKEY116,G0IC17,G0KEY36,GCIR92,G0IC10,GCIR82,GCIA54,G0IA80,GCIA13,G0RML33,G0IC26,GCIC50,G0IA28,GCIR76,G0KEY89,GCRML11,G0RMT74,GCIL22,GCIR113,G0RMT29,GCKEY41,G0IC59,G0KEY17,GCP0,GCIR34,GCIR10,GCIC31,GCIR80,G0EVN2,GCKEY100,G0IR12,GCKEY117,G0RML9,GCIR62,GCIL12,GCKEY61,GCKEY87,GCIC67,G0RML71,GCIA15,GCIR27,vol,G0KEY38,G0IR3,GCIR47,GCRMT67,G0RML1,G0IC41,G0LGI2,G0IR103,GCIC104,GCIC66,GCRMT65,G0KEY29,G0IC66,GCIL115,G0RML3,GCIL26,G0KEY11,G0KEY20,G0RML43,G0KEY42,G0RML15,GCIC63,G0KEY88,G0RML31,GCKEY37,G0RMT5,GCKEY21,G0IC62,G0IL131,G0IC91,G0RMT72,GCIC81,GCKEY104,GCRMT0,G0IA41,G0RML24,G0RMT39,G0IA3,GCKEY77,GCIR100,G0KEY27,G0IR105,GCRML5,G0VID,G0IR21,G0IR112,G0RMT2,GCIR105,G0RML4,GCIC120,G0IA38,G0KEY23,GCIR112,GCKEY125,G0RML29,GCIC129,G0RMT61,G0KEY91,G0IC34,G0IC42,G0IC20,G0RMT41,GCKEY97,G0IR1,G0KEY28,GCKEY102,G0RML47,G0IC52,G0RMT22,GCIC16,GCRMT31,G0IC48,G0IA64,G0RMT8,G0KEY76,G0RML72,G0GR0,GCIA120,GCIA104,GCIL8,G0IR32,GCKEY114,GCKEY86,GCKEY122,GCIL109,GCIL127,GCIC110,G0KEY112,G0IC1,GCIC10,G0LGI1,G0GIN3,G0RML20,GCIA18,G0KEY16,G0RML49,GCIA83,GCIR12,G0RMT20,G0VCC,GCIR86,GCIC55,GCIC98,G0KEY2,G0IA90,GCIC56,G0IR125,GCIL118,G0RML14,G0RMT60,G0RML45,G0RMT69,GCIR56,G0IC72,G0IA93,G0RMT47,GCIA21,GCKEY95,GCIR5,G0KEY61,GCRMT76,GCIA131,G0IR69,GCKEY74,G0IC104,G0RML27,GCIA59,G0GIN2,G0IR78,G0IR16,G0RMT55,G0IA5,GCIR70,G0RML13,GCRML6,GCRMT61,GCVSC,GCIR19,GCIL2,GCKEY72,G0IR94,G0RML7,G0IC12,GCIA127,G0RMT42,GCIA91,G0RMT63,GCBRO,G0IA25,G0IR72,GCRMT75,GCJRM,G0IA114,GCKEY44,G0IC103,GCIL1,GCRMT34,G0RML37,GCKEY127,GCIA30,G0KEY97,GCGR3,G0RML10,GCIC18,G0IA42,GCRML66,GCRMT6,G0IC31,G0IR116,GCKEY18,GCIC82,GCRMT38,G0IC116,G0IC69,GCIA4,GCKEY101,GCIA23,GCIR41,GCKEY55,GCIA3,GCKEY96,G0IR46,G0IC123,GCIC5,GCRML25,G0IR83,G0KEY44,GCRMT48,G0RMT52,G0IL130,GCKEY82,GCIA82,G0IC88,GCRMT29,GCIR119,GCRML42,GCRML74,GCIA25,G0IC46,G0RMT49,GCIC40,G0EVN0,G0RML68,GCKEY65,GCRML23,GCIR108,G0RMT71,G0JRM,GCIC61,GCLGR3,G0IA30,GCIWA,G0KEY126,G0IR65,G0KEY33,G0IC56,GCEXE,ACH13,G0IA100,G0KEY12,G0IA85,G0KEY26,G0KEY63,G0IA39,G0KEY47,GCIA53,G0IC102,GCRML76,G0IR129,G0IC84,GCRES,ACH9,G0IR29,G0KEY113,GCIL104,G0IA106,GCJ2,G0IR92,G0IC119,GCIL102,G0IR24,G0RML52,G0IC89,LANG,G0IC60,G0KEY67,G0KEY48,G0IC7,GCIC23,GCEVN0,GCRML68,G0IC125,G0IC55,GCKEY78,GCKEY59,GCIL117,GCRMT19,G0RMT68,GCIC74,GCGIN3,GCIL119,G0KEY120,G0IR55,GCIA99,GCIA63,GCIL5,G0RMT62,GCKEY42,GCRMT18,G0RML66,GCIA52,G0IA55,GCIR51,GCKEY128,G0KEY129,G0IC21,G0IR95,G0IR123,GCIL114,G0KEY117,GCIC103,GCVID,G0KEY5,GCRML39,GCKEY36,G0KEY85,GCRML18,GCRMT64,G0KEY7,G0IA57,ACH8,GCIL6,GCIR73,G0IC80,GCKEY20,G0RMB,G0IR39,G0RMT3,ACH1,GCIA107,GCIR84,GCKEY3,GCIA98,G0RML22,GCIC83,G0IA31,G0GR5,G0KEY94,GCIA125,G0IC38,G0GR4,G0KEY109,G0IC27,GCRML29,GCIC34,GCKEY99,G0KEY78,GCIA35,GCIR17,GCKEY79,G0RML56,GCIR129,GCIC78,G0IA96,GCIA119,G0IR80,GCKEY38,G0KEY24,G0RMT66,GCIR35,GCIA75,G0KEY81,GCIA79,GCIC49,GCIR126,GCIR88,G0IA70,GCRMT53,GCIR28,G0RML17,G0IA58,G0IC54,GCRML70,G0IA105,GCIR110,GCLGR1,G0RML11,GCKEY16,GCIA55,G0RMT70,GCIR94,GCIR90,GCRML10,G0IL127,GCRMT73,G0IC70,GCIL123,G0IC126,GCIR13,G0RMT14,G0IR119,GCIA67,G0IR49,G0IC39,GCIA124,G0RMT24,GCRML49,G0IR121,G0IC93,G0IR120,GCIR81,G0KEY119,G0IC37,GCIC122,G0KEY6,G0IC122,GCRMT46,GCIA34,GCRMT44,G0IC111,G0RMT11,GCRMT59,GCKEY11,GCKEY39,GCIC36,G0KEY102,GCIL108,GCIR18,GCKEY105,GCIC13,GCLGI0,GCKEY67,GCKEY25,GCAMB,GCIC115,GCIR127,G0IC13,G0RMT27,GCRMT25,G0IA123,G0IC127,GCIR7,GCRMT16,G0KEY95,G0IR81,GCRML58,GCIC94,G0KEY77,GCKEY6,GCIC69,GCKEY43,GCKEY84,G0IR26,GCIL97,GCRMT22,G0KEY43,G0IA88,GCRML59,GCKEY54,GCP1,GCRML34,G0IA79,GCRML64,G0IWA,GCIR31,G0RMT40,G0LGI4,G0LGR2,G0KEY54,GCKEY66,GCIC80,GCIC20,G0KEY127,G0IC67,G0RMT75,G0RMT56,G0RML54,G0IC86,G0KEY8,GCRML54,GCRM,G0KEY14,G0RL,G0IA124,G0IR109,GCRML75,G0IR79,G0KEY65,G0RML25,GCIR122,GCIC60,GCRML30,GCIL4,G0IA24,GCIR75,G0IR30,G0IC22,GCIC46,G0KEY13,G0KEY70,GCIA43,G0RMT53,GCIL14,GCIL121,GCKEY71,GCIA123,G0RML69,G0KEY45,G0IA72,GCIR24,GCRML50,G0RMT25,G0BRO,G0IR114,G0IL126,G0RMT28,GCIR63,G0RMT1,GCIL105,G0IC8,GCIR52,GCIL3,GCIC86,G0RMT64,GCIC58,GCKEY19,GCKEY62,GCIA65,GCIR15,G0RML23,GCIR55,GCRML0,GCRML37,G0IC99,G0KEY90,G0KEY4,sat,GCIA44,G0IR14,GCKEY8,GCIC9,GCIR50,GCIR116,GCIC108,GCIR85,G0IA33,GCIR48,GCIC11,GCIA32,GCKEY123,GCIC68,G0KEY98,GCIA130,GCIA49,G0IA19,GCIC102,G0KEY53,GCIC93,GCCMP,GCJ1,G0IA121,G0IR58,GCGIN2,GCRMT50,GCIA16,G0KEY10,G0KEY131,GCIA88,GCIC116,GCIR36,GCIL110,G0IC19,G0IR10,GCGIN1,GCEND,G0RMT46,GCKEY45,G0KEY103,ACH12,GCIC57,GCIL99,ACH5,GCRML61,GCEVN1,GCIC17,GCKEY85,G0RML55,G0IA109,GCRML17,G0RMT18,G0LGR4,GCIL107,G0IR0,GCGR1,GCIA8,G0IR88,G0IA87,G0RMT4,G0IC53,G0IR84,GCKEY118,GCKEY63,GCRML40,G0IA60,GCVSS,G0IC63,GCKEY30,GCIR87,G0IR124,GCIR37,GCIC26,G0IR56,G0KEY107,G0IC33,G0IR70,GCIL130,G0KEY19,GCIA66,GCRMT14,G0IA62,GCIR101,GCKEY28,GCKEY15,G0RMA,GCKEY4,GCPROG,GCIL113,G0IA0,G0IR41,G0P1,GCKEY5,GCIR131,GCIR21,G0ASA,G0IC108,G0IA122,G0IA130,G0KEY100,G0RMT50,GCRML28,G0KEY9,G0IA15,GCIA90,GCIL131,G0IR57,GCIC114,GCRMT52,GCIA60,GCGR2,G0IR6,GCRML8,GCIR109,GCIR67,GCRML65,GCIA7,G0IA102,G0IC40,G0KEY96,G0RMT73,GCIC25,G0RMT31,G0IA99,GCRML19,G0IA119,GCIA95,GCIC70,GCRML7,G0IA71,GCRML43,GCIC88,G0IA27,G0IR13,GCLGR2,GCIR99,G0RMT45,GCIA68,G0IR117,GCIA40,GCIC124,G0IR107,GCKEY88,G0KEY72,GCEVN3,G0RML51,G0GR1,G0KEY66,GCRML69,GCRMT13,GCIL120,G0IC118,G0IA120,G0IR4,GCIC4,GCIC89,GCRML33,G0IC29,G0PROG,GCEVN2,GCIA39,GCIR89,G0IR33,GCIA113,GCIL10,G0IA131,G0IC97,GCRMT57,GCKEY83,G0IC115,GCRML51,GCIC44,GCIC109,GCRML16,G0IR111,GCIR121,G0IC65,G0IA82,GCRML35,G0KEY60,G0RMT9,G0IA26,GCIR107,G0IA108,G0JE,G0IA14,G0IR2,G0IC90,G0IA101,G0RML6,G0IC28,G0RML62,G0IC14,GCIA48,GCIR58,G0IA86,G0IA48,G0RMT76,G0GIN0,G0RML8,GCRML13,GCIA87,GCIL125,G0IC113,GCKEY111,GCIA105,G0IC120,GCIA74,G0IA12,G0KEY22,GCRMT17,GCKEY7,GCIA128,GCRML24,G0IA1,G0IA116,GCRMT2,G0RM,GCIA110,GCIA94,G0IA81,GCIR64,G0LF,GCRML38,G0IC0,GCKEY130,GCKEY121,GCEVN4,GCIC28,G0RML16,G0EVN1,G0RML50,G0IR115,GCKEY24,GCIA76,GCIC119,GCRMT66,GCIC112,G0RMT12,G0IA73,G0VEC,G0IR87,GCIA109,GCRML26,GCIR54,GCRMT78,G0IR25,G0IR73,GCKEY17,GCIC8,G0KEY108,GCIL11,G0IA45,GCKEY35,GCRMT54,GCJEX,G0KEY62,G0RML19,GCIR46,GCRMB,G0KEY130,G0RML76,GCIL21,G0KEY101,GCIA97,G0JEX,G0RMT59,G0IA16,G0KEY21,G0IA126,G0IC98,GCRML55,G0IR66,G0IA95,GCIC51,G0IC18,GCGIN0,GCIC35,G0IA59,GCIR96,GCRML4,G0KEY79,GCIC48,GCKEY107,GCRMT63,G0RML70,G0RML41,GCIR45,G0IA32,G0RML36,GCIC33,G0EXE,GCIC92,GCIC24,GCRMT41,GCKEY92,G0RMT67,GCRML36,GCKEY10,G0KEY104,GCKEY49,GCRMT27,G0VSC,G0IA2,G0IR15,G0IR85,GCKEY69,GCIR33,GCIR59,G0IC73,G0RML59,G0IR61,GCIL111,GCIL0,GCIR103,G0IC75,GCLGI4,G0IA98,GCRML1,G0KEY40,GCRMT58,GCIA19,G0KEY73,GCIC62,GCIR93,GCIA121,G0IR42,GCJBT,GCIA9,G0RMT37,G0RMT43,GCIL95,GCIC2,GCIR71,GCKEY26,G0IR127,G0RMT21,GCIL7,GCIC76,GCKEY14,G0KEY37,GCIC43,G0IR53,GCIR104,G0GIN4,GCIA70,GCRMT70,G0IR102,GCRML45,GCRML32,GCRMT60,G0IA127,G0KEY114,G0IC121,G0IA107,GCIL124,GCIR91,GCIL106,ACH11,G0IC92,G0IA74,GCIC71,GCRMT69,G0IR64,GCIA92,GCRML15,GCLIF,G0IC9,G0KEY51,G0RMT51,G0RML73,GCIR30,G0KEY35,GCRMT20,G0IC23,G0VSO,G0KEY0,GCIR9,GCIC97,GCIR43,G0KEY1,GCRMT8,GCIC54,ACH2,GCIR25,G0RML77,GCRML78,GCKEY112,GCGR5,GCIR115,GCRML52,GCIC14,G0IC3,GCRML46,GCRMT39,GCP2,G0RML63,G0RML18,GCGR4,GCIL112,G0KEY87,GCIL20,GCIA28,GCIA84,GCIR74,GCIL15,GCRMT45,G0VSS,GCIC1,G0IA69,G0IC131,G0IR18,GCKEY48,G0KEY123,GCIA115,G0RMT16,G0IA67,G0IA110,G0KEY80,GCIC106,GCJSH,GCRMT5,bright,G0KEY110,G0RMT17,G0KEY86,GCRMT77,G0KEY49,ACH10,G0IR20,G0KEY105,GCIR102,G0KEY71,GCKEY89,GCKEY98,G0IC85,GCKEY46,G0IR37,GCRML57,GCIR95,G0IA76,G0RMT77,GCKEY70,GCIA12,G0IC44,G0IC36,G0IA78,GCIL116,GCRMT12,GCIC6,GCIR44,GCKEY91,GC1ST,G0STA,G0IA34,GCIA81,GCKEY47,G0IC79,GCKEY56,GCIA77,G0IC78,GCIA118,GCIC131,GCIA58,G0RMT32,G0GR2,G0IA23,GCIR68,GCIC0,G0RML67,G0RML40,G0IR108,GCIL103,G0IC112,G0KEY55,G0IC16,GCIA14,G0JSH,G0RML65
chrome,object,loadTimes,csi,accessibilityFeatures,accessibilityPrivate,activityLogPrivate,alarms,app,arcAppsPrivate,audio,autofillAssistantPrivate,autofillPrivate,automation,autotestPrivate,bluetooth,bluetoothPrivate,bluetoothSocket,bookmarkManagerPrivate,bookmarks,brailleDisplayPrivate,browser,browserAction,browsingData,cast,clipboard,cloudPrintPrivate,commandLinePrivate,commands,contentSettings,contextMenus,cookies,crashReportPrivate,cryptotokenPrivate,dashboardPrivate,dataReductionProxy,debugger,declarativeContent,declarativeNetRequest,declarativeWebRequest,desktopCapture,developerPrivate,displaySource,dns,downloads,enterprise,extension,feedbackPrivate,fileSystem,fontSettings,gcm,hid,history,i18n,identity,identityPrivate,idle,idltest,imageWriterPrivate,input,inputMethodPrivate,instanceID,languageSettingsPrivate,management,mdns,mediaGalleries,metricsPrivate,mimeHandlerPrivate,mojoPrivate,musicManagerPrivate,networking,networkingPrivate,notifications,omnibox,pageAction,pageCapture,passwordsPrivate,permissions,power,printerProvider,privacy,processes,proxy,resourcesPrivate,runtime,safeBrowsingPrivate,serial,sessions,settingsPrivate,signedInDevices,socket,sockets,storage,syncFileSystem,system,systemIndicator,systemPrivate,tabCapture,tabs,topSites,tts,ttsEngine,usb,usersPrivate,webNavigation,webRequest,webViewRequest,webrtcAudioPrivate,webrtcDesktopCapturePrivate,webrtcLoggingPrivate,webstorePrivate,windows
nw,object,App,Clipboard,Menu,MenuItem,Obj,Screen,Shell,Shortcut,Tray,Window,test,global,process,Buffer,require,__filename,__dirname
applicationCache,object,
onpointerrawupdate,object,
trustedTypes,object,
speechSynthesis,object,
webkitRequestFileSystem,function,3
webkitResolveLocalFileSystemURL,function,2
openDatabase,function,4
caches,object,
ondevicemotion,object,
ondeviceorientation,object,
ondeviceorientationabsolute,object,
require,function,0
process,object,__nwjs,version,versions,arch,platform,release,_rawDebug,moduleLoadList,binding,_linkedBinding,_events,_eventsCount,_maxListeners,domain,_exiting,config,dlopen,uptime,_getActiveRequests,_getActiveHandles,reallyExit,_kill,hrtime,cpuUsage,resourceUsage,memoryUsage,kill,exit,openStdin,allowedNodeEnvironmentFlags,assert,features,_fatalException,setUncaughtExceptionCaptureCallback,hasUncaughtExceptionCaptureCallback,emitWarning,nextTick,_tickCallback,_debugProcess,_debugEnd,_startProfilerIdleNotifier,_stopProfilerIdleNotifier,stdout,stdin,stderr,abort,umask,chdir,cwd,env,title,argv,execArgv,pid,ppid,execPath,debugPort,argv0,mainModule
Buffer,function,3
global,object,parent,opener,top,length,frames,closed,location,self,window,document,name,customElements,history,locationbar,menubar,personalbar,scrollbars,statusbar,toolbar,status,frameElement,navigator,origin,external,screen,innerWidth,innerHeight,scrollX,pageXOffset,scrollY,pageYOffset,visualViewport,screenX,screenY,outerWidth,outerHeight,devicePixelRatio,clientInformation,screenLeft,screenTop,defaultStatus,defaultstatus,styleMedia,onsearch,isSecureContext,onabort,onblur,oncancel,oncanplay,oncanplaythrough,onchange,onclick,onclose,oncontextmenu,oncuechange,ondblclick,ondrag,ondragend,ondragenter,ondragleave,ondragover,ondragstart,ondrop,ondurationchange,onemptied,onended,onerror,onfocus,onformdata,oninput,oninvalid,onkeydown,onkeypress,onkeyup,onload,onloadeddata,onloadedmetadata,onloadstart,onmousedown,onmouseenter,onmouseleave,onmousemove,onmouseout,onmouseover,onmouseup,onmousewheel,onpause,onplay,onplaying,onprogress,onratechange,onreset,onresize,onscroll,onseeked,onseeking,onselect,onstalled,onsubmit,onsuspend,ontimeupdate,ontoggle,onvolumechange,onwaiting,onwebkitanimationend,onwebkitanimationiteration,onwebkitanimationstart,onwebkittransitionend,onwheel,onauxclick,ongotpointercapture,onlostpointercapture,onpointerdown,onpointermove,onpointerup,onpointercancel,onpointerover,onpointerout,onpointerenter,onpointerleave,onselectstart,onselectionchange,onanimationend,onanimationiteration,onanimationstart,ontransitionend,onafterprint,onbeforeprint,onbeforeunload,onhashchange,onlanguagechange,onmessage,onmessageerror,onoffline,ononline,onpagehide,onpageshow,onpopstate,onrejectionhandled,onstorage,onunhandledrejection,onunload,performance,stop,open,alert,confirm,prompt,print,queueMicrotask,requestAnimationFrame,cancelAnimationFrame,captureEvents,releaseEvents,requestIdleCallback,cancelIdleCallback,getComputedStyle,matchMedia,moveTo,moveBy,resizeTo,resizeBy,scroll,scrollTo,scrollBy,getSelection,find,webkitRequestAnimationFrame,webkitCancelAnimationFrame,fetch,btoa,atob,setTimeout,clearTimeout,setInterval,clearInterval,createImageBitmap,close,focus,blur,postMessage,onappinstalled,onbeforeinstallprompt,crypto,indexedDB,webkitStorageInfo,sessionStorage,localStorage,chrome,nw,global,clearImmediate,setImmediate,module,__nw_require,require,__dirname,applicationCache,onpointerrawupdate,trustedTypes,speechSynthesis,webkitRequestFileSystem,webkitResolveLocalFileSystemURL,openDatabase,caches,ondevicemotion,ondeviceorientation,ondeviceorientationabsolute,manifest,options,title
ENG,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,extras
SPA,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,extras
GER,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,transcred,extras
ITA,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,transcred,extras
CHI,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,extras,transcred
RUS,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,transcred,extras
TUR,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,transcred,extras
FRA,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,extras
POL,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,extras
JPN,object,mentex,achtex,selx,numwo,numwa,helx,resk,ityptex,intros,substan,subrepa,subrepb,subcall,subin,subnm,subrepc,subob,subs,itexts,ketex,patex,finwords,words,ghostex,headtex,gametex,getex,roomtex,foundtex,alreadytex,adtext,itdetext,keyfinds,gnames,extras,transcred
fs,object,appendFile,appendFileSync,access,accessSync,chown,chownSync,chmod,chmodSync,close,closeSync,copyFile,copyFileSync,createReadStream,createWriteStream,exists,existsSync,fchown,fchownSync,fchmod,fchmodSync,fdatasync,fdatasyncSync,fstat,fstatSync,fsync,fsyncSync,ftruncate,ftruncateSync,futimes,futimesSync,lchown,lchownSync,lchmod,lchmodSync,link,linkSync,lstat,lstatSync,lutimes,lutimesSync,mkdir,mkdirSync,mkdtemp,mkdtempSync,open,openSync,opendir,opendirSync,readdir,readdirSync,read,readSync,readv,readvSync,readFile,readFileSync,readlink,readlinkSync,realpath,realpathSync,rename,renameSync,rmdir,rmdirSync,stat,statSync,symlink,symlinkSync,truncate,truncateSync,unwatchFile,unlink,unlinkSync,utimes,utimesSync,watch,watchFile,writeFile,writeFileSync,write,writeSync,writev,writevSync,Dir,Dirent,Stats,ReadStream,WriteStream,FileReadStream,FileWriteStream,_toUnixTimestamp,F_OK,R_OK,W_OK,X_OK,constants,promises
greenworks,object,_steam_events,Utils,activateAchievement,indicateAchievementProgress,getAchievement,clearAchievement,getAchievementNames,getNumberOfAchievements,EncryptedAppTicketSymmetricKeyLength,getAuthSessionTicket,getEncryptedAppTicket,decryptAppTicket,isTicketForApp,getTicketIssueTime,getTicketSteamId,getTicketAppId,cancelAuthTicket,saveTextToFile,deleteFile,readTextFromFile,saveFilesToCloud,isCloudEnabled,isCloudEnabledForUser,enableCloud,getCloudQuota,getFileCount,getFileNameAndSize,getDLCCount,getDLCDataByIndex,isDLCInstalled,installDLC,uninstallDLC,FriendFlags,FriendRelationship,PersonaChange,AccountType,ChatEntryType,getFriendCount,getFriends,getSmallFriendAvatar,getMediumFriendAvatar,getLargeFriendAvatar,requestUserInformation,setListenForFriendsMessage,replyToFriendMessage,getFriendMessage,getFriendPersonaName,getFriendRichPresence,setRichPresence,clearRichPresence,getFriendGamePlayed,setPlayedWith,activateGameOverlayInviteDialog,activateGameOverlayToUser,ChatMemberStateChange,LobbyComparison,LobbyDistanceFilter,LobbyType,Result,createLobby,deleteLobbyData,getLobbyByIndex,getLobbyData,getLobbyMemberByIndex,getNumLobbyMembers,getLobbyOwner,inviteUserToLobby,joinLobby,leaveLobby,setLobbyData,setLobbyJoinable,setLobbyOwner,setLobbyType,_version,restartAppIfNecessary,isSteamRunning,getSteamId,getAppId,getAppBuildId,getCurrentGameLanguage,getCurrentUILanguage,getCurrentGameInstallDir,getAppInstallDir,getNumberOfPlayers,isGameOverlayEnabled,isSteamInBigPictureMode,activateGameOverlay,activateGameOverlayToWebPage,isAppInstalled,isSubscribedApp,getImageSize,getImageRGBA,getIPCountry,getLaunchCommandLine,getStatInt,getStatFloat,setStat,storeStats,resetAllStats,UGCMatchingType,UGCQueryType,UserUGCListSortOrder,UserUGCList,UGCItemState,fileShare,_publishWorkshopFile,_updatePublishedWorkshopFile,_ugcGetItems,_ugcGetUserItems,ugcDownloadItem,_ugcSynchronizeItems,ugcShowOverlay,ugcUnsubscribe,ugcGetItemState,ugcGetItemInstallInfo,initAPI,ugcGetItems,ugcGetUserItems,ugcSynchronizeItems,publishWorkshopFile,updatePublishedWorkshopFile,ugcPublish,ugcPublishUpdate,init,_events,_eventsCount,_maxListeners
error_process,function,2
file_share_process,function,5
EventEmitter,function,1
safari,number,0
lang,number,4
langnum,number,9
allang,object,[object Object],[object Object],[object Object],[object Object],[object Object],+...
mpc,number,2
subtype,number,1
grep,string,
j,number,9
insub,object,2.6,5,Halo, Mayu!,5,1,+...
i,number,1
setlang,function,0
errorloop,function,0
kill,function,1
sizeit,function,0
context,object,
BufferLoader,function,3
intrus,object,EVP,10,10,-70,15,+...
glimpse,object,0,0,Glimpse1,0.4,Glimpse2,+...
jwata,object,0,0,JW1,0.4,JW2,+...
jwatb,object,0,0,JW4,0.4,JW5,+...
jwatc,object,0,0,JW1,0.4,JW4,+...
impact,object,0,0,Impact1,1,Impact2,+...
whacklong,object,0,0,WhackLong1,2,WhackLong2,+...
whackshort,object,0,0,WhackShort1,2,WhackShort2,+...
whack45,object,0,0,WhackShort4,2,WhackShort5,+...
jimaya,object,1,0,M1,1,M2,+...
genscry,object,0,0,GenScry1,1,GenScry2,+...
jhmoving,object,0,0,JM1,0.3,JM2,+...
snig,object,0,0,snig1,1,snig2,+...
grunt,object,0,0,Grunt1,0.1,Grunt2,+...
runS,object,0,0,RunS1,0.1,RunS2,+...
runM,object,0,0,RunM1,0.1,RunM2,+...
runL,object,0,0,RunL1,0.1,RunL2,+...
walk,object,0,0,Walk1,0.1,Walk2,+...
buzz,object,0,0,StaticBuzz1,0.5,StaticBuzz2,+...
movewind,object,0,0,Move1,0.2,Move2,+...
inst,object,0,0,Inst1,0.9,Inst2,+...
gappear,object,0,0,Appear1,0.5,Appear2,+...
lockin,object,0,0,Lin1,0.8,Lin2,+...
floco,object,0,0,91,95,76,+...
map,object,96,20,[object Object],98,20,+...
ml,number,118
youmap,object,2115,34.3,27,2114,35.5,+...
incmap,object,2114,2214,2314,2414,2115,+...
swp,object,0,0,2318,23,19,+...
cornered,object,2720E,2620E,2416S,2415S,1723E,+...
walkoffs,object,1921,2021,N,1821,N,1821,2021,N,1721,+...
vids,object,INTRO,14,0,[object Object],GAP,+...
vl,number,6539
spyrooms,object,101,JH-E,L,JH-W,R,102,JH-E,R,JH-W,L,103,+...
roomlist,object,101,,ROOM V3,RMI,A,1,1,L1F1,1,102,-F,ROOM V5,RMF,B,1,1,L1F1,1,103,+...
keylist,object,450,DET,451,SRAZ-F,452,+...
itemlist,object,9,CASES,[object Object],10,TROPHIES,+...
il,number,132
events,object,IN-A,[object Object],IN-P,[object Object],IN-H,+...
roomser,object,RMA,A,RMA-F,A,RMB,+...
randomitems,function,0
repcosc,function,0
vt,number,338040
vidall,number,11268
cvid,string,9220-NL
chvid,string,
cnow,string,
vpon,number,0
roompairs,object,2620,2720,2416,2016,1916,+...
sagot,number,467
vidstart,number,4206
vidend,number,4209
vidcurs,number,4211.22
vidon,number,24910
vidlast,number,24895
flicker,object,
flicknew,number,0
spaco,number,1
promgo,number,12
promnow,number,0
sflip,number,4
exflip,number,1
exflipnow,number,0
ambsgo,number,34
sendflip,number,1
cursel,number,-1
snear,number,0.7
sfar,number,0.5599999999999999
jclose,number,0
resamb,number,0
resheart,number,0
newghost,number,0
quesnow,number,0
talkpos,number,0
gready,number,0
quescount,number,0
queson,number,0
subend,number,0
guidenow,number,0
inton,number,0
intover,number,0
gover,number,0
goinst,string,
gofind,number,0
gofound,object,+...
guestrooms,object,115,303,110,121,111,+...
guestsin,object,1,1,1,1,1,+...
rescue,number,0
ghostNow,string,
ghostNear,string,
ghostSel,string,
ghostPrev,number,6
setev,object,
setbox,object,
ghostpres,number,0
ghostfade,number,0
peeps,object,A,P,H,R,V,+...
gnames,object,Amy,Dr Bose,Harvey,Rose,Hugo,+...
dks,object,A,1,4,P,1,+...
yes,object,A,1,7,P,1,+...
res,object,A,1,6,P,1,+...
mHell,number,1
mName,number,1
mWho,number,1
gMay,number,1
gWho,number,1
gCh,number,1
gNo,number,1
volco,object,1,1.3,1.6,1.9,+...
gPos,object,80,19,1,+...
allGv,object,0,0,0,0,0,+...
curcomp,string,A
gint,object,0,+...
ghosts,object,[object Object],[object Object],[object Object],[object Object],[object Object],+...
bright,number,4
colour,number,4
mastvol,number,4
gop,object,Arcade,,,,,+...
jwords,object,19,24,43,16,30,+...
jwort,object,+...
usi,number,0
jcatem,object,+...
jhcatches,object,1,5,7,2,4,+...
jhcatch,number,0
jw,number,0
jtc,number,8
jtime,number,100
whack,number,0
inwhack,number,0
goinsight,number,0
flee,number,0
rescon,number,0
gogame,number,0
butlen,number,0
conon,number,0
gvision,number,0
setgo,string,
ambresvol,number,0
setvs,number,0
subon,number,1
adon,number,0
adoff,number,0
repsnow,number,0
metmax,number,0
emfgo,number,0
wig,number,0
golo,number,3
gdir,string,E
jdir,string,
pairA,object,
pairB,object,
prepair,object,+...
pairnow,object,+...
fulls,number,0
splitL,object,
splitR,object,
medlist,object,+...
csX,number,16.5625
csY,number,58.75
spinblok,string,
menon,number,0
itemon,number,0
unsafe,number,0
gounsafe,number,0
save,number,0
goachieve,number,0
Atex,object,,,,,,+...
csA,object,-1,-1,-1,-1,+...
csB,object,-1,-1,-1,-1,+...
csDR,object,-1,-1,+...
lincur,object,0,0,0,0,0,+...
opars,number,0
selit,number,0
selprev,number,0
selv,number,0
selvprev,number,0
seltex,number,0
pairbo,object,,,999,999,+...
pairover,number,0
prep,number,0
pairon,number,0
csexits,object,20,20,23,18,21,+...
selNow,number,0
selExit,number,0
selPanel,number,0
itemget,number,0
itemtoget,number,0
keytoget,number,0
csrooms,object,+...
infon,number,0
infostack,object,+...
ff,object,
mensel,number,1
menlay,number,1
rason,number,0
menew,number,0
mensav,number,0
configon,number,0
conID,number,-1
arspin,number,1
aret,object,
csXL,number,35
csXR,number,65
csCN,number,50
csYT,number,0
flipon,number,0
sloop,number,0
slooplen,number,125
slook,number,1
ambflip,number,0
ambfad,number,0
amco,number,162
ambstak,string,
ambvol,number,0.35
ambience,string,default
sambience,string,Blank
feet,number,1
started,number,3
ending,number,0
checknum,undefined,
itemwhere,undefined,
walkTO,undefined,
behindTO,undefined,
jwTO,undefined,
menmusTO,undefined,
menTO,number,27
ambTO,undefined,
linkTO,undefined,
talkTO,number,5
pairTO,undefined,
poverTO,undefined,
emfTO,undefined,
messTO,undefined,
infoTO,undefined,
savTO,undefined,
safeTO,undefined,
proTO,undefined,
getTO,undefined,
repTO,undefined,
zTO,undefined,
camTO,number,38
curseTO,undefined,
detTO,undefined,
avTO,undefined,
compTO,number,29
subaTO,undefined,
subbTO,undefined,
adTO,undefined,
jsTO,undefined,
subTO,undefined,
wakeTO,undefined,
cursTO,undefined,
replay,number,0
prerep,string,
pairs,number,0
panelon,number,0
panswitch,number,0
inlift,number,0
liftfloor,number,0
stairs,number,0
jhfloor,number,5
jimshout,number,0
pos,object,92,20,W,+...
floor,number,0
newfloor,number,1
jim,object,96,20,N,+...
jimfree,number,1
jimp,object,8220,W,8220,W,+...
jmop,object,0000,+...
jsp,number,0
jhchange,number,0
floorspeed,number,39
jimbored,number,0
jspeak,number,0
lockpick,number,0
jimtype,number,0
jimext,number,0
gametype,number,0
progress,number,4
quickresc,number,0
florad,object,B,G,F1,F2,F3,+...
florpos,object,92,20,82,20,22,+...
floorGv,object,+...
exempt,number,0
pswitch,number,0
ButOneLink,string,B-LIFT-CALL
ButTwoLink,string,
fwd,number,1
trantype,number,5
corn,number,0
npos,object,91,20,+...
rompos,object,,,+...
guestpos,object,0,0,,+...
posd,string,
clash,number,0
statvisgo,number,0
statvis,string,9220-WH
jhatpos,number,0
jhatstairs,number,0
jhvistime,number,20
jhartime,number,10
locjump,object,X,0,0,+...
inroom,number,0
keyon,number,0
keylook,number,0
hide,number,0
goroom,object,STORE BASE LOCKED,,undefined,-1,,+...
facedoor,number,0
tabface,number,0
gofwd,string,
roomlink,string,STORE BASE
wakelink,string,
atdel,number,0
tempcols,object,+...
jhdec,number,0
sjump,number,0
jhwait,number,0
jhinroom,number,0
jhsearch,number,0
setseen,number,0
jhbath,number,0
hideset,number,0
hideseq,object,+...
jhnext,number,0
gohide,number,0
goattack,number,0
gostore,number,0
storeat,number,0
atmove,number,0
jhprox,number,4
jheard,number,0
spy,number,0
prevl,number,0
spyvers,number,2
ls,number,4206
le,number,4209
lsvid,string,9220-WH
evex,object,0,0,+...
intercept,object,+...
interrupt,string,
lit,object,4021,4020,4120,4220,4320,+...
litlocs,object,4021,4020,4120,4220,4320,8021,8020,8019,8018,8119,6117,6217,6317,+...
oddson,number,0.5
oz,number,0
dComp,number,2
dCal,number,0
pdCal,number,0
nCal,number,-48.20000000000015
mCal,number,0
dDir,number,-0.2
comPos,number,0
comTarg,number,0
mapoffx,number,13
mapoffy,number,15
mapxwid,number,6
mapywid,number,11
dnorm,object,N,S,E,W,+...
dflip,object,S,N,W,E,+...
nesw,object,NE,90,ES,90,SW,+...
msr,object,N,0,-1,S,0,+...
yang,object,N,0,E,90,S,+...
ux,number,0
uy,number,0
uv,object,o
lv,object,
rv,object,+...
tpm,object,,,,,,+...
active,number,1
activeb,number,0
mblock,number,0
searchon,number,0
runturn,string,
handle,number,0
moving,number,0
runstop,number,0
avail,object,+...
trig,number,0
trigo,number,0
trigtime,number,35
tneg,number,0.08
clhour,number,3
clmin,number,0
clsec,number,0
md,number,0
mof,number,0
subgo,number,0
subnow,number,0
subvers,number,0
dirs,object,TN,S,TS,N,TE,+...
jhmc,number,3
jhwalk,number,15
attack,number,0
attackspeed,number,8
postconf,object,0,0,X,+...
hiding,number,0
jhLOS,number,0
cansee,object,0,0,,+...
hidewait,number,0
giggle,number,0
behindyou,number,0
heardher,object,92,20,+...
menover,number,0
bookover,number,0
bookon,number,0
typover,number,0
boxover,number,0
emfon,number,1
askintover,number,0
whackon,number,0
ghostint,number,1
gseen,object,0,0,0,0,+...
gobuz,number,0
anson,number,0
evpon,number,0
evpover,number,0
opsblock,number,0
exblok,number,0
speakover,number,0
jhend,number,0
scryon,number,0
prescry,string,
scryavail,number,0
doorcall,number,0
goheard,number,0
scryover,number,0
gonow,number,6
cluegen,number,0
gorec,number,-1
gentem,object,+...
genpik,object,CLUE GEN8,CLUE GEN4,CLUE GEN9,CLUE GEN10,CLUE GEN6,+...
ranser,number,0
evphid,number,0
evpcol,number,1
evad,string,A
compcol,number,1
gocomp,number,0
scrycol,number,1
scrysoon,number,0
scrysn,number,1
scrywait,number,130
hidrooms,object,450,465,464,+...
firstspeak,number,1
firstconv,number,1
firstpair,number,1
firstmirror,number,1
firstcomp,number,1
firstevp,number,1
firstjim,number,0
firstkey,number,1
firstwake,number,0
firstguest,number,0
callout,number,2
reply,number,1
volFizzMax,number,0.1
volBoxMax,number,0.32
volNoiseMax,number,0.32
volAmbsMax,number,0.6
volJHMax,number,0.8
jimvol,number,0
jimpan,number,0
panJH,number,0
ghostpans,object,0,0,0,0,0,+...
ambspan,number,-0.7
panAmbs,number,0
ambsdir,string,S
ambsvol,number,35
ambspos,object,92,21,W,Boiler,+...
amch,number,0
preambs,object,0,0,Playhouse,0,Boiler,+...
zvo,number,0
zvot,number,0
menvo,number,0
allGd,object,Z,Z,Z,Z,+...
ghostdis,number,0
ghostdel,number,80
gpop,number,1
volGhostMax,number,0.8
gsnow,string,
radtemp,number,0
loopmax,number,0.7
adel,number,0
adels,string,
avdels,string,
jhfeet,number,1
breath,number,8
bspeed,number,9
bnow,number,1
bcoun,number,9
bdel,number,0
brun,number,0
leaving,number,0
spotwait,number,50
linkon,number,0
arson,number,0
arslr,number,0
touchon,number,0
spotfx,number,0
setspotJ,number,0
setspot,number,0
lopass,number,1
loptarg,number,1
lopSpeed,number,30
lopgo,number,0
lopgot,number,1
macbut,number,0
nixon,number,0
nums,object,+...
countsec,number,10
countmin,number,2
bron,number,0
repsflip,number,1
prereps,string,<span class='h2'>Когда вы встречаетесь с призраками, вы можете задавать им вопросы. Соедините их ответы, чтобы установить связи. Когда вы один, вы можете просмотреть ответы призраков здесь.</span>
headflip,number,1
prehead,string,<span class='h3'>Включите переговорное устройство<br>для общения с призраками.</span>
subflip,number,0
texlen,number,0
ico,number,19
tico,number,19
itype,number,0
icc,object,66,28,23,22,4,+...
atype,object,13,1,1,4,+...
preico,number,0
itpage,number,0
colnew,number,0
selnew,number,0
askov,number,0
askon,number,0
pairsel,number,0
conov,number,0
revlist,object,+...
revpage,number,0
winw,number,1280
winh,number,800
seth,number,720
setw,number,1280
vidw,undefined,
vidh,undefined,
setop,number,40
setleft,number,0
fsize,number,30
isize,number,27
evflo,object,0,A,1,B,2,+...
ptml,object,<div id='I,' style='display:none
position:absolute
animation:newitem 0.5s
animation-iteration-count:1
width:10.5%
height:100%
transition-property:opacity,transform
transition-duration:0.8s'><div style='background:url('
media/gfx/,.png'
)
width:100%
height:100%
background-size:95%
background-position:top
background-repeat:no-repeat'></div><div id='H,' class='boxtex'>,</div></div>,+...
rtml,object,<div id='IR,' class='boxesrev'><div style='background:url('
media/gfx/,.png'
)
width:100%
height:100%
background-size:70%
background-position:top
background-repeat:no-repeat'></div><div id='HR,' class='boxtexrev'>,</div></div>,+...
bgs,object,[object AudioBuffer],[object AudioBuffer],[object AudioBuffer],[object AudioBuffer],[object AudioBuffer],+...
samps,object,media/audio/Blank.mp3,media/audio/Ting.mp3,media/audio/Whack.mp3,media/audio/LiftCallBut.mp3,media/audio/LiftArrive.mp3,+...
sourceA,object,
sourceB,object,
sourceC,object,
sourceD,object,
sourceE,object,
sourceF,object,
sourceX,object,
sourceHeart,object,
sourceJHA,object,
sourceJHB,object,
sourceOneA,object,
sourceOneB,object,
sourceDistA,object,
sourceDistB,object,
sourceEVP,object,
sourceEVPfizz,object,
sourceEVPnoise,object,
sourceEVPmaster,object,
sourceGhostSpot,object,
audioEVrep,object,
audioEVrepEcho,object,
audioEVrepRev,object,
audioGhost,object,[object HTMLAudioElement],[object HTMLAudioElement],[object HTMLAudioElement],[object HTMLAudioElement],[object HTMLAudioElement],+...
audioGhostSpot,object,
audioLA,object,
audioLB,object,
audioExt,object,[object HTMLAudioElement],[object HTMLAudioElement],[object HTMLAudioElement],[object HTMLAudioElement],+...
audioClue,object,
audioLoops,object,
audioMenu,object,
gainNodeMAS,object,
gainNodeA,object,
gainNodeB,object,
gainNodeC,object,
gainNodeD,object,
gainNodeE,object,
gainNodeF,object,
gainNodeX,object,
gainNodeHeart,object,
gainNodeEVP,object,
gainNodeEVPfizz,object,
gainNodeEVPnoise,object,
gainNodeJHA,object,
gainNodeJHB,object,
gainNodeAmbsA,object,
gainNodeAmbsB,object,
panNodeJHA,object,
panNodeJHB,object,
panNodeAmbsA,object,
panNodeAmbsB,object,
gainNodeDistA,object,
gainNodeDistB,object,
gainNodeOneA,object,
gainNodeOneB,object,
gainNodeEVrep,object,
gainNodeEVrepEcho,object,
gainNodeEVrepRev,object,
gainNodeLA,object,
gainNodeLB,object,
gainNodeLMAS,object,
gainNodeSL,object,
gainNodeExt,object,[object GainNode],[object GainNode],[object GainNode],[object GainNode],+...
gainNodeClue,object,
gainNodeMenu,object,
gainNodeWake,object,
gainNodeScry,object,
gainNodeVid,object,
gainNodeGhostSpot,object,
gainNodeZP,object,
gainNodeGhost,object,[object GainNode],[object GainNode],[object GainNode],[object GainNode],[object GainNode],+...
sourceGhost,object,[object MediaElementAudioSourceNode],[object MediaElementAudioSourceNode],[object MediaElementAudioSourceNode],[object MediaElementAudioSourceNode],[object MediaElementAudioSourceNode],+...
panNodeGhost,object,[object StereoPannerNode],[object StereoPannerNode],[object StereoPannerNode],[object StereoPannerNode],[object StereoPannerNode],+...
bufferLoader,object,context,urlList,onload,bufferList,loadCount
playGhost,function,2
goGhost,function,1
gos0Int,object,
gos1Int,object,
gos2Int,object,
gos3Int,object,
gos4Int,object,
repGhost0,function,0
repGhost1,function,0
repGhost2,function,0
repGhost3,function,0
repGhost4,function,0
compressor,object,
filterA,object,
filterB,object,
filterEVP,object,
mayfil,number,-3
filterMaya,object,
playVision,function,1
playSamp,function,2
playBreath,function,1
playHeart,function,0
playStatic,function,0
playFizz,function,0
playNoise,function,0
playVers,function,1
playSpot,function,2
playJHvers,function,1
playJH,function,1
playDist,function,1
playOne,function,2
playOneA,function,2
playOneB,function,2
playExt,function,2
goplayExt,function,0
playAmbs,function,1
goplayAmbs,function,0
wakesamp,number,1
playWake,function,0
goplayWake,function,0
playScry,function,0
goplayScry,function,0
playClue,function,1
goplayClue,function,0
playSL,function,1
goplayLoops,function,0
setitems,function,0
showits,function,0
showrevs,function,0
collect,function,3
showfind,function,0
nowsafe,function,0
nowunsafe,function,0
goInfo,function,2
goSaved,function,0
goHelp,function,0
grabops,function,3
hearlist,object,96,20,96,20,50,98,20,+...
f,number,118
nodes,object,0,0,50,+...
todes,object,+...
volmap,object,0,0,50,+...
vs,number,0.5173309029502116
v,number,20
hl,number,118
conbri,function,0
convol,function,0
subad,function,0
setsubad,function,0
setsub,function,2
fixstart,number,0
msubtex,string,
keydown,number,0
boxes,number,1
zo1,number,0
zo2,number,0
zo3,number,0
temchek,number,1
subchek,number,0
gprev,number,1
gpeps,number,0
vcheck,number,0
gset,number,1
gsetTO,object,
cupo,number,0
jhtemp,number,5
plon,number,0
temap,undefined,
testX,number,40
testY,number,25
listest,number,1
quickon,number,0
footflip,number,0
footrot,number,0
inon,number,0
menuTog,function,0
menuOn,function,0
menuOff,function,0
scryops,function,0
showroom,function,0
conselops,function,1
select,function,1
goReps,function,1
goHead,function,1
mayaSpeak,function,2
mayaSpeakPlay,function,0
ghostSpeak,function,1
ghostSpeakPlay,function,0
subtime,function,3
goSub,function,2
evpQuesResp,function,0
evpPairResp,function,0
repDK,function,0
evpEnd,function,0
resits,function,0
questop,function,0
evpFirstResp,function,0
showghost,function,0
hideghost,function,0
compon,function,0
compoff,function,0
EVPton,function,0
EVPtoff,function,0
jhalert,function,1