-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.csv
We can't make this file beautiful and searchable because it's too large.
3729 lines (3729 loc) · 644 KB
/
test.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
session_id,index,elapsed_time,event_name,name,level,page,room_coor_x,room_coor_y,screen_coor_x,screen_coor_y,hover_duration,text,fqid,room_fqid,text_fqid,fullscreen,hq,music,level_group,session_level
20090109393214576,0,0,cutscene_click,basic,0,,-413.99140522263224,75.6853138297722,380.0,259.0,,undefined,intro,tunic.historicalsociety.closet,tunic.historicalsociety.closet.intro,0,0,1,0-4,0
20090109393214576,1,1965,person_click,basic,0,,-105.99140522263217,-63.31468617022782,688.0,398.0,,"Whatcha doing over there, Jo?",gramps,tunic.historicalsociety.closet,tunic.historicalsociety.closet.gramps.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,2,3614,person_click,basic,0,,-418.99140522263224,47.68531382977217,375.0,287.0,,Just talking to Teddy.,gramps,tunic.historicalsociety.closet,tunic.historicalsociety.closet.gramps.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,3,5330,person_click,basic,0,,-110.99140522263218,-57.31468617022785,683.0,392.0,,I gotta run to my meeting!,gramps,tunic.historicalsociety.closet,tunic.historicalsociety.closet.gramps.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,4,6397,person_click,basic,0,,-110.99140522263218,-57.31468617022785,683.0,392.0,,"Can I come, Gramps?",gramps,tunic.historicalsociety.closet,tunic.historicalsociety.closet.gramps.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,5,8864,person_click,basic,0,,-110.99140522263218,-57.31468617022785,683.0,392.0,,"Sure thing, Jo. Grab your notebook and come upstairs!",gramps,tunic.historicalsociety.closet,tunic.historicalsociety.closet.gramps.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,6,11697,person_click,basic,0,,571.276981998838,-107.17571447457635,683.0,392.0,,"See you later, Teddy.",teddy,tunic.historicalsociety.closet,tunic.historicalsociety.closet.teddy.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,7,12898,person_click,basic,0,,578.2429872763329,-107.68479886543304,683.0,392.0,,I get to go to Gramps's meeting!,teddy,tunic.historicalsociety.closet,tunic.historicalsociety.closet.teddy.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,8,13847,person_click,basic,0,,578.9636848751824,-107.73746834865715,683.0,392.0,,Now where did I put my notebook?,teddy,tunic.historicalsociety.closet,tunic.historicalsociety.closet.teddy.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,9,16847,person_click,basic,0,,534.1171843228348,-92.74868628055523,638.0,377.0,,\u00f0\u0178\u02dc\u00b4,teddy,tunic.historicalsociety.closet,tunic.historicalsociety.closet.teddy.intro_0_cs_0,0,0,1,0-4,0
20090109393214576,10,17780,navigate_click,undefined,0,,534.1177123473617,-92.74872486924905,638.0,377.0,,,photo,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,11,18781,observation_click,basic,0,,510.88471027587167,-88.609503420557,638.0,377.0,,I love these photos of me and Teddy!,photo,tunic.historicalsociety.closet,tunic.historicalsociety.closet.photo,0,0,1,0-4,0
20090109393214576,12,19980,navigate_click,undefined,0,,506.3468963606781,-87.8278701704662,638.0,377.0,,,photo,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,13,21402,observation_click,basic,0,,505.86558619637634,-87.74496504587191,638.0,377.0,,I love these photos of me and Teddy!,photo,tunic.historicalsociety.closet,tunic.historicalsociety.closet.photo,0,0,1,0-4,0
20090109393214576,14,23230,navigate_click,undefined,0,,173.79758525808498,-184.7332519621273,306.0,474.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,15,24396,navigate_click,undefined,0,,-91.35459626385664,-214.5730474957053,165.0,502.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,16,25230,navigate_click,undefined,0,,-234.64804292856826,-164.00896788474037,170.0,447.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,17,26748,navigate_click,undefined,0,,-186.81338341256057,-136.27886302629716,438.0,427.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,18,27747,navigate_click,undefined,0,,-134.48967965006278,-141.86639863023447,473.0,438.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,19,28946,navigate_click,undefined,0,,-383.2877806365772,-120.93583810576746,181.0,417.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,20,30014,navigate_click,undefined,0,,-564.3937860868377,-115.00309832204435,141.0,415.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,21,31047,navigate_click,undefined,0,,-801.6590482365721,-129.26060217537486,49.0,431.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,22,32330,navigate_click,undefined,0,,-923.8978448763099,-269.87211639016107,64.0,569.0,,,notebook,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,23,34581,notification_click,basic,0,,-447.9620130334283,-209.372609023553,580.0,485.0,,Found it!,,tunic.historicalsociety.closet,tunic.historicalsociety.closet.notebook,0,0,1,0-4,0
20090109393214576,24,36597,object_click,close,0,,-207.64301688949425,212.09573581091541,821.0,63.0,,,notebook,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,25,37430,navigate_click,undefined,1,,-347.65671725733733,-17.914959974825976,681.0,293.0,,,,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,26,39263,navigate_click,undefined,1,,-298.51972031998963,124.88651527448329,491.0,197.0,,,tobasement,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,27,43646,navigate_click,undefined,1,,123.99460742424245,19.1296063311372,502.0,307.0,,,tocloset,tunic.historicalsociety.basement,,0,0,1,0-4,0
20090109393214576,28,45380,navigate_click,undefined,1,,-382.0290931904356,119.12718740270643,358.0,208.0,,,tobasement,tunic.historicalsociety.closet,,0,0,1,0-4,0
20090109393214576,29,47182,navigate_click,undefined,1,,-239.8235743939394,-1.779484577953694,241.0,322.0,,,janitor,tunic.historicalsociety.basement,,0,0,1,0-4,0
20090109393214576,30,49364,observation_click,basic,1,,-484.78616806917887,-100.74918154765068,125.0,393.0,,Hmm. Button's still not working.,janitor,tunic.historicalsociety.basement,tunic.historicalsociety.basement.janitor,0,0,1,0-4,0
20090109393214576,31,50313,navigate_click,undefined,1,,-526.5220000548119,-111.9006966991658,97.0,401.0,,,toentry,tunic.historicalsociety.basement,,0,0,1,0-4,0
20090109393214576,32,55631,navigate_click,undefined,1,,330.2236213937263,80.79568358536096,427.0,280.0,,,groupconvo,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,33,57863,cutscene_click,basic,1,,193.02999083092246,-126.02971467522123,429.0,411.0,,Let's get started. The Wisconsin Wonders exhibit opens tomorrow!,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,34,59079,cutscene_click,basic,1,,189.1153546363402,-125.68309641929542,429.0,411.0,,Who wants to investigate the shirt artifact?,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,35,61630,cutscene_click,basic,1,,188.6447631489324,-125.64142828143764,429.0,411.0,,Not Leopold here. He's been losing papers lately.,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,36,62296,cutscene_click,basic,1,,188.6415965047798,-125.64114789352452,429.0,411.0,,Hey!,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,37,63047,cutscene_click,basic,1,,188.6406045466892,-125.64106006140776,429.0,411.0,,"It's true, they do keep going missing lately.",groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,38,63930,cutscene_click,basic,1,,188.64033410916875,-125.64103611573898,429.0,411.0,,See?,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,39,65245,cutscene_click,basic,1,,188.64027297019382,-125.64103070223852,429.0,411.0,,"Besides, I already figured out the shirt.",groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,40,66481,cutscene_click,basic,1,,188.64026754833733,-125.64103022216469,429.0,411.0,,It's a women's basketball jersey!,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,41,75262,object_click,basic,1,,835.1006305487497,-303.1326665294912,826.0,520.0,,,report,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,42,76680,object_click,close,1,,818.8169941851132,471.9684243795991,816.0,44.0,,,report,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,43,77997,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,That settles it.,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,44,78763,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,"Wells, finish up your report.",groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,45,80064,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,"Leopold, why don't you help me set up in the Capitol?",groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,46,82879,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,We need to talk about that missing paperwork.,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,47,83762,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,"Will do, Boss.",groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,48,86062,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,"Hey Jo, let's take a look at the shirt!",groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,49,86746,cutscene_click,basic,1,,709.7166305487499,-55.62139380221868,749.0,368.0,,undefined,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,50,87412,cutscene_click,basic,1,,38.83081236693201,-143.55303016585498,337.0,422.0,,undefined,groupconvo,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo,0,0,1,0-4,0
20090109393214576,51,91052,navigate_click,undefined,2,,-182.55718745045638,-143.49256515949287,173.0,415.0,,,,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,52,91380,navigate_click,undefined,2,,-539.7655218141281,-153.14089511853442,47.0,413.0,,,,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,53,93412,navigate_click,undefined,2,,-929.9021197472418,-156.4878244136874,47.0,413.0,,,tocollection,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,54,97878,cutscene_click,basic,2,,-66.92020481718737,16.391707842031366,278.0,313.0,,Look at that! It's the bee's knees!,cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,55,100478,cutscene_click,basic,2,,-66.5429111909592,-98.18935782956024,391.0,405.0,,"Wow, that's so cool, Gramps!",cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,56,101379,cutscene_click,basic,2,,-67.71942933970442,-98.05999149470163,391.0,405.0,,Can I take a closer look?,cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,57,102996,cutscene_click,basic,2,,-67.9862306582374,-98.03065483827106,391.0,405.0,,Hmmm. Shouldn't you be doing your homework?,cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,58,103829,cutscene_click,basic,2,,-67.99769780163274,-98.02939394627892,391.0,405.0,,It's already all done!,cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,59,104562,cutscene_click,basic,2,,-68.00005855317463,-98.02913436526457,391.0,405.0,,"Plus, my teacher said I could help you out for extra credit!",cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,60,107062,cutscene_click,basic,2,,-68.00085213043789,-98.02904710593744,391.0,405.0,,"Well, that's good enough for me.",cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,61,107547,cutscene_click,basic,2,,-68.00089216151933,-98.02904270424223,391.0,405.0,,"Go ahead, take a peek at the shirt!",cs,tunic.historicalsociety.collection,tunic.historicalsociety.collection.cs,0,0,1,0-4,0
20090109393214576,62,108846,navigate_click,undefined,2,,-35.922224168118085,158.19713212277128,374.0,217.0,,,tunic,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,63,111212,object_click,basic,2,,105.00210815302223,-147.27552817127474,488.0,432.0,,,tunic,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,64,112246,object_click,basic,2,,107.41234926062391,274.55022280115026,490.0,139.0,,,tunic.hub.slip,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,65,114711,notification_click,basic,2,,347.72659861898927,172.36473068592178,657.0,210.0,,This looks like a clue!,,tunic.historicalsociety.collection,tunic.historicalsociety.collection.tunic.slip,0,0,1,0-4,0
20090109393214576,66,115895,notification_click,basic,2,,347.7259621467814,172.36484387664487,657.0,210.0,,I'll record this in my notebook.,,tunic.historicalsociety.collection,tunic.historicalsociety.collection.tunic.slip,0,0,1,0-4,0
20090109393214576,67,116880,object_hover,undefined,2,,,,,,5168.0,,tunic.hub.slip,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,68,117529,object_click,close,2,,570.8319442078238,414.1830396633352,812.0,42.0,,,tunic,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,69,118961,navigate_click,undefined,2,,-117.19836269885981,83.12243429210766,334.0,272.0,,,gramps,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,70,120463,person_click,basic,2,,7.6023985055659615,-65.67577865076802,425.0,374.0,,Find anything?,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,71,121978,person_click,basic,2,,7.172444550460062,-65.81918193640331,425.0,374.0,,Yes! This cool old slip from 1916.,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,72,122745,person_click,basic,2,,7.15082290982722,-65.8263934395672,425.0,374.0,,Hot Dog! I knew it!,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,73,124395,person_click,basic,2,,7.144102877175612,-65.82863478367015,425.0,374.0,,I'm not so sure that this is a basketball jersey.,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,74,125212,person_click,basic,2,,7.1438528434697375,-65.82871817784414,425.0,374.0,,"Wait, you mean Wells is wrong?!",gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,75,126413,person_click,basic,2,,7.143765146281817,-65.82874742763877,425.0,374.0,,Could be. But we need evidence!,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,76,128828,person_click,basic,2,,7.1437565619439605,-65.82875029078781,425.0,374.0,,Why don't you head to the Basketball Center and rustle up some clues?,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,77,129695,person_click,basic,2,,7.1437564785461785,-65.82875031860362,425.0,374.0,,"Ooh, I like clues!",gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,78,130995,person_click,basic,2,,7.143756459018463,-65.82875032511673,425.0,374.0,,I'll be at the Capitol. Let me know if you find anything!,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.found,0,0,1,0-4,0
20090109393214576,79,133678,notebook_click,open,3,0.0,-522.5532132399363,-421.35905335608186,57.0,621.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,80,139212,notebook_click,close,3,0.0,591.5376958509571,386.1409466439129,831.0,60.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,81,140278,navigate_click,undefined,3,,58.96193827519943,-26.96511396214771,461.0,347.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,82,141277,navigate_click,undefined,3,,-63.76719995628659,-19.051698873474976,381.0,342.0,,,gramps,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,83,144872,person_click,basic,3,,116.49436790345379,-28.400577801635126,501.0,348.0,,Um... what did you want me to do again?,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.lost,0,0,1,0-4,0
20090109393214576,84,145213,person_click,basic,3,,175.54648838733584,-25.525143225944372,542.0,346.0,,Head over to the Basketball Center.,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.lost,0,0,1,0-4,0
20090109393214576,85,146246,person_click,basic,3,,175.5518852335759,-25.52563275166912,542.0,346.0,,Hopefully you can rustle up some clues!,gramps,tunic.historicalsociety.collection,tunic.historicalsociety.collection.gramps.lost,0,0,1,0-4,0
20090109393214576,86,148711,navigate_click,undefined,3,,-486.5683750405538,-447.2681433322271,82.0,639.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,87,151872,navigate_click,undefined,3,,-622.4454253338407,-449.57718076172506,99.0,629.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,88,152496,navigate_click,undefined,3,,-241.58298286060563,-435.69120987396593,375.0,619.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,89,154211,navigate_click,undefined,3,,135.08344064870528,-405.3497049141363,593.0,598.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,90,154961,navigate_click,undefined,3,,298.5891598231071,-393.4623810441752,676.0,590.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,91,155628,navigate_click,undefined,3,,498.7073175166722,-210.3839918298239,768.0,463.0,,,,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,92,156394,navigate_click,undefined,3,,650.1494490580103,-135.90042283698216,820.0,414.0,,,toentry,tunic.historicalsociety.collection,,0,0,1,0-4,0
20090109393214576,93,158028,navigate_click,undefined,3,,-132.6338966288775,-208.79161760747883,658.0,450.0,,,,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,94,160746,navigate_click,undefined,3,,358.29099239657165,-113.16280408252004,738.0,382.0,,,,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,95,164045,navigate_click,undefined,3,,877.9582575155678,70.27386023529849,842.0,277.0,,,tomap,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,96,166545,map_hover,basic,3,,,,,,132.0,,tunic.historicalsociety,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,97,168712,map_click,undefined,3,,177.12106152732377,-163.47050561677437,268.0,430.0,,,tunic.kohlcenter,tunic.historicalsociety.entry,,0,0,1,0-4,0
20090109393214576,98,171211,navigate_click,undefined,3,,-713.9738083971182,-17.999999999999968,283.0,348.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,99,172428,navigate_click,undefined,3,,-583.0228423439243,26.99999999999999,374.0,303.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,100,173344,navigate_click,undefined,3,,-435.54875413019784,-9.000000000000021,467.0,339.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,101,174261,navigate_click,undefined,3,,-311.40465861285617,-29.000000000000004,508.0,359.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,102,174911,navigate_click,undefined,3,,-157.2774780063105,-55.00000000000002,589.0,385.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,103,175662,navigate_click,undefined,3,,-4.299236644702688,-53.99999999999998,630.0,384.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,104,176444,navigate_click,undefined,3,,152.16960105553758,-43.99999999999999,658.0,374.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,105,177362,navigate_click,undefined,3,,373.74246667680364,-14.999999999999984,735.0,345.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,106,178695,navigate_click,undefined,3,,609.5081706007345,-2.0000000000000133,778.0,332.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,107,179477,navigate_click,undefined,3,,727.1608428945218,76.99999999999999,787.0,253.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,108,180945,navigate_click,undefined,3,,685.1759803055024,99.0,621.0,231.0,,,plaque,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,109,184627,object_hover,undefined,3,,,,,,33.0,,plaque.face.date,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,110,186377,object_click,basic,3,,484.7385895264435,-160.0,495.0,490.0,,,plaque,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,111,187312,object_click,basic,3,,517.7334671699398,-108.00000000000004,528.0,438.0,,,plaque.face.date,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,112,188295,notification_click,basic,3,,517.7325186983309,-108.00000000000004,528.0,438.0,,That's it!,,tunic.kohlcenter.halloffame,tunic.kohlcenter.halloffame.plaque.face.date,0,0,1,0-4,0
20090109393214576,113,189794,notification_click,basic,3,,517.7323423679958,-108.00000000000004,528.0,438.0,,The slip is from 1916 but the team didn't start until 1974!,,tunic.kohlcenter.halloffame,tunic.kohlcenter.halloffame.plaque.face.date,0,0,1,0-4,0
20090109393214576,114,190745,object_hover,undefined,3,,,,,,3816.0,,plaque.face.date,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,115,191861,object_click,close,3,,793.7323304918782,269.0,804.0,61.0,,,plaque,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,116,195011,cutscene_click,basic,3,,615.732330431706,48.99999999999999,626.0,281.0,,Our shirt is too old to be a basketball jersey!,togrampa,tunic.kohlcenter.halloffame,tunic.kohlcenter.halloffame.togrampa,0,0,1,0-4,0
20090109393214576,117,197044,cutscene_click,basic,3,,615.732330431706,48.99999999999999,626.0,281.0,,I need to get to the Capitol and tell Gramps!,togrampa,tunic.kohlcenter.halloffame,tunic.kohlcenter.halloffame.togrampa,0,0,1,0-4,0
20090109393214576,118,198886,notebook_click,open,4,1.0,40.73233022176072,-292.0,51.0,622.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,119,200961,notebook_click,close,4,1.0,810.7323302138033,283.0,821.0,47.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,120,201878,navigate_click,undefined,4,,65.73233021366428,-63.0,76.0,393.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,121,202394,navigate_click,undefined,4,,24.2679511900746,-63.0,76.0,393.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,122,202962,navigate_click,undefined,4,,-154.6693558388542,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,123,203372,navigate_click,undefined,4,,-191.43720092673348,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,124,203244,navigate_click,undefined,4,,-225.8699468514381,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,125,203377,navigate_click,undefined,4,,-261.6613256742809,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,126,203511,navigate_click,undefined,4,,-298.5555486432953,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,127,203661,navigate_click,undefined,4,,-341.08183539313694,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,128,203827,navigate_click,undefined,4,,-389.2231750830426,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,129,203960,navigate_click,undefined,4,,-428.13802530995366,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,130,204372,navigate_click,undefined,4,,-472.06537926562936,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,131,204193,navigate_click,undefined,4,,-496.4361600311897,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,132,204310,navigate_click,undefined,4,,-530.4018092527332,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,133,204927,navigate_click,undefined,4,,-701.9506605516498,-89.00000000000004,9.0,419.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,134,205910,navigate_click,undefined,4,,-887.3757379745224,-89.00000000000004,9.0,419.0,,,toentry,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,135,206861,map_click,basic,4,,-941.6179603023436,-26.00000000000001,37.0,356.0,,,,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,136,207212,map_hover,basic,4,,,,,,885.0,,toentry,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,137,207927,map_click,undefined,4,,-532.742758029942,31.00000000000001,467.0,299.0,,,tunic.capitol_0,tunic.kohlcenter.halloffame,,0,0,1,0-4,0
20090109393214576,138,210493,navigate_click,undefined,4,,-43.99149708659878,24.579814061998,227.0,281.0,,,chap1_finale,tunic.capitol_0.hall,,0,0,1,0-4,0
20090109393214576,139,267350,checkpoint,basic,4,,,,,,,,chap1_finale_c,tunic.capitol_0.hall,,0,0,1,0-4,0
20090109393214576,149,303192,navigate_click,undefined,5,,145.5936933153638,-239.40280645881316,564.0,466.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,150,303909,navigate_click,undefined,5,,317.3079077202609,-263.8172017071735,641.0,476.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,151,304609,navigate_click,undefined,5,,506.5112523704638,-344.298701203,708.0,525.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,152,305391,navigate_click,undefined,5,,705.7309732876198,-462.2476394713684,782.0,597.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,153,306242,navigate_click,undefined,5,,845.3906042260169,-522.4731133111151,827.0,635.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,154,307243,navigate_click,undefined,5,,895.9371996895134,-533.6757022029648,845.0,642.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,155,307793,navigate_click,undefined,5,,898.7647338354247,-533.7481742167806,845.0,642.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,156,308625,navigate_click,undefined,5,,-16.625646030784708,-74.6899774009009,240.0,339.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,157,309659,navigate_click,undefined,5,,-367.7166884283832,-163.91239469874571,55.0,416.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,158,310508,navigate_click,undefined,5,,-519.5132605161651,-273.93322824481146,37.0,489.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,159,311242,navigate_click,undefined,5,,-644.559094179255,-286.90871582627005,37.0,489.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,160,312342,navigate_click,undefined,5,,-792.0434835562706,-327.4711366695928,25.0,511.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,161,312942,navigate_click,undefined,5,,-697.4316926822207,-437.983192521092,112.0,580.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,162,313509,navigate_click,undefined,5,,-675.3363032291304,-510.3997852449894,131.0,627.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,163,313693,navigate_click,undefined,5,,-676.3850197406528,-510.58852654869116,131.0,627.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,164,314559,navigate_click,undefined,5,,-773.9338314406032,-36.72301497724477,68.0,314.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,165,316022,navigate_click,undefined,5,,-774.2992868078218,-22.072143179601262,68.0,314.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,166,315525,navigate_click,undefined,5,,-774.382055468888,-10.797331276882172,68.0,314.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,167,315725,navigate_click,undefined,5,,-774.4103431746049,-6.943957825970749,68.0,314.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,168,316443,navigate_click,undefined,5,,-286.57836140634464,-73.295265480253,390.0,362.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,169,316759,navigate_click,undefined,5,,-275.771677918288,-72.2596730649601,390.0,362.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,170,317758,navigate_click,undefined,5,,-83.72564303006531,-96.90841526634912,481.0,379.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,171,318492,navigate_click,undefined,5,,111.79409992132489,-195.23641279802132,571.0,444.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,172,319512,navigate_click,undefined,5,,380.79896073180834,-217.42813966986265,699.0,452.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,173,320009,navigate_click,undefined,5,,638.7086238745301,-3.2639719868443966,786.0,305.0,,,,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,174,321441,navigate_click,undefined,5,,816.2466185588625,-31.942261424415282,809.0,335.0,,,toentry,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,175,323408,map_hover,basic,5,,,,,,616.0,,tunic.capitol_0,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,176,323477,map_hover,basic,5,,,,,,36.0,,tunic.capitol_0,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,177,323875,map_hover,basic,5,,,,,,367.0,,tunic.kohlcenter,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,178,324810,map_hover,basic,5,,,,,,817.0,,tunic.capitol_0,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,179,325259,map_hover,basic,5,,,,,,401.0,,tunic.historicalsociety,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,180,328677,map_hover,basic,5,,,,,,3284.0,,tunic.capitol_0,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,181,329593,map_click,undefined,5,,447.39785162715486,206.9530712314919,551.0,172.0,,,tunic.historicalsociety,tunic.capitol_0.hall,,0,0,1,5-12,1
20090109393214576,182,333225,navigate_click,undefined,5,,1135.0794569026605,-60.899875664503824,856.0,365.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,183,336392,navigate_click,undefined,5,,589.5776387208425,157.42929330200815,521.0,228.0,,,tobasement,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,184,338875,navigate_click,undefined,5,,307.3980834446024,-146.74918154765072,747.0,426.0,,,,tunic.historicalsociety.basement,,0,0,1,5-12,1
20090109393214576,185,339509,navigate_click,undefined,5,,189.91655834860126,-36.72466043299456,643.0,347.0,,,tocloset_dirty,tunic.historicalsociety.basement,,0,0,1,5-12,1
20090109393214576,186,342825,cutscene_click,basic,5,,-398.7991661263066,-123.58032647069193,358.0,445.0,,Oh no!,what_happened,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.what_happened,0,0,1,5-12,1
20090109393214576,187,345352,cutscene_click,basic,5,,-631.1296376636352,-134.89375190811586,358.0,445.0,,What happened here?!,what_happened,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.what_happened,0,0,1,5-12,1
20090109393214576,188,345875,cutscene_click,basic,5,,-633.9558359874306,-135.031374768329,358.0,445.0,,I don't know!,what_happened,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.what_happened,0,0,1,5-12,1
20090109393214576,189,348012,cutscene_click,basic,5,,-634.7936588863853,-135.07217289022134,358.0,445.0,,I got here and the whole place was ransacked!,what_happened,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.what_happened,0,0,1,5-12,1
20090109393214576,190,348975,navigate_click,undefined,6,,-692.3686641712646,49.879761399288256,224.0,243.0,,,gramps,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,191,350508,person_click,basic,6,,-725.1123823085095,-13.423981546272234,198.0,310.0,,Can you help me tidy up?,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.helpclean,0,0,1,5-12,1
20090109393214576,192,352308,navigate_click,undefined,6,,-717.5722052175216,-1.1720967379874736,206.0,298.0,,,gramps,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,193,353224,person_click,basic,6,,-717.5862221228763,-1.1644184656596153,206.0,298.0,,Can you help me tidy up?,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.helpclean,0,0,1,5-12,1
20090109393214576,194,354784,notebook_click,open,6,1.0,-857.5892616307287,-319.16275346411726,66.0,616.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,195,356443,notebook_click,close,6,1.0,-121.58944319812895,239.83734599606385,802.0,57.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,196,357758,navigate_click,undefined,6,,-429.589450958685,-152.16264975280785,494.0,449.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,197,358941,navigate_click,undefined,6,,-458.1821588848469,-97.80427261531936,365.0,392.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,198,359926,navigate_click,undefined,6,,-531.4599417483217,-96.26655638964306,288.0,400.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,199,360941,navigate_click,undefined,6,,-380.14588324429764,-167.9054670460635,480.0,466.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,200,361574,navigate_click,undefined,6,,-267.674885502255,-176.8983378028615,543.0,470.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,201,362842,navigate_click,undefined,6,,-116.69825498374986,-191.74701515874958,614.0,482.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,202,362958,navigate_click,undefined,6,,77.07398898465338,-202.12285263381543,679.0,489.0,,,trigger_scarf,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,203,364708,cutscene_click,basic,6,,172.76254520005344,-245.1481282629142,645.0,528.0,,Teddy's scarf! Somebody must've taken him!,trigger_scarf,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_scarf,0,0,1,5-12,1
20090109393214576,204,366672,cutscene_click,basic,6,,54.350453601841096,-223.30424617814097,521.0,506.0,,"Try not to panic, Jo.",trigger_scarf,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_scarf,0,0,1,5-12,1
20090109393214576,205,367208,cutscene_click,basic,6,,54.72695639665528,-223.31476511066052,521.0,506.0,,Maybe he just got scared and ran off.,trigger_scarf,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_scarf,0,0,1,5-12,1
20090109393214576,206,368258,cutscene_click,basic,6,,54.780280540205204,-223.3162549085461,521.0,506.0,,But he never goes anywhere without his scarf!,trigger_scarf,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_scarf,0,0,1,5-12,1
20090109393214576,207,369558,cutscene_click,basic,6,,55.78860029835178,-221.3164873503121,522.0,504.0,,I think he's in trouble!,trigger_scarf,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_scarf,0,0,1,5-12,1
20090109393214576,208,370982,navigate_click,undefined,6,,55.78913111287959,-221.3165021804868,522.0,504.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,209,370907,navigate_click,undefined,6,,109.59722027988155,-223.03712999077229,522.0,504.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,210,372240,navigate_click,undefined,6,,171.5826605176723,-223.79021193532918,522.0,504.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,211,374257,navigate_click,undefined,6,,483.18512949215415,-162.98644387884605,775.0,443.0,,,trigger_coffee,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,212,376376,cutscene_click,basic,6,,611.287739481839,-173.0363014703014,732.0,465.0,,"Is this your coffee, Gramps?",trigger_coffee,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_coffee,0,0,1,5-12,1
20090109393214576,213,380959,cutscene_click,basic,6,,617.6053288670971,-172.74584100373073,732.0,465.0,,"Nope, that's from Bean Town. I only drink Holdgers!",trigger_coffee,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.trigger_coffee,0,0,1,5-12,1
20090109393214576,214,383752,notebook_click,open,6,1.0,-55.393225071475285,-316.7457745189291,59.0,609.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,215,388890,notebook_click,close,6,1.0,714.6067839177972,202.254225894366,829.0,90.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,216,389675,navigate_click,undefined,6,,668.6067839183286,78.25422589439036,783.0,214.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,217,391332,navigate_click,undefined,6,,760.9962245105628,-149.52120005569805,727.0,446.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,218,391774,navigate_click,undefined,6,,835.211311178403,-177.9550295506539,783.0,473.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,219,393257,navigate_click,undefined,6,,517.3509230383371,-213.02327208010465,458.0,502.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,220,394682,navigate_click,undefined,6,,296.1470438610691,-261.56183794579283,293.0,545.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,221,395057,navigate_click,undefined,6,,57.91038399097005,-242.9235037623333,180.0,519.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,222,396641,navigate_click,undefined,6,,-221.081590212506,-173.16797859880504,142.0,450.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,223,397342,navigate_click,undefined,6,,-282.82120906565007,-167.13977252921336,142.0,450.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,224,397940,navigate_click,undefined,6,,-534.3094778971233,-180.0208104357988,73.0,469.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,225,398640,navigate_click,undefined,6,,-731.2468085289813,-162.62274300547284,14.0,451.0,,,gramps,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,226,399808,person_click,basic,6,,-800.8522107765853,-66.30376618696263,100.0,362.0,,Who could've done this?,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,227,400658,person_click,basic,6,,-770.7799928748082,-66.4040222756329,148.0,363.0,,It must've been Wells.,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,228,402491,person_click,basic,6,,-775.4208014557631,-66.17111341710904,148.0,363.0,,"He's always trying to get you in trouble, and he doesn't like animals!",gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,229,403324,person_click,basic,6,,-775.5526749230197,-66.16449506640731,148.0,363.0,,"Hold your horses, Jo.",gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,230,404691,person_click,basic,6,,-775.58642579306,-66.16280120714161,148.0,363.0,,But what if Wells kidnapped Teddy?,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,231,405490,person_click,basic,6,,-775.5887504099167,-66.16268454129575,148.0,363.0,,Then we need evidence.,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,232,406274,person_click,basic,6,,-775.5892841422241,-66.16265775480363,148.0,363.0,,"You're right, Gramps. Let's investigate!",gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,233,407874,person_click,basic,6,,-775.5894427020392,-66.16264979714174,148.0,363.0,,I'm afraid my papers have gone missing in this mess.,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,234,409332,person_click,basic,6,,-775.5894507574869,-66.16264939286194,148.0,363.0,,You'll have to get started without me.,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,235,409873,person_click,basic,6,,-775.5894514696057,-66.16264935712276,148.0,363.0,,Okay. I'll find Teddy!,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,236,410490,person_click,basic,6,,-775.5894516269342,-66.1626493492269,148.0,363.0,,"And I'll figure out the shirt, too.",gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,237,411257,person_click,basic,6,,-775.5894516837683,-66.16264934637456,148.0,363.0,,"I knew I could count on you, Jo!",gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,238,412007,person_click,basic,6,,-775.5894516976259,-66.1626493456791,148.0,363.0,,Why don't you go upstairs and see the archivist?,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,239,412907,person_click,basic,6,,-775.589451701432,-66.16264934548803,148.0,363.0,,He's our expert record keeper.,gramps,tunic.historicalsociety.closet_dirty,tunic.historicalsociety.closet_dirty.gramps.news,0,0,1,5-12,1
20090109393214576,240,414907,navigate_click,undefined,6,,-863.5894517023189,-355.16264934544347,60.0,652.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,241,416019,notebook_click,open,6,1.0,-930.1325711314078,-345.0466633921455,57.0,621.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,242,417841,notebook_click,close,6,1.0,-191.6010927570519,195.8279016174125,812.0,75.0,,,,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,243,418774,navigate_click,undefined,6,,-375.06399053175636,95.6838357136599,629.0,175.0,,,tobasement,tunic.historicalsociety.closet_dirty,,0,0,1,5-12,1
20090109393214576,244,422041,navigate_click,undefined,6,,-504.6720592424243,-4.5673633658325,51.0,324.0,,,toentry,tunic.historicalsociety.basement,,0,0,1,5-12,1
20090109393214576,245,425740,navigate_click,undefined,6,,-73.6105604244553,-104.83777096009342,179.0,394.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,246,426791,navigate_click,undefined,6,,-321.76467932310425,-113.03727772255935,99.0,392.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,247,428492,navigate_click,undefined,6,,-628.2036354942967,-168.69436163578794,86.0,424.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,248,430008,navigate_click,undefined,6,,-952.9557671172987,-42.72737769708118,72.0,342.0,,,tocollection,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,249,431923,navigate_click,undefined,6,,-363.43535633233887,-25.35071640039288,72.0,342.0,,,,tunic.historicalsociety.collection,,0,0,1,5-12,1
20090109393214576,250,433023,navigate_click,undefined,6,,588.971855999481,20.294255357857548,767.0,314.0,,,,tunic.historicalsociety.collection,,0,0,1,5-12,1
20090109393214576,251,434573,navigate_click,undefined,6,,623.774021629879,11.008357627436908,769.0,322.0,,,toentry,tunic.historicalsociety.collection,,0,0,1,5-12,1
20090109393214576,252,435890,navigate_click,undefined,6,,23.689012462031545,35.46292784706645,754.0,300.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,253,436857,navigate_click,undefined,6,,217.82471236838177,97.93819636495036,828.0,265.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,254,437957,navigate_click,undefined,6,,279.30218805900046,118.64209892391027,746.0,253.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,255,438774,navigate_click,undefined,6,,244.1859516420189,131.80850970952278,614.0,245.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,256,442273,navigate_click,undefined,6,,44.000000000000036,113.56545511481708,484.0,199.0,,,tofrontdesk,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,257,446591,navigate_click,undefined,6,,-45.211226923604094,79.0,376.0,251.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,258,448756,person_click,basic,6,,-5.6189566643222975,-70.00000000000001,403.0,400.0,,I need your help!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.hello,0,0,1,5-12,1
20090109393214576,259,450332,person_click,basic,6,,-5.371441607932379,-70.00000000000001,403.0,400.0,,*grumble grumble*,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.hello,0,0,1,5-12,1
20090109393214576,260,451473,person_click,basic,6,,-5.350388414169338,-70.00000000000001,403.0,400.0,,And you are?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.hello,0,0,1,5-12,1
20090109393214576,261,452524,person_click,basic,6,,-5.348777923778673,-70.00000000000001,403.0,400.0,,I'm Leopold's grandkid!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.hello,0,0,1,5-12,1
20090109393214576,262,453856,person_click,basic,6,,-5.3485251297180545,-70.00000000000001,403.0,400.0,,I don't have time for kids.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.hello,0,0,1,5-12,1
20090109393214576,263,459507,person_click,basic,6,,-81.34850090645297,-60.99999999999999,327.0,391.0,,Now if only I could read this thing. Blasted tiny letters...,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.hello,0,0,1,5-12,1
20090109393214576,264,461689,navigate_click,undefined,6,,49.65149909432691,-77.99999999999999,458.0,408.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,265,462339,navigate_click,undefined,6,,42.02090619271321,-77.99999999999999,458.0,408.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,266,463322,navigate_click,undefined,6,,12.843574267943199,25.00000000000001,434.0,305.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,267,465689,person_click,basic,6,,-13.47728722669289,48.00000000000002,395.0,282.0,,Can't believe I lost my reading glasses.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.need_glass_0,0,0,1,5-12,1
20090109393214576,268,468289,navigate_click,undefined,6,,-82.34957993192579,-114.0,326.0,444.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,269,468856,person_click,basic,6,,-156.34888396934372,-160.0,252.0,490.0,,I used to have a magnifying glass around here\u00e2\u20ac\u00a6,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.need_glass_1,0,0,1,5-12,1
20090109393214576,270,470782,navigate_click,undefined,6,,-72.34853991342246,6.000000000000003,336.0,324.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,271,472656,person_click,basic,6,,197.6514987362462,177.0,606.0,153.0,,I used to have a magnifying glass around here\u00e2\u20ac\u00a6,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.need_glass_1,0,0,1,5-12,1
20090109393214576,272,473306,navigate_click,undefined,6,,197.65149898844803,177.0,606.0,153.0,,,magnify,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,273,475662,observation_click,basic,6,,217.24073259705017,169.00000000000003,562.0,161.0,,I bet the archivist could use this!,magnify,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.magnify,0,0,1,5-12,1
20090109393214576,274,476839,navigate_click,undefined,6,,-84.04648451299623,0.0,257.0,330.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,275,479189,person_click,basic,6,,-142.79901886860088,-58.00000000000001,264.0,388.0,,"Ah, that's better!",archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,276,480652,person_click,basic,6,,-144.0754928895479,-58.00000000000001,264.0,388.0,,Did you have a question?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,277,481690,person_click,basic,6,,-144.3324334656957,-58.00000000000001,264.0,388.0,,Yes! I was wondering-,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,278,482539,person_click,basic,6,,-144.34510226590226,-58.00000000000001,264.0,388.0,,Wait a minute!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,279,484189,person_click,basic,6,,-144.3483342934486,-58.00000000000001,264.0,388.0,,Where did you get that coffee?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,280,485222,person_click,basic,6,,-144.3484756967325,-58.00000000000001,264.0,388.0,,"Oh, that's from Bean Town.",archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,281,486572,person_click,basic,6,,-144.34849876737763,-58.00000000000001,264.0,388.0,,I ran into Wells there this morning.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,282,487623,person_click,basic,6,,-144.34850059183637,-58.00000000000001,264.0,388.0,,Wells? I knew it!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,283,488489,person_click,basic,6,,-144.3485008412695,-58.00000000000001,264.0,388.0,,Knew what?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,284,489606,person_click,basic,6,,-144.34850089729284,-58.00000000000001,264.0,388.0,,Did you have a question or not?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,285,490488,person_click,basic,6,,-144.34850090399382,-58.00000000000001,264.0,388.0,,Yes!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,286,491322,person_click,basic,6,,-144.34850090529582,-58.00000000000001,264.0,388.0,,Do you know anything about this slip?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,287,492822,person_click,basic,6,,-144.34850090557967,-58.00000000000001,264.0,388.0,,I found it on an old shirt.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,288,493606,person_click,basic,6,,-144.34850090565328,-58.00000000000001,264.0,388.0,,An old shirt? Try the university.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,289,495882,person_click,basic,6,,-144.34850090565848,-58.00000000000001,264.0,388.0,,You can talk to a textile expert there.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,290,496456,person_click,basic,6,,-144.34850090565882,-58.00000000000001,264.0,388.0,,What's a textile expert?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,291,497788,person_click,basic,6,,-144.34850090565882,-58.00000000000001,264.0,388.0,,They study clothes and fabric.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,292,498905,person_click,basic,6,,-144.34850090565882,-58.00000000000001,264.0,388.0,,Great! Thanks for the help!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass,0,0,1,5-12,1
20090109393214576,293,499589,navigate_click,undefined,7,,-144.34850090565882,-58.00000000000001,264.0,388.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,294,500956,person_click,basic,7,,-144.34850090565882,-58.00000000000001,264.0,388.0,,You're still here? I'm trying to work!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,295,502055,person_click,basic,7,,-144.34850090565882,-58.00000000000001,264.0,388.0,,Run along to the university.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,296,503439,person_click,basic,7,,-144.34850090565882,-58.00000000000001,264.0,388.0,,You can talk to a textile expert there.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,297,504555,navigate_click,undefined,7,,-144.34850090565882,-58.00000000000001,264.0,388.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,298,505922,person_click,basic,7,,-144.34850090565882,-58.00000000000001,264.0,388.0,,You're still here? I'm trying to work!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,299,506906,person_click,basic,7,,-129.34850090565882,-79.00000000000003,279.0,409.0,,Run along to the university.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,300,508838,person_click,basic,7,,-97.34850090565882,-4.000000000000027,311.0,334.0,,You can talk to a textile expert there.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,301,509539,navigate_click,undefined,7,,-97.34850090565882,-4.000000000000027,311.0,334.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,302,510238,person_click,basic,7,,-97.34850090565882,-4.000000000000027,311.0,334.0,,You're still here? I'm trying to work!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,303,511655,person_click,basic,7,,-97.34850090565882,-4.000000000000027,311.0,334.0,,Run along to the university.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,304,513642,person_click,basic,7,,-30.348500905658806,-165.99999999999997,378.0,496.0,,You can talk to a textile expert there.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.have_glass_recap,0,0,1,5-12,1
20090109393214576,305,514272,navigate_click,undefined,7,,-45.34850090565885,-267.0,363.0,597.0,,,tostacks,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,306,516457,navigate_click,undefined,7,,7.481965660374918,-308.2444197415548,428.0,640.0,,,toentry,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,307,520322,navigate_click,undefined,7,,879.8184057873253,141.25452147717442,874.0,238.0,,,tomap,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,308,521905,navigate_click,undefined,7,,998.2649828350923,85.1650812192095,820.0,277.0,,,tomap,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,309,522822,map_hover,basic,7,,,,,,34.0,,tunic.humanecology,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,310,523482,map_hover,basic,7,,,,,,250.0,,tunic.kohlcenter,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,311,523905,map_click,undefined,7,,392.1520164891854,-248.1471061615217,401.0,482.0,,,tunic.humanecology,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,312,526673,navigate_click,undefined,7,,113.8505361724333,-158.0,311.0,488.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,313,527589,navigate_click,undefined,7,,-53.747568622390325,-175.0,227.0,505.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,314,528739,navigate_click,undefined,7,,-282.1168593728453,-130.00000000000003,160.0,460.0,,,worker,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,315,529888,person_click,basic,7,,-140.24458289914048,-148.0,323.0,478.0,,Hello there!,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,316,530873,person_click,basic,7,,-142.6610793026399,-148.0,323.0,478.0,,Wow! What is all this stuff?,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,317,532554,person_click,basic,7,,-143.11914625057068,-148.0,323.0,478.0,,It's our Norwegian Craft exhibit!,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,318,533421,person_click,basic,7,,-143.1367519430691,-148.0,323.0,478.0,,Can I give you the tour?,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,319,534206,person_click,basic,7,,-143.1402108398359,-148.0,323.0,478.0,,"Sorry, I'm in a hurry.",worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,320,535571,person_click,basic,7,,-143.1412073828439,-148.0,323.0,478.0,,Do you know what this slip is?,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,321,536706,person_click,basic,7,,-143.14128546700104,-148.0,323.0,478.0,,Looks like a dry cleaning receipt.,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,322,537571,person_click,basic,7,,-143.14129441683428,-148.0,323.0,478.0,,"Ooh, thanks!",worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,323,539482,person_click,basic,7,,-143.14129659119897,-148.0,323.0,478.0,,Now I just need to find all the cleaners from wayyyy back in 1916.,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,324,539839,person_click,basic,7,,-143.14129669047296,-148.0,323.0,478.0,,Yikes... this could take a while.,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,325,540671,person_click,basic,7,,-143.14129671916766,-148.0,323.0,478.0,,Maybe I can help!,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,326,541705,person_click,basic,7,,-143.14129672595922,-148.0,323.0,478.0,,I've got a stack of business cards from my favorite cleaners.,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,327,542456,person_click,basic,7,,-143.1412967268626,-148.0,323.0,478.0,,Why don't you take a look?,worker,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.worker.intro,0,0,1,5-12,1
20090109393214576,328,544388,navigate_click,undefined,7,,171.85870327283894,-41.00000000000001,638.0,371.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,329,550839,object_click,basic,7,,408.2384152770224,-14.999999999999984,766.0,345.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,330,552838,object_click,basic,7,,408.23972944969864,-14.999999999999984,766.0,345.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,331,554922,object_hover,undefined,7,,,,,,6617.0,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,332,556804,object_click,basic,7,,171.23976430989856,-16.00000000000003,529.0,346.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,333,557688,object_click,basic,7,,174.23976432975633,-48.00000000000002,532.0,378.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,334,558989,object_click,basic,7,,398.239764334232,-4.000000000000027,756.0,334.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,335,561404,object_click,basic,7,,399.2397643346849,-7.000000000000008,757.0,337.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,336,562771,object_click,basic,7,,399.23976433469,-7.000000000000008,757.0,337.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,337,563688,object_hover,undefined,7,,,,,,5082.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,338,564472,object_click,basic,7,,164.23976433469025,14.000000000000016,522.0,316.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,339,566237,object_click,basic,7,,79.23976433469028,-298.0,437.0,628.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,340,566855,object_hover,undefined,7,,,,,,16.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,341,567642,object_click,basic,7,,109.23976433469022,-19.00000000000001,467.0,349.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,342,567971,object_click,basic,7,,236.2397643346904,-24.00000000000001,594.0,354.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,343,568482,object_click,basic,7,,236.2397643346904,-24.00000000000001,594.0,354.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,344,569982,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,345,570654,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,346,571837,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,347,572504,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,348,572821,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,349,572988,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,350,573802,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,351,573320,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,352,573555,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,353,573755,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,354,573887,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,355,574404,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,356,574637,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,357,575238,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,358,575838,object_click,basic,7,,413.23976433469016,-9.999999999999991,771.0,340.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,359,576489,object_hover,undefined,7,,,,,,7918.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,360,576923,object_hover,undefined,7,,,,,,17.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,361,577321,object_click,basic,7,,347.2397643346904,-270.0,705.0,600.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,362,578005,object_hover,undefined,7,,,,,,15.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,363,578205,object_click,basic,7,,107.2397643346903,-4.999999999999996,465.0,335.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,364,578771,object_click,basic,7,,106.23976433469022,31.00000000000001,464.0,299.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,365,579021,object_hover,undefined,7,,,,,,50.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,366,585921,object_click,basic,7,,113.2397643346903,7.000000000000008,471.0,323.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,367,586054,object_click,basic,7,,113.2397643346903,7.000000000000008,471.0,323.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,368,586205,object_click,basic,7,,113.2397643346903,7.000000000000008,471.0,323.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,369,586354,object_click,basic,7,,113.2397643346903,7.000000000000008,471.0,323.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,370,586938,object_click,basic,7,,102.23976433469026,93.0,460.0,237.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,371,587472,object_click,basic,7,,102.23976433469026,93.0,460.0,237.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,372,588005,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,373,588802,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,374,588304,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,375,588437,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,376,588587,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,377,588720,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,378,588872,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,379,589302,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,380,589272,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,381,589471,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,382,589620,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,383,589771,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,384,589954,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,385,590582,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,386,590237,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,387,590387,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,388,590537,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,389,590687,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,390,590854,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,391,591455,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,392,592021,object_click,basic,7,,385.2397643346904,-0.9999999999999698,743.0,331.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,393,592637,object_hover,undefined,7,,,,,,5016.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,394,593071,object_click,basic,7,,188.2397643346904,14.000000000000016,546.0,316.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,395,594221,object_click,basic,7,,382.2397643346904,-9.999999999999991,740.0,340.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,396,594520,object_hover,undefined,7,,,,,,666.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,397,594804,object_click,basic,7,,142.23976433469034,88.00000000000001,500.0,242.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,398,595720,object_click,basic,7,,404.2397643346904,2.9999999999999827,762.0,327.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,399,596188,object_hover,undefined,7,,,,,,767.0,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,400,596487,object_click,basic,7,,122.23976433469022,100.0,480.0,230.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,401,598802,object_click,basic,7,,384.23976433469016,10.999999999999998,742.0,319.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,402,598688,object_hover,undefined,7,,,,,,834.0,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,403,599302,object_click,basic,7,,-168.76023566530972,269.0,189.0,61.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,404,600504,object_click,basic,7,,308.23976433469034,-126.99999999999996,666.0,457.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,405,601771,object_hover,undefined,7,,,,,,16.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,406,602903,object_click,basic,7,,355.23976433469016,226.0,713.0,104.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,407,608354,object_hover,undefined,7,,,,,,99.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,408,612687,object_click,basic,7,,373.2397643346904,250.0,731.0,80.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,409,613337,object_click,basic,7,,155.23976433469034,150.0,513.0,180.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,410,613736,object_click,basic,7,,154.23976433469025,150.0,512.0,180.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,411,614253,object_click,basic,7,,411.2397643346904,165.0,769.0,165.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,412,628772,object_click,basic,7,,39.23976433469026,-14.999999999999984,397.0,345.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,413,628956,object_click,basic,7,,39.23976433469026,-14.999999999999984,397.0,345.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,414,629922,object_click,basic,7,,69.23976433469028,71.00000000000001,427.0,259.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,415,631788,object_hover,undefined,7,,,,,,16.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,416,635589,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,417,635789,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,418,635939,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,419,636312,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,420,636256,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,421,636422,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,422,636572,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,423,636722,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,424,636871,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,425,637072,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,426,637238,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,427,637406,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,428,637572,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,429,637742,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,430,637908,object_click,basic,7,,400.2397643346904,-2.9999999999999827,758.0,333.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,431,638575,object_hover,undefined,7,,,,,,3885.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,432,638941,object_click,basic,7,,69.23976433469028,28.0,427.0,302.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,433,639308,object_click,basic,7,,34.239764334690264,100.0,392.0,230.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,434,715449,object_hover,undefined,7,,,,,,33.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,435,778305,object_click,basic,7,,-265.76023566530966,261.0,92.0,69.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,436,779005,object_click,basic,7,,50.23976433469026,3.9999999999999885,408.0,326.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,437,779821,object_click,basic,7,,-147.76023566530972,199.0,210.0,131.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,438,780322,object_click,basic,7,,305.23976433469034,40.0,663.0,290.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,439,780822,object_hover,undefined,7,,,,,,67.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,440,781438,object_click,basic,7,,423.23976433469016,-9.000000000000021,781.0,339.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,441,781788,object_click,basic,7,,423.23976433469016,-9.000000000000021,781.0,339.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,442,782204,object_click,basic,7,,423.23976433469016,-9.000000000000021,781.0,339.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,443,782672,object_click,basic,7,,423.23976433469016,-9.000000000000021,781.0,339.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,444,783221,object_hover,undefined,7,,,,,,2082.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,445,783389,object_click,basic,7,,150.23976433469028,0.0,508.0,330.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,446,788058,object_click,basic,7,,-9.760235665309722,75.0,348.0,255.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,447,791576,object_click,basic,7,,-269.76023566530966,182.0,88.0,148.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,448,792875,object_click,basic,7,,-228.76023566530966,268.0,129.0,62.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,449,793591,object_click,basic,7,,-84.76023566530972,103.0,273.0,227.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,450,795292,object_click,basic,7,,388.2397643346904,14.999999999999984,746.0,315.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,451,795742,object_click,basic,7,,388.2397643346904,14.999999999999984,746.0,315.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,452,796426,object_hover,undefined,7,,,,,,1451.0,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,453,796543,object_click,basic,7,,278.23976433469034,30.00000000000001,636.0,300.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,454,798741,object_click,basic,7,,225.23976433469025,-230.00000000000003,583.0,560.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,455,804525,object_click,basic,7,,258.23976433469016,79.0,616.0,251.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,456,804692,object_click,basic,7,,258.23976433469016,79.0,616.0,251.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,457,805842,object_click,basic,7,,385.2397643346904,190.0,743.0,140.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,458,805274,object_click,basic,7,,385.2397643346904,190.0,743.0,140.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,459,850073,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,460,850256,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,461,850406,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,462,850573,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,463,850889,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,464,851056,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,465,851206,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,466,851340,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,467,851757,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,468,851906,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,469,852882,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_0.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,470,852323,object_click,basic,7,,408.2397643346904,7.000000000000008,766.0,323.0,,,businesscards.card_1.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,471,852574,object_hover,undefined,7,,,,,,3151.0,,businesscards.card_bingo.next,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,472,852623,object_hover,undefined,7,,,,,,17.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,473,853782,object_click,basic,7,,-229.76023566530966,-295.00000000000006,128.0,625.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,474,888221,object_click,basic,7,,31.239764334690257,13.000000000000007,389.0,317.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,475,890621,object_click,basic,7,,384.23976433469016,224.0,742.0,106.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,476,891206,object_click,basic,7,,370.2397643346904,264.0,728.0,66.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,477,892506,object_click,basic,7,,123.2397643346903,-175.0,481.0,505.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,478,893639,object_click,basic,7,,130.23976433469028,-218.0,488.0,548.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,479,894205,object_click,basic,7,,102.23976433469026,-284.0,460.0,614.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,480,895272,object_click,basic,7,,-260.76023566530966,-104.0,97.0,434.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,481,895838,object_click,basic,7,,-149.76023566530975,-240.0,208.0,570.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,482,897289,object_click,basic,7,,-314.76023566530966,139.00000000000003,43.0,191.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,483,897445,object_click,basic,7,,-314.76023566530966,139.00000000000003,43.0,191.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,484,897596,object_click,basic,7,,-314.76023566530966,139.00000000000003,43.0,191.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,485,897730,object_click,basic,7,,-314.76023566530966,139.00000000000003,43.0,191.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,486,1567918,object_hover,undefined,7,,,,,,100.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,487,1568218,object_hover,undefined,7,,,,,,167.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,488,1568718,object_hover,undefined,7,,,,,,166.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,489,1570218,object_hover,undefined,7,,,,,,617.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,490,1571819,object_click,basic,7,,140.23976433469028,-101.00000000000004,498.0,431.0,,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,491,1593638,notification_click,basic,7,,100.2397643346903,-4.000000000000027,458.0,334.0,,This place was around in 1916! I can start there!,,tunic.humanecology.frontdesk,tunic.humanecology.frontdesk.businesscards.card_bingo.bingo,0,0,1,5-12,1
20090109393214576,492,1594619,object_hover,undefined,7,,,,,,23451.0,,businesscards.card_bingo.bingo,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,493,1595382,object_click,basic,7,,136.2397643346903,12.000000000000005,494.0,318.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,494,1595834,object_click,close,7,,462.23976433469016,266.0,820.0,64.0,,,businesscards,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,495,1598031,notebook_click,open,8,2.0,-303.76023566530966,-281.0,54.0,611.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,496,1600001,notebook_click,close,8,2.0,462.23976433469016,285.0,820.0,45.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,497,1601012,navigate_click,undefined,8,,314.23976433469034,-157.00000000000003,672.0,487.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,498,1601742,navigate_click,undefined,8,,449.9700003271338,-202.0,750.0,532.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,499,1602593,navigate_click,undefined,8,,572.3953085670453,-221.0,795.0,551.0,,,,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,500,1603443,navigate_click,undefined,8,,631.2404440060375,-114.99999999999996,803.0,445.0,,,tohallway,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,501,1604777,map_hover,basic,8,,,,,,51.0,,tunic.capitol_1,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,502,1605193,map_hover,basic,8,,,,,,66.0,,tunic.capitol_1,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,503,1605726,map_click,undefined,8,,424.6061869221977,52.00000000000001,576.0,278.0,,,tunic.drycleaner,tunic.humanecology.frontdesk,,0,0,1,5-12,1
20090109393214576,504,4550966,navigate_click,undefined,8,,119.87578433926966,2.9999999999999827,446.0,327.0,,,,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,505,4552890,navigate_click,undefined,8,,-99.69227080259216,3.9999999999999885,296.0,326.0,,,worker,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,506,4670049,person_click,basic,8,,-78.3343936664025,-12.000000000000005,313.0,342.0,,Hi! *cough*,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,507,4671574,person_click,basic,8,,184.66560637492526,-41.99999999999998,576.0,372.0,,Can you help-,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,508,4672591,person_click,basic,8,,184.66560637717842,-41.99999999999998,576.0,372.0,,*cough cough*,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,509,4673807,person_click,basic,8,,63.66560637754981,-108.00000000000004,455.0,438.0,,Can you help me-,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,510,4674641,person_click,basic,8,,63.66560637758507,-108.00000000000004,455.0,438.0,,*COUGH COUGH COUGH*,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,511,4675440,person_click,basic,8,,63.665606377592624,-108.00000000000004,455.0,438.0,,Are you okay?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,512,4676674,person_click,basic,8,,63.66560637759464,-108.00000000000004,455.0,438.0,,"Oh, I'm fine! Just a little hoarse.",worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,513,4678540,person_click,basic,8,,63.665606377594784,-108.00000000000004,455.0,438.0,,Ha! What do you call a pony with a sore throat?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,514,4680073,person_click,basic,8,,33.66560637759476,-97.0,425.0,427.0,,Huh?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,515,4680982,person_click,basic,8,,33.66560637759476,-97.0,425.0,427.0,,A little horse!,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,516,4682832,person_click,basic,8,,33.66560637759476,-97.0,425.0,427.0,,Ha! You're funny.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,517,4689732,person_click,basic,8,,35.66560637759474,-97.0,427.0,427.0,,I got that one from my Gramps!,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,518,4696215,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,Can you help me? I need to find the owner of this slip.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,519,4702732,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,"Well, I can't show our log books to just anybody.",worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,520,4704015,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,Please?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,521,4706242,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,It's for Grampa Leo. He's a historian!,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,522,4707249,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,Leo... you mean Leopold?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,523,4711848,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,Your gramps is awesome! Always full of stories.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,524,4716581,person_click,basic,8,,-19.334393622405265,-108.00000000000004,372.0,438.0,,"Yup, that's him!",worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,525,4725264,person_click,basic,8,,223.6656063775948,115.0,615.0,215.0,,Guess it couldn't hurt to let you take a look.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,526,4728681,person_click,basic,8,,223.6656063775948,115.0,615.0,215.0,,Here's the log book.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.hub,0,0,1,5-12,1
20090109393214576,527,4731307,navigate_click,undefined,8,,19.66560637759473,19.999999999999982,411.0,310.0,,,logbook,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,528,4747508,object_click,basic,8,,46.226513501622044,2.9999999999999827,477.0,327.0,,,logbook.page.bingo,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,529,4751192,notification_click,basic,8,,-118.77348649838574,23.0,312.0,307.0,,It's a match!,,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.logbook.page.bingo,0,0,1,5-12,1
20090109393214576,530,4753341,notification_click,basic,8,,235.22651350161428,6.000000000000003,666.0,324.0,,Theodora Youmans must be the owner!,,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.logbook.page.bingo,0,0,1,5-12,1
20090109393214576,531,4754257,object_hover,undefined,8,,,,,,7666.0,,logbook.page.bingo,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,532,4754841,object_click,close,8,,404.2265135016143,272.0,835.0,58.0,,,logbook,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,533,4756291,navigate_click,undefined,9,,-133.7734864983857,54.00000000000002,297.0,276.0,,,worker,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,534,4757773,person_click,basic,9,,-7.067682392723397,-55.00000000000002,388.0,385.0,,Do you know who Theodora Youmans is?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.done,0,0,1,5-12,1
20090109393214576,535,4759492,person_click,basic,9,,-3.651060076852658,-55.00000000000002,388.0,385.0,,Hmmm... not sure. Why don't you try the library?,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.done,0,0,1,5-12,1
20090109393214576,536,4760890,person_click,basic,9,,-3.3469367514900696,-55.00000000000002,388.0,385.0,,Unless you're too busy horsing around.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.done,0,0,1,5-12,1
20090109393214576,537,4761824,person_click,basic,9,,-3.336671985884955,-55.00000000000002,388.0,385.0,,Ha! Good one.,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.done,0,0,1,5-12,1
20090109393214576,538,4762790,person_click,basic,9,,-3.334783011332746,-55.00000000000002,388.0,385.0,,Thanks for the help!,worker,tunic.drycleaner.frontdesk,tunic.drycleaner.frontdesk.worker.done,0,0,1,5-12,1
20090109393214576,539,4763657,navigate_click,undefined,9,,-3.3344735163342487,-55.00000000000002,388.0,385.0,,,,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,540,4765034,notebook_click,open,9,2.0,-383.4140714375699,-288.0,51.0,618.0,,,,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,541,4767882,notebook_click,close,9,2.0,381.0813672504129,285.0,822.0,45.0,,,,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,542,4769507,navigate_click,undefined,9,,303.94223406181254,-146.0,745.0,476.0,,,,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,543,4770190,navigate_click,undefined,9,,335.7190873980827,-146.0,745.0,476.0,,,,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,544,4771074,navigate_click,undefined,9,,488.2021310454371,-82.99999999999999,848.0,413.0,,,toentry,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,545,4773507,map_hover,basic,9,,,,,,116.0,,tunic.capitol_1,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,546,4774008,map_click,undefined,9,,-15.144627840405505,46.0,310.0,284.0,,,tunic.library,tunic.drycleaner.frontdesk,,0,0,1,5-12,1
20090109393214576,547,4778323,navigate_click,undefined,9,,-401.0381736421591,79.09040596340179,431.0,269.0,,,worker,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,548,4781506,person_click,basic,9,,-155.39377629735887,79.4383954509745,431.0,269.0,,"Oh, hello there!",worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,549,4783057,person_click,basic,9,,-91.40630856214027,52.075779398854934,477.0,290.0,,You look like you're on a mission.,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,550,4784273,person_click,basic,9,,-91.18056435567513,52.075836297376384,477.0,290.0,,"Two missions, actually!",worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,551,4785992,person_click,basic,9,,-91.15845659671331,52.075841869607075,477.0,290.0,,Have you seen a badger around here?,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,552,4786639,person_click,basic,9,,-91.15353008872565,52.07584311132674,477.0,290.0,,I'm afraid not.,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,553,4788006,person_click,basic,9,,-91.15319743180773,52.075843195172475,477.0,290.0,,Please let me know if you do.,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,554,4794640,person_click,basic,9,,-91.15316760786,52.07584320268956,477.0,290.0,,I'm also looking for Theodora Youmans. Have you heard of her?,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,555,4795791,person_click,basic,9,,-91.15316760771769,52.07584320268959,477.0,290.0,,Theodora Youmans? Of course!,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,556,4797906,person_click,basic,9,,-91.15316760769836,52.07584320268959,477.0,290.0,,Check out our microfiche. It's right through that door.,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.hello,0,0,1,5-12,1
20090109393214576,557,4798407,navigate_click,undefined,9,,-91.15316760769836,52.07584320268959,477.0,290.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,558,4801039,notebook_click,open,9,2.0,-562.1576865905171,-381.8332477064012,54.0,623.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,559,4803957,notebook_click,close,9,2.0,413.5159086677614,316.5909947178411,802.0,87.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,560,4804793,navigate_click,undefined,9,,460.42863343246086,70.31826744511386,838.0,276.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,561,4805839,navigate_click,undefined,9,,573.4074245346528,23.40917653602293,824.0,312.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,562,4807373,navigate_click,undefined,9,,597.5886148330003,190.19705532390168,668.0,184.0,,,tomicrofiche,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,563,4814573,navigate_click,undefined,9,,-21.0,65.99999999999999,419.0,264.0,,,reader,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,564,4823523,object_click,basic,9,,37.83720362697231,-126.0,485.0,456.0,,,reader,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,565,4824306,object_click,basic,9,,39.83720316632004,-160.0,487.0,490.0,,,reader,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,566,4825472,object_click,basic,9,,29.837203038851708,-236.0,477.0,566.0,,,reader.paper0.next,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,567,4831992,object_click,basic,9,,29.837203021703104,-236.0,477.0,566.0,,,reader.paper1.next,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,568,4834872,object_hover,undefined,9,,,,,,10283.0,,reader.paper0.next,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,569,4836472,object_click,basic,9,,-262.16279697829737,-104.0,185.0,434.0,,,reader.paper2.bingo,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,570,4840373,notification_click,basic,9,,-121.16279697829731,-109.99999999999996,326.0,440.0,,Youmans was a suffragist!,,tunic.library.microfiche,tunic.library.microfiche.reader.paper2.bingo,0,0,1,5-12,1
20090109393214576,571,4842662,notification_click,basic,9,,-130.16279697829737,-99.0,317.0,429.0,,She helped get votes for women!,,tunic.library.microfiche,tunic.library.microfiche.reader.paper2.bingo,0,0,1,5-12,1
20090109393214576,572,4843539,object_hover,undefined,9,,,,,,7650.0,,reader.paper2.bingo,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,573,4844822,object_click,close,9,,367.83720302170263,267.0,815.0,63.0,,,reader,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,574,4846670,notebook_click,open,10,2.0,-415.16279697829737,-283.0,32.0,613.0,,,,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,575,4850222,notebook_click,close,10,2.0,393.83720302170263,241.0,841.0,89.0,,,,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,576,4852372,navigate_click,undefined,10,,12.837203021702633,-282.0,460.0,612.0,,,tofrontdesk,tunic.library.microfiche,,0,0,1,5-12,1
20090109393214576,577,4855789,navigate_click,undefined,10,,58.002637689386866,-114.71203558518916,236.0,418.0,,,wellsbadge,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,578,4861722,notification_click,basic,10,,-233.22945777321087,-58.55757533209135,269.0,372.0,,Wells! What was he doing here? I should ask the librarian.,,tunic.library.frontdesk,tunic.library.frontdesk.wellsbadge.hub,0,0,1,5-12,1
20090109393214576,579,4862073,object_hover,basic,10,,,,,,6067.0,,wellsbadge,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,580,4863652,object_click,close,10,,522.4875825930179,338.86657347964484,849.0,67.0,,,wellsbadge,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,581,4864882,navigate_click,undefined,10,,-410.4848429564015,143.41202172371237,133.0,217.0,,,worker,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,582,4867405,person_click,basic,10,,-521.921551962658,138.0636822104077,146.0,224.0,,What was Wells doing here?,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,583,4870472,person_click,basic,10,,-375.20788139407097,71.62116372318475,259.0,275.0,,He was looking for a taxidermist.,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,584,4871472,person_click,basic,10,,-375.2128261513116,71.62127619603685,259.0,275.0,,What's a taxidermist?,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,585,4872872,person_click,basic,10,,-375.21373497648864,71.62129686806476,259.0,275.0,,"Not sure. Here, let me look it up.",worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,586,4874189,person_click,basic,10,,-375.2137701802265,71.62129766880473,259.0,275.0,,Oh my!,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,587,4878206,person_click,basic,10,,-327.0016524539203,63.80311592991084,296.0,281.0,,"\Taxidermy: the art of preparing, stuffing, and mounting the skins of animals.\",worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,588,4879812,person_click,basic,10,,-327.0016524557841,63.80311592995322,296.0,281.0,,Oh no... Teddy!,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,589,4880272,person_click,basic,10,,-327.00165245613096,63.803115929961116,296.0,281.0,,Can you help me find Wells?,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,590,4881755,person_click,basic,10,,-327.00165245617933,63.80311592996222,296.0,281.0,,You could ask the archivist. He knows everybody!,worker,tunic.library.frontdesk,tunic.library.frontdesk.worker.wells,0,0,1,5-12,1
20090109393214576,591,4883819,notebook_click,open,11,3.0,-634.5168039713337,-355.77264164579526,60.0,603.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,592,4885992,notebook_click,close,11,3.0,344.0589536044239,345.25766138450774,811.0,65.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,593,4886022,navigate_click,undefined,11,,-429.94104639557617,-122.53021740337105,217.0,424.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,594,4886738,navigate_click,undefined,11,,-691.0017725153798,-169.33957923231597,64.0,458.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,595,4888256,navigate_click,undefined,11,,-898.5971054720779,79.40555858631558,22.0,265.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,596,4889872,navigate_click,undefined,11,,-901.4009749493463,107.65703850153723,58.0,247.0,,,,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,597,4891472,navigate_click,undefined,11,,-874.7484674706989,128.9305077646289,81.0,231.0,,,toentry,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,598,4892288,map_hover,basic,11,,,,,,67.0,,tunic.kohlcenter,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,599,4892355,map_hover,basic,11,,,,,,51.0,,tunic.library,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,600,4893389,map_hover,basic,11,,,,,,551.0,,tunic.capitol_1,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,601,4894812,map_hover,basic,11,,,,,,583.0,,tunic.humanecology,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,602,4894354,map_hover,basic,11,,,,,,117.0,,tunic.kohlcenter,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,603,4895572,map_hover,basic,11,,,,,,1068.0,,tunic.capitol_1,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,604,4896539,map_click,undefined,11,,-242.7261444790028,211.04553787600403,562.0,168.0,,,tunic.historicalsociety,tunic.library.frontdesk,,0,0,1,5-12,1
20090109393214576,605,4897605,navigate_click,undefined,11,,185.74345690266097,-124.40605748268558,273.0,404.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,606,4898754,navigate_click,undefined,11,,-118.21828551805989,-134.22180225485286,155.0,403.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,607,4899738,navigate_click,undefined,11,,76.76780218513942,107.10606490212992,393.0,253.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,608,4901387,navigate_click,undefined,11,,25.000000000000032,47.56545511481711,465.0,265.0,,,tofrontdesk,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,609,4903738,navigate_click,undefined,11,,-30.21122692360406,57.0,391.0,273.0,,,archivist,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,610,4905621,person_click,basic,11,,-15.802418221712804,-43.99999999999999,393.0,374.0,,Can you help me? I need to find Wells!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,611,4907038,person_click,basic,11,,-15.38258675838117,-43.99999999999999,393.0,374.0,,"Calm down, kid. I haven't seen him.",archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,612,4908037,person_click,basic,11,,-15.35398213809592,-43.99999999999999,393.0,374.0,,Please? This is really important.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,613,4908937,person_click,basic,11,,-15.349559066947755,-43.99999999999999,393.0,374.0,,"Sorry, can't help you.",archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,614,4909821,person_click,basic,11,,-15.348711503437354,-43.99999999999999,393.0,374.0,,Okay. Thanks anyway.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,615,4912321,person_click,basic,11,,-15.348503089464225,-43.99999999999999,393.0,374.0,,Do you have any info on Theodora Youmans?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,616,4915632,person_click,basic,11,,-15.348500918354011,-43.99999999999999,393.0,374.0,,Theodora Youmans? Is that who owned the shirt?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,617,4916071,person_click,basic,11,,-15.348500907964857,-43.99999999999999,393.0,374.0,,Yep.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,618,5364672,person_click,basic,11,,128.65149909434106,30.00000000000001,537.0,300.0,,Why didn't you say so?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,619,5366409,person_click,basic,11,,128.65149909434106,30.00000000000001,537.0,300.0,,Youmans was a suffragist here in Wisconsin.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,620,5368258,person_click,basic,11,,128.65149909434106,30.00000000000001,537.0,300.0,,She led marches and helped women get the right to vote!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,621,5369876,person_click,basic,11,,128.65149909434106,30.00000000000001,537.0,300.0,,Wait a sec. Women couldn't vote?!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,622,5371842,person_click,basic,11,,128.65149909434106,30.00000000000001,537.0,300.0,,Nope. But Youmans and other suffragists worked hard to change that.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,623,5388724,person_click,basic,11,,59.6514990943411,-46.0,468.0,376.0,,"Thanks to them, Wisconsin was the first state to approve votes for women!",archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,624,5389641,person_click,basic,11,,59.6514990943411,-46.0,468.0,376.0,,Wow!,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,625,5392241,person_click,basic,11,,59.6514990943411,-46.0,468.0,376.0,,Here's a call number to find more info in the Stacks.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,626,5394982,person_click,basic,11,,-102.34850090565894,20.99999999999999,306.0,309.0,,Where are the Stacks?,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,627,5402375,person_click,basic,11,,104.65149909434109,-119.0,513.0,449.0,,Right outside the door.,archivist,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.archivist.newspaper,0,0,1,5-12,1
20090109393214576,628,5405342,navigate_click,undefined,11,,4.651499094341048,-317.0,413.0,647.0,,,tostacks,tunic.historicalsociety.frontdesk,,0,0,1,5-12,1
20090109393214576,629,5407786,notebook_click,open,11,3.0,-374.5180343396251,-269.2444197415549,46.0,601.0,,,,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,630,5410425,notebook_click,close,11,3.0,386.4819656603749,268.7555802584451,807.0,63.0,,,,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,631,5411358,navigate_click,undefined,11,,-356.5180343396251,30.75558025844507,64.0,301.0,,,,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,632,5412290,navigate_click,undefined,11,,-404.4629431526056,-0.2444197415549411,66.0,332.0,,,,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,633,5412924,navigate_click,undefined,11,,-429.1594358128621,-58.41698283173513,74.0,389.0,,,,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,634,5413724,navigate_click,undefined,11,,-269.74641119892215,-207.0406694300452,245.0,534.0,,,,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,635,5414374,navigate_click,undefined,11,,-21.601785019668625,-258.1373934623516,493.0,579.0,,,block,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,636,5415007,navigate_click,undefined,11,,132.3079379813903,-267.20045368856034,623.0,583.0,,,block,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,637,5416641,observation_click,basic,11,,349.3305261661693,99.2837849708516,790.0,214.0,,The archivist said I should look in the stacks.,block,tunic.historicalsociety.stacks,tunic.historicalsociety.stacks.block,0,0,1,5-12,1
20090109393214576,638,5417807,navigate_click,undefined,11,,351.79189892235917,99.16527542613146,790.0,214.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,639,5419591,object_hover,basic,11,,,,,,817.0,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,640,5422640,object_hover,undefined,11,,,,,,200.0,,journals.hub.topics,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,641,5423058,object_hover,undefined,11,,,,,,51.0,,journals.hub.topics,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,642,5423358,object_click,basic,11,,281.7194382897008,-15.246448510945893,646.0,347.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,643,5423674,object_hover,undefined,11,,,,,,17.0,,journals.hub.topics,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,644,5424307,object_click,basic,11,,-153.27554528735303,-0.2447771966872545,211.0,332.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,645,5424858,object_click,basic,11,,-118.27486505885885,-16.244550565959777,246.0,348.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,646,5425674,object_click,basic,11,,-47.27456066692178,-15.244449152145602,317.0,347.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,647,5426407,object_click,basic,11,,26.72550449870008,-12.244427441011178,391.0,344.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,648,5429791,object_click,basic,11,,211.72552756080105,-8.244419757444854,576.0,340.0,,,journals.hub.topics,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,649,5430690,object_hover,undefined,11,,,,,,1416.0,,journals.hub.topics,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,650,5432891,object_click,basic,11,,425.7255276083293,-87.24441974160999,790.0,419.0,,,journals.pic_0.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,651,5434224,object_click,basic,11,,425.72552760848,-87.24441974155977,790.0,419.0,,,journals.pic_1.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,652,5438007,object_click,basic,11,,425.72552760849436,-87.24441974155495,790.0,419.0,,,journals.pic_2.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,653,5442074,object_click,basic,11,,425.72552760849436,-87.24441974155495,790.0,419.0,,,journals.pic_0.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,654,5443373,object_click,basic,11,,425.72552760849436,-87.24441974155495,790.0,419.0,,,journals.pic_1.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,655,5444057,object_hover,undefined,11,,,,,,12149.0,,journals.pic_0.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,656,5444540,object_click,basic,11,,-20.274472391505736,-102.24441974155495,344.0,434.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,657,5445823,object_click,basic,11,,430.72552760849436,-77.24441974155495,795.0,409.0,,,journals.pic_2.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,658,5446307,object_click,basic,11,,430.72552760849436,-77.24441974155495,795.0,409.0,,,journals.pic_0.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,659,5447507,object_hover,undefined,11,,,,,,2217.0,,journals.pic_2.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,660,5448340,object_click,basic,11,,95.72552760849425,-14.244419741554966,460.0,346.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,661,5448891,object_click,basic,11,,36.72552760849426,-16.2444197415549,401.0,348.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,662,5450024,object_click,basic,11,,20.725527608494247,-108.2444197415549,385.0,440.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,663,5454357,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_1.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,664,5455006,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_2.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,665,5455523,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_0.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,666,5456256,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_1.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,667,5456573,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_2.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,668,5456740,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_0.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,669,5456857,object_click,basic,11,,422.72552760849436,-79.2444197415549,787.0,411.0,,,journals.pic_1.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,670,5457832,object_hover,undefined,11,,,,,,5967.0,,journals.pic_1.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,671,5460541,object_click,basic,11,,-49.274472391505746,-91.2444197415549,315.0,423.0,,,journals.pic_2.bingo,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,672,5462673,notification_click,basic,11,,-32.27447239150577,-145.24441974155496,332.0,477.0,,"Hey, this is Youmans!",,tunic.historicalsociety.stacks,tunic.historicalsociety.stacks.journals.pic_2.bingo,0,0,1,5-12,1
20090109393214576,673,5464473,notification_click,basic,11,,-30.274472391505785,-131.24441974155494,334.0,463.0,,And look! She's wearing the shirt!,,tunic.historicalsociety.stacks,tunic.historicalsociety.stacks.journals.pic_2.bingo,0,0,1,5-12,1
20090109393214576,674,5465407,notification_click,basic,11,,-30.274472391505785,-131.24441974155494,334.0,463.0,,I should go to the Capitol and tell everyone!,,tunic.historicalsociety.stacks,tunic.historicalsociety.stacks.journals.pic_2.bingo,0,0,1,5-12,1
20090109393214576,675,5466390,object_hover,undefined,11,,,,,,5850.0,,journals.pic_2.bingo,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,676,5466906,object_click,basic,11,,-9.274472391505784,-113.2444197415549,355.0,445.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,677,5467440,object_hover,undefined,11,,,,,,34.0,,journals.pic_2.next,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,678,5468491,object_click,close,11,,431.72552760849436,279.7555802584451,796.0,52.0,,,journals,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,679,5470839,navigate_click,undefined,12,,-4.274472391505725,-303.2444197415548,360.0,635.0,,,toentry,tunic.historicalsociety.stacks,,0,0,1,5-12,1
20090109393214576,680,5488923,navigate_click,undefined,12,,783.7449512418707,-88.34475125009811,815.0,379.0,,,,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,681,5492756,navigate_click,undefined,12,,927.0350373688416,24.913507851859546,737.0,307.0,,,tomap,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,682,5494772,map_click,undefined,12,,478.45551389183873,31.566016078021523,453.0,310.0,,,tunic.capitol_1,tunic.historicalsociety.entry,,0,0,1,5-12,1
20090109393214576,683,5497256,navigate_click,undefined,12,,265.0994120043103,-5.723216241032282,431.0,301.0,,,chap2_finale_c,tunic.capitol_1.hall,,0,0,1,5-12,1
20090109393214576,684,5499227,checkpoint,basic,12,,,,,,,,chap2_finale_c,tunic.capitol_1.hall,,0,0,1,5-12,1
20090109393214576,728,5746601,navigate_click,undefined,13,,394.69900396169805,-49.95391090379427,720.0,343.0,,,,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,729,5747612,navigate_click,undefined,13,,416.23541214809626,-212.12889204393585,712.0,453.0,,,,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,730,5747901,navigate_click,undefined,13,,602.1478465167543,-292.736754248634,765.0,499.0,,,,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,731,5749352,navigate_click,undefined,13,,682.0665197993612,-313.52064537330466,725.0,501.0,,,,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,732,5750518,navigate_click,undefined,13,,765.1647750456951,-76.78948608790657,759.0,342.0,,,toentry,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,733,5752202,map_hover,basic,13,,,,,,383.0,,tunic.capitol_1,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,734,5753552,map_hover,basic,13,,,,,,1067.0,,tunic.humanecology,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,735,5756318,map_hover,basic,13,,,,,,2617.0,,tunic.capitol_1,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,736,5756719,map_hover,basic,13,,,,,,250.0,,tunic.humanecology,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,737,5758272,map_click,undefined,13,,429.2160441483155,179.680301091716,539.0,190.0,,,tunic.historicalsociety,tunic.capitol_1.hall,,0,0,1,13-22,2
20090109393214576,738,5759701,navigate_click,undefined,13,,858.2576387208425,285.94157888095043,686.0,152.0,,,tomap,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,739,5761552,map_click,undefined,13,,656.3405478117514,230.4847466945404,562.0,188.0,,,tunic.historicalsociety,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,740,5764951,navigate_click,undefined,13,,706.8198205390242,344.59035166942016,593.0,118.0,,,tobasement,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,741,5767718,cutscene_click,basic,13,,0.7255753269970739,-76.29681055274789,549.0,385.0,,Jo!,ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,742,5769035,cutscene_click,basic,13,,95.68091992580472,-132.91647652320495,618.0,426.0,,Check out the next artifact!,ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,743,5771468,cutscene_click,basic,13,,177.30831246363994,-133.81552770804856,527.0,419.0,,What is it?,ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,744,5773592,cutscene_click,basic,13,,297.2747879478066,-260.8329952847601,584.0,510.0,,"I think it's a flag! Pretty spiffy, eh?",ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,745,5775002,cutscene_click,basic,13,,299.23067833263474,-260.8411536641091,584.0,510.0,,"It's really cool, Gramps. But I'm worried about Teddy.",ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,746,5775918,cutscene_click,basic,13,,299.2849160128478,-260.8413798994715,584.0,510.0,,He's still missing!,ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,747,5776817,cutscene_click,basic,13,,299.29500019418305,-260.84142196245085,584.0,510.0,,"We'll find him, Jo.",ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,748,5777484,cutscene_click,basic,13,,299.29669929325354,-260.84142904970645,584.0,510.0,,Want to look for more clues?,ch3start,tunic.historicalsociety.basement,tunic.historicalsociety.basement.ch3start,0,0,1,13-22,2
20090109393214576,749,5778201,navigate_click,undefined,13,,299.297225936757,-260.8414312464334,584.0,510.0,,,,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,750,5779068,navigate_click,undefined,13,,-186.16519623337243,-82.19637550052954,235.0,376.0,,,seescratches,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,751,5781751,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,"Hey, look at those scratches!",seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,752,5782917,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,The kidnapper probably took Teddy on the elevator!,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,753,5784418,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,"Great Scott, you're right!",seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,754,5785701,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,Why isn't the button working?,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,755,5786551,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,We'll need a key card.,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,756,5787534,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,"I had one, but Teddy chewed it up.",seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,757,5788334,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,I've got Wells's ID!,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,758,5789185,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,What should we do next?,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,759,5791651,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,I need to take the artifact upstairs. Why don't you investigate those scratch marks?,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,760,5792451,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,Okay. I'll try.,seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,761,5793068,cutscene_click,basic,13,,-158.89422162027432,-99.14944918212312,357.0,388.0,,"Teddy, here I come!",seescratches,tunic.historicalsociety.basement,tunic.historicalsociety.basement.seescratches,0,0,1,13-22,2
20090109393214576,762,5794957,notebook_click,open,14,4.0,-621.4794341445971,-409.9848561679818,67.0,611.0,,,,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,763,5797233,notebook_click,basic,14,4.0,-81.26159984778988,17.954991594583188,456.0,304.0,,,,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,764,5798300,notebook_click,close,14,4.0,437.25831271464114,341.3489367139012,828.0,72.0,,,,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,765,5799718,navigate_click,undefined,14,,-191.41228488669373,1.2277254738299987,377.0,316.0,,,tocage,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,766,5804634,navigate_click,undefined,14,,-1617.8091142905728,-46.27345641998788,330.0,359.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,767,5805816,navigate_click,undefined,14,,-1178.0856076784594,10.456527536177122,673.0,312.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,768,5806535,navigate_click,undefined,14,,-1077.562645263827,-131.04232327167082,703.0,437.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,769,5807534,navigate_click,undefined,14,,-854.0538082568004,-178.46815241271423,730.0,477.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,770,5808550,navigate_click,undefined,14,,-614.1542653474828,-241.01246573246726,757.0,529.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,771,5809717,navigate_click,undefined,14,,-641.4237711414654,-247.6561450628241,521.0,531.0,,,glasses,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,772,5811602,person_click,basic,14,,-636.0268487207413,-204.40592886778148,595.0,495.0,,I wonder whose glasses these are.,glasses,tunic.historicalsociety.cage,tunic.historicalsociety.cage.glasses.beforeteddy,0,0,1,13-22,2
20090109393214576,773,5812772,navigate_click,undefined,14,,-647.328946840022,-204.2048353487272,595.0,495.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,774,5812901,navigate_click,undefined,14,,-570.6811132439119,-204.8403502736351,595.0,495.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,775,5813968,navigate_click,undefined,14,,-446.25718309627183,-199.40200230353688,615.0,490.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,776,5815384,navigate_click,undefined,14,,-182.4820734195796,-6.134243338791496,728.0,320.0,,,lockeddoor,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,777,5817284,observation_click,basic,14,,37.76701486239222,-145.98925665349918,671.0,450.0,,It's locked!,lockeddoor,tunic.historicalsociety.cage,tunic.historicalsociety.cage.lockeddoor,0,0,1,13-22,2
20090109393214576,778,5818250,navigate_click,undefined,14,,54.235869595755,-145.71352940108406,671.0,450.0,,,teddy,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,779,5818433,navigate_click,undefined,14,,55.167621924192716,-146.14174873752725,671.0,450.0,,,teddy,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,780,5819216,person_click,basic,14,,56.949297310364635,-147.23342597463355,671.0,450.0,,Teddy!!!,teddy,tunic.historicalsociety.cage,tunic.historicalsociety.cage.teddy.trapped,0,0,1,13-22,2
20090109393214576,781,5821351,person_click,basic,14,,20.04275574237812,-162.3240226499091,638.0,463.0,,\u00f0\u0178\u02dc\u00ad,teddy,tunic.historicalsociety.cage,tunic.historicalsociety.cage.teddy.trapped,0,0,1,13-22,2
20090109393214576,782,5822617,person_click,basic,14,,20.05297196720116,-162.33028238733098,638.0,463.0,,Hang on. I'll get you out of there!,teddy,tunic.historicalsociety.cage,tunic.historicalsociety.cage.teddy.trapped,0,0,1,13-22,2
20090109393214576,783,5824667,navigate_click,undefined,15,,-652.9927666945446,-253.12985034774516,45.0,543.0,,,glasses,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,784,5827566,person_click,basic,15,,-723.2191962259865,-184.84090278350155,513.0,478.0,,Whoever lost these glasses probably took Teddy!,glasses,tunic.historicalsociety.cage,tunic.historicalsociety.cage.glasses.afterteddy,0,0,1,13-22,2
20090109393214576,785,5828432,person_click,basic,15,,-738.4746362081578,-184.8673834118209,513.0,478.0,,How can I find out whose glasses these are?,glasses,tunic.historicalsociety.cage,tunic.historicalsociety.cage.glasses.afterteddy,0,0,1,13-22,2
20090109393214576,786,5829467,person_click,basic,15,,-741.8168755888446,-184.873184922554,513.0,478.0,,Oh! There was a staff directory in the entryway!,glasses,tunic.historicalsociety.cage,tunic.historicalsociety.cage.glasses.afterteddy,0,0,1,13-22,2
20090109393214576,787,5830468,person_click,basic,15,,-742.3169037116749,-184.8740528790918,513.0,478.0,,I'll go look at everyone's pictures!,glasses,tunic.historicalsociety.cage,tunic.historicalsociety.cage.glasses.afterteddy,0,0,1,13-22,2
20090109393214576,788,5832477,notebook_click,open,15,4.0,-1265.6388151967233,-335.82738280765585,52.0,611.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,789,5836366,notebook_click,close,15,4.0,-362.19233176025256,265.71531248640804,848.0,81.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,790,5837017,navigate_click,undefined,15,,-733.332828986811,-157.63454977490375,521.0,454.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,791,5837900,navigate_click,undefined,15,,-1015.6387352136453,-164.66704622684878,247.0,462.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,792,5838550,navigate_click,undefined,15,,-1260.0341990016184,-148.75823204610796,105.0,448.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,793,5839416,navigate_click,undefined,15,,-1586.3814666460894,-161.37243463676538,11.0,460.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,794,5841466,navigate_click,undefined,15,,-1883.2739184888128,-75.83856166418472,12.0,384.0,,,tobasement,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,795,5847667,navigate_click,undefined,15,,-622.4286025140756,-23.08512710299946,72.0,334.0,,,toentry,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,796,5849700,navigate_click,undefined,15,,-63.84037860627348,-90.18249823282079,185.0,385.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,797,5850517,navigate_click,undefined,15,,111.12852646986263,-157.49937984283787,340.0,421.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,798,5851650,navigate_click,undefined,15,,-393.29426000365515,167.1030696270714,133.0,215.0,,,directory,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,799,5855950,object_click,basic,15,,-252.70017404721185,-409.35380633182336,408.0,581.0,,,directory.closeup.archivist,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,800,5857499,notification_click,basic,15,,-253.0685269037756,-409.3424792821984,408.0,581.0,,Those are the same glasses!,,tunic.historicalsociety.entry,tunic.historicalsociety.entry.directory.closeup.archivist,0,0,1,13-22,2
20090109393214576,801,5858416,notification_click,basic,15,,-243.31706610893391,-384.9164490551478,414.0,566.0,,The archivist must've taken Teddy!,,tunic.historicalsociety.entry,tunic.historicalsociety.entry.directory.closeup.archivist,0,0,1,13-22,2
20090109393214576,802,5859762,object_click,basic,15,,-243.32025032250363,-384.9163511388578,414.0,566.0,,,directory.closeup.archivist,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,803,5860317,notification_click,basic,15,,-298.68560927556143,-401.1999568959673,380.0,576.0,,Those are the same glasses!,,tunic.historicalsociety.entry,tunic.historicalsociety.entry.directory.closeup.archivist,0,0,1,13-22,2
20090109393214576,804,5860799,notification_click,basic,15,,-298.68568782376593,-401.1999544805676,380.0,576.0,,The archivist must've taken Teddy!,,tunic.historicalsociety.entry,tunic.historicalsociety.entry.directory.closeup.archivist,0,0,1,13-22,2
20090109393214576,805,5861762,object_hover,undefined,15,,,,,,5533.0,,directory.closeup.archivist,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,806,5861650,object_click,close,15,,409.65245034582534,417.8669559525589,815.0,73.0,,,directory,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,807,5862250,navigate_click,undefined,15,,-69.08646654331375,-130.89158926218656,521.0,410.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,808,5862899,navigate_click,undefined,15,,83.30455646235364,52.793622740561396,578.0,291.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,809,5865000,navigate_click,undefined,15,,32.00000000000001,52.56545511481711,472.0,260.0,,,tofrontdesk,tunic.historicalsociety.stacks,,0,0,1,13-22,2
20090109393214576,810,5867383,navigate_click,undefined,15,,26.788773076395877,8.000000000000012,448.0,322.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,811,5869752,navigate_click,undefined,15,,-38.74680976815144,-29.999999999999968,390.0,360.0,,,key,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,812,5870533,observation_click,basic,15,,-34.19746224855773,-29.999999999999968,390.0,360.0,,Yes! It's the key for Teddy's cage!,key,tunic.historicalsociety.frontdesk,tunic.historicalsociety.frontdesk.key,0,0,1,13-22,2
20090109393214576,813,5871832,navigate_click,undefined,16,,-33.81841096360019,-29.999999999999968,390.0,360.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,814,5872566,navigate_click,undefined,16,,-54.118348349135466,-29.999999999999968,390.0,360.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,815,5873799,navigate_click,undefined,16,,-110.07663084317886,-12.999999999999973,350.0,343.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,816,5874565,navigate_click,undefined,16,,9.546740660905067,4.999999999999996,487.0,325.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,817,5875422,navigate_click,undefined,16,,-20.293647508192226,-122.0,438.0,452.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,818,5875716,navigate_click,undefined,16,,-24.229946757047838,-182.0,427.0,512.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,819,5876399,navigate_click,undefined,16,,-4.2518945717569725,-247.00000000000003,446.0,577.0,,,,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,820,5876984,navigate_click,undefined,16,,4.136979989832389,-311.0,449.0,641.0,,,tostacks,tunic.historicalsociety.frontdesk,,0,0,1,13-22,2
20090109393214576,821,5878912,navigate_click,undefined,16,,13.481965660374884,-306.2444197415548,434.0,638.0,,,toentry,tunic.historicalsociety.stacks,,0,0,1,13-22,2
20090109393214576,822,5881382,navigate_click,undefined,16,,616.0234966964163,144.51124874990168,712.0,236.0,,,tobasement,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,823,5885383,navigate_click,undefined,16,,53.701113747632675,-227.59766639613548,565.0,484.0,,,,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,824,5901582,navigate_click,undefined,16,,-225.17444112936386,-83.51983982549527,265.0,376.0,,,tocage,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,825,5905066,navigate_click,undefined,16,,-1301.1479572657795,-140.47731316929918,609.0,442.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,826,5905915,navigate_click,undefined,16,,-1180.0405169965256,-165.0553208786842,684.0,464.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,827,5906615,navigate_click,undefined,16,,-1002.1469499499284,-200.42662534188275,761.0,494.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,828,5909348,navigate_click,undefined,16,,-670.5989768863121,-205.85968319018139,774.0,496.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,829,5910465,navigate_click,undefined,16,,-402.81095726963827,-206.2613219178041,822.0,496.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,830,5911367,navigate_click,undefined,16,,-136.49494952723876,-201.79376861836533,836.0,492.0,,,unlockdoor,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,831,5911948,navigate_click,undefined,16,,-13.694919267309553,-69.0284665281021,788.0,379.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,832,5913242,navigate_click,undefined,16,,-147.95625365685538,-12.213708128250325,512.0,332.0,,,unlockdoor,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,833,5913848,cutscene_click,basic,16,,-59.42242563777139,-12.42989198882129,512.0,332.0,,I found the key!,unlockdoor,tunic.historicalsociety.cage,tunic.historicalsociety.cage.unlockdoor,0,0,1,13-22,2
20090109393214576,834,5914565,cutscene_click,basic,16,,-38.475700103229855,-12.484937249021135,512.0,332.0,,\u00e2\u009d\u00a4\u00ef\u00b8\u008f,unlockdoor,tunic.historicalsociety.cage,tunic.historicalsociety.cage.unlockdoor,0,0,1,13-22,2
20090109393214576,835,5915215,cutscene_click,basic,16,,-33.09318682780946,-12.499081791244985,512.0,332.0,,"Come on, let's get out of here!",unlockdoor,tunic.historicalsociety.cage,tunic.historicalsociety.cage.unlockdoor,0,0,1,13-22,2
20090109393214576,836,5915948,cutscene_click,basic,16,,-31.35062576977694,-12.503661014221644,512.0,332.0,,Here's your scarf back!,unlockdoor,tunic.historicalsociety.cage,tunic.historicalsociety.cage.unlockdoor,0,0,1,13-22,2
20090109393214576,837,5916615,navigate_click,undefined,16,,-95.86039614014057,-11.95904968114263,512.0,332.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,838,5918043,notebook_click,open,16,4.0,-637.2754381337734,-318.19434589451686,57.0,602.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,839,5919349,notebook_click,basic,16,4.0,-46.73218345265485,-109.34067806036964,579.0,418.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,840,5920198,notebook_click,basic,16,4.0,207.36445155354286,249.3161533717184,803.0,102.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,841,5920715,notebook_click,close,16,4.0,216.4213469752176,273.1510582027865,811.0,81.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,842,5921832,navigate_click,undefined,16,,-103.65756206482216,-95.71935722927005,529.0,406.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,843,5922649,navigate_click,undefined,16,,-83.22924012433384,-179.7083258743519,547.0,480.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,844,5923499,navigate_click,undefined,16,,-104.79430543281052,-194.74632992449105,528.0,489.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,845,5924532,navigate_click,undefined,16,,-168.35360853761696,-200.5495564582654,472.0,492.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,846,5925242,navigate_click,undefined,16,,-355.626344371663,-221.5278040108194,307.0,510.0,,,confrontation,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,847,5926912,cutscene_click,basic,16,,-682.1139622865054,-209.01496984787,316.0,504.0,,undefined,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,848,5929848,cutscene_click,basic,16,,-972.6632406477313,-141.90454007908718,186.0,446.0,,Hey!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,849,5930698,cutscene_click,basic,16,,-973.6159148324092,-141.8960045241843,186.0,446.0,,What are you doing down here?,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,850,5931364,cutscene_click,basic,16,,-973.7959113715054,-141.89439183186354,186.0,446.0,,GRRRRRRR,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,851,5933382,cutscene_click,basic,16,,-973.8695916142184,-141.89373168827296,186.0,446.0,,GAH! And what is THAT doing out of its cage?!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,852,5934350,cutscene_click,basic,16,,-973.871163302289,-141.89371760661732,186.0,446.0,,I'm here to rescue my friend!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,853,5935281,cutscene_click,basic,16,,-1165.654542679271,-133.5272785605867,186.0,446.0,,What's going on here?,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,854,5936515,cutscene_click,basic,16,,-1203.75388454807,-131.86521679864106,186.0,446.0,,"Thanks for coming, Boss.",confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,855,5937247,cutscene_click,basic,16,,-1207.0528065420328,-131.7213032339215,186.0,446.0,,I told you!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,856,5938214,cutscene_click,basic,16,,-1208.0227639871182,-131.6789894011592,186.0,446.0,,I captured a badger in our museum!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,857,5939348,cutscene_click,basic,16,,-1208.1975095355338,-131.67136622763846,186.0,446.0,,He's been eating my lunch every day this week!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,858,5939998,cutscene_click,basic,16,,-1208.215026611496,-131.6706020553271,186.0,446.0,,What?!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,859,5940648,cutscene_click,basic,16,,-1208.2203668327345,-131.670369091263,186.0,446.0,,\u00f0\u0178\u02dc\u0090,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,860,5941481,cutscene_click,basic,16,,-1208.2221981087987,-131.67028920290343,186.0,446.0,,Teddy! Did you really eat his lunch?,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,861,5942732,cutscene_click,basic,16,,-1208.2225577920367,-131.67027351193013,186.0,446.0,,\u00f0\u0178\u02dc\u0090,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,862,5943047,cutscene_click,basic,16,,-1208.2226796587684,-131.6702681955644,186.0,446.0,,Did you steal Gramps's paperwork too?!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,863,5943747,cutscene_click,basic,16,,-1208.22270070181,-131.67026727757388,186.0,446.0,,\u00f0\u0178\u02dc\u0090,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,864,5944499,cutscene_click,basic,16,,-1208.2227067538354,-131.67026701355778,186.0,446.0,,And my homework?!?!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,865,5945402,cutscene_click,basic,16,,-1208.2227081463388,-131.67026695281058,186.0,446.0,,\u00f0\u0178\u02dc\u0090,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,866,5945681,cutscene_click,basic,16,,-1208.2227085768275,-131.67026693403076,186.0,446.0,,See?!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,867,5946381,cutscene_click,basic,16,,-1208.2227087478466,-131.6702669265702,186.0,446.0,,That thing's a monster!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,868,5947282,cutscene_click,basic,16,,-1208.2227088010454,-131.6702669242494,186.0,446.0,,I don't have time for this.,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,869,5950062,cutscene_click,basic,16,,-1208.2227088133775,-131.67026692371144,186.0,446.0,,"Jolie- keep your badger under control, or he'll have to go.",confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,870,5949780,cutscene_click,basic,16,,-1208.2227088136408,-131.67026692369996,186.0,446.0,,YEAH!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,871,5950447,cutscene_click,basic,16,,-1208.2227088137338,-131.67026692369592,186.0,446.0,,"And you, Frank-",confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,872,5951242,cutscene_click,basic,16,,-1208.222708813761,-131.67026692369473,186.0,446.0,,YEAH!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,873,5951814,cutscene_click,basic,16,,-1208.2227088137695,-131.6702669236943,186.0,446.0,,Wait- me?,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,874,5955348,cutscene_click,basic,16,,-1119.6937831939363,-79.46090053250961,264.0,400.0,,You can't just steal Jolie's pet. Don't you know badgers are protected animals?,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,875,5957297,cutscene_click,basic,16,,-1119.6937831939363,-79.46090053250961,264.0,400.0,,"Besides, he looks friendly to me.",confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,876,5958402,cutscene_click,basic,16,,-1119.6937831939363,-79.46090053250961,264.0,400.0,,Wha?!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,877,5958931,cutscene_click,basic,16,,-1119.6937831939363,-79.46090053250961,264.0,400.0,,Ugh. Fine.,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,878,5959847,cutscene_click,basic,16,,-1119.6937831939363,-79.46090053250961,264.0,400.0,,\u00f0\u0178\u02dc\u009d,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,879,5960798,cutscene_click,basic,16,,-1119.6937831939363,-79.46090053250961,264.0,400.0,,"Alright, Jolie. Back to work.",confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,880,5964030,cutscene_click,basic,16,,-991.4403396677657,-30.656492819010957,377.0,357.0,,Your grampa is waiting for you in the collection room.,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,881,5964748,cutscene_click,basic,16,,-694.5382220505263,-38.035412539471366,377.0,357.0,,"Come on, Teddy.",confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,882,5965465,cutscene_click,basic,16,,-610.9741010335906,-40.11223484523119,377.0,357.0,,Let's go help Gramps!,confrontation,tunic.historicalsociety.cage,tunic.historicalsociety.cage.confrontation,0,0,1,13-22,2
20090109393214576,883,5967025,notebook_click,open,17,4.0,-1300.5872671679988,-324.57991762386405,61.0,607.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,884,5968780,notebook_click,close,17,4.0,-453.64202412731163,317.77744275148103,826.0,41.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,885,5969580,navigate_click,undefined,17,,-911.6812403815048,-49.959440144010685,423.0,365.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,886,5970280,navigate_click,undefined,17,,-1262.9999444292334,-132.26322964173718,150.0,438.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,887,5971232,navigate_click,undefined,17,,-1516.396536541084,-172.7150684630605,43.0,472.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,888,5971782,navigate_click,undefined,17,,-1674.30742891255,-175.38792402416527,43.0,472.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,889,5972281,navigate_click,undefined,17,,-1776.936664349733,-176.25318372624542,43.0,472.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,890,5972430,navigate_click,undefined,17,,-1803.7169125418802,-176.40751049798553,43.0,472.0,,,,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,891,5973732,navigate_click,undefined,17,,-1911.1508671672248,-150.67342335200138,27.0,449.0,,,tobasement,tunic.historicalsociety.cage,,0,0,1,13-22,2
20090109393214576,892,5974780,cutscene_click,basic,17,,188.84412475865173,-3.5699755878479245,654.0,320.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,893,5977581,cutscene_click,basic,17,,135.8744277889547,319.8239638060915,616.0,88.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,894,5980664,cutscene_click,basic,17,,-92.73163281710579,142.79366077578845,452.0,215.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,895,5986616,cutscene_click,basic,17,,-85.7619358474089,-46.78209679996916,457.0,351.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,896,5991598,cutscene_click,basic,17,,-128.97405705953008,-219.630581648454,426.0,475.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,897,5992964,cutscene_click,basic,17,,410.4804883950154,-459.3881574060298,813.0,647.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,898,5994864,cutscene_click,basic,17,,-308.7922388777119,-230.78209679996917,297.0,483.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,899,5995865,cutscene_click,basic,17,,383.99563991016686,-449.630581648454,794.0,640.0,,undefined,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,900,6007363,cutscene_click,basic,17,,-487.21648130195433,-35.63058164845393,169.0,343.0,,Gramps must be up in the collection room.,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,901,6008047,cutscene_click,basic,17,,-537.3982994837727,-60.7214907393631,133.0,361.0,,Let's go find him!,savedteddy,tunic.historicalsociety.basement,tunic.historicalsociety.basement.savedteddy,0,0,1,13-22,2
20090109393214576,902,6009763,navigate_click,undefined,17,,-576.4286025140756,-3.5699755878479245,105.0,320.0,,,toentry,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,903,6012581,navigate_click,undefined,17,,182.0425304846356,-3.8792255055480873,336.0,332.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,904,6013547,navigate_click,undefined,17,,-41.31195961540215,-122.65648384896113,262.0,402.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,905,6015062,navigate_click,undefined,17,,142.3319347312546,195.67980400306286,452.0,202.0,,,tostacks,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,906,6017392,navigate_click,undefined,17,,-8.000000000000004,-314.4345448851828,432.0,627.0,,,toentry,tunic.historicalsociety.stacks,,0,0,1,13-22,2
20090109393214576,907,6018663,navigate_click,undefined,17,,-103.71323057631048,-207.21529670464352,270.0,452.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,908,6019497,navigate_click,undefined,17,,-446.0776216620182,-222.22593967317184,116.0,453.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,909,6020280,navigate_click,undefined,17,,-710.2786517226689,-204.14155773845653,52.0,438.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,910,6022892,navigate_click,undefined,17,,-1008.4562311166216,-57.3713542488284,59.0,348.0,,,tocollectionflag,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,911,6024762,navigate_click,undefined,17,,-23.73838663536921,-52.699201248877756,308.0,361.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,912,6027730,navigate_click,undefined,17,,-254.21867795849946,-92.45171593057621,264.0,392.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,913,6028797,navigate_click,undefined,17,,-181.5189041530066,13.547655941070044,356.0,317.0,,,gramps,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,914,6031030,person_click,basic,17,,23.812000299263143,-23.07135105953027,439.0,344.0,,Teddy! I'm sure glad to see you.,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,915,6031696,person_click,basic,17,,27.27826191520264,-23.03964935722121,439.0,344.0,,The archivist had him locked up!,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,916,6033079,person_click,basic,17,,28.617501872744928,-23.02740094923632,439.0,344.0,,Gadzooks! Poor critter.,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,917,6034330,person_click,basic,17,,28.721827882221238,-23.02644680541742,439.0,344.0,,"You're becoming quite the detective, Jo.",gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,918,6035330,person_click,basic,17,,28.73175393625625,-23.02635602380744,439.0,344.0,,Notice any clues about this flag?,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,919,6036379,person_click,basic,17,,28.733376821780762,-23.02634118123655,439.0,344.0,,Well... it looks hand-stitched.,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,920,6037314,person_click,basic,17,,28.73360526647246,-23.026339091929263,439.0,344.0,,"Aha! Good catch, Jo.",gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,921,6038497,person_click,basic,17,,28.7336501395578,-23.02633868152943,439.0,344.0,,"Go on, tell the boss what you found!",gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.flag,0,0,1,13-22,2
20090109393214576,922,6040457,notebook_click,open,18,5.0,-512.4784654105123,-411.66270226610914,63.0,614.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,923,6042279,notebook_click,close,18,5.0,536.8397165724093,365.61002500812486,792.0,74.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,924,6042929,navigate_click,undefined,18,,89.18820142485296,-96.43542953729352,481.0,395.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,925,6043997,navigate_click,undefined,18,,-48.13233163101772,-126.20484857580195,386.0,414.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,926,6044679,navigate_click,undefined,18,,-143.60033565702938,-16.884344995034304,338.0,337.0,,,gramps,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,927,6045529,person_click,basic,18,,-144.26506367105958,86.73089752701424,326.0,267.0,,Why don't you go talk to the boss?,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.recap,0,0,1,13-22,2
20090109393214576,928,6046396,person_click,basic,18,,-136.04087491923772,87.5862035486084,326.0,267.0,,She's right outside.,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.recap,0,0,1,13-22,2
20090109393214576,929,6046930,navigate_click,undefined,18,,-134.6948581525111,87.7261877197515,326.0,267.0,,,gramps,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,930,6048513,person_click,basic,18,,237.4027507652997,-24.470207264866385,584.0,345.0,,Why don't you go talk to the boss?,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.recap,0,0,1,13-22,2
20090109393214576,931,6049246,person_click,basic,18,,264.7829980619884,-31.663873704332005,603.0,350.0,,She's right outside.,gramps,tunic.historicalsociety.collection_flag,tunic.historicalsociety.collection_flag.gramps.recap,0,0,1,13-22,2
20090109393214576,932,6049963,navigate_click,undefined,18,,345.39737382167795,-43.17816045322108,659.0,358.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,933,6050612,navigate_click,undefined,18,,546.6090161563864,-50.19347560297425,778.0,363.0,,,,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,934,6051696,navigate_click,undefined,18,,660.7934449274512,-57.679812455224116,805.0,368.0,,,toentry,tunic.historicalsociety.collection_flag,,0,0,1,13-22,2
20090109393214576,935,6053064,navigate_click,undefined,18,,100.22210337112257,7.780746028884647,801.0,317.0,,,groupconvo_flag,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,936,6058596,cutscene_click,basic,18,,150.6965110110877,59.32843160138064,407.0,297.0,,"I'm telling you, Boss. Taxidermy is the way to go!",groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,937,6060662,cutscene_click,basic,18,,294.43537656000336,22.52486022464429,494.0,320.0,,"Nonsense. I want live animals at the exhibit, not stuffed ones.",groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,938,6061562,cutscene_click,basic,18,,294.47453511056733,22.537126257145523,494.0,320.0,,"Ah, Jolie! I'm glad you're here.",groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,939,6062596,cutscene_click,basic,18,,294.48248584453245,22.53961674670196,494.0,320.0,,I'm putting you in charge of the flag case.,groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,940,6064232,cutscene_click,basic,18,,294.48381187350424,22.540032112292124,494.0,320.0,,"Make sure to get some old photos for the exhibit, like last time!",groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,941,6065232,cutscene_click,basic,18,,294.4838885778878,22.540056139189172,494.0,320.0,,Wait! Can't I do it?,groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,942,6066080,cutscene_click,basic,18,,294.48390083936465,22.54005997997668,494.0,320.0,,The symbol on the flag looks sort of like a deer hoof.,groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,943,6074062,cutscene_click,basic,18,,118.62063052568912,58.36406073601234,386.0,298.0,,It could be an early design for the Wisconsin state flag!,groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,944,6075779,cutscene_click,basic,18,,118.62063054774887,58.36406074292234,386.0,298.0,,"Wells, you already have a job to do.",groupconvo_flag,tunic.historicalsociety.entry,tunic.historicalsociety.entry.groupconvo_flag,0,0,1,13-22,2
20090109393214576,945,6076929,navigate_click,undefined,18,,132.2228780971688,52.61501107052253,367.0,290.0,,,wells,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,946,6078279,person_click,basic,18,,46.02567215262332,59.17097870745246,367.0,290.0,,"What now, kid?",wells,tunic.historicalsociety.entry,tunic.historicalsociety.entry.wells.flag,0,0,1,13-22,2
20090109393214576,947,6079962,person_click,basic,18,,56.69755119737577,-70.32121004160608,382.0,370.0,,Do you really think that symbol is a deer hoof?,wells,tunic.historicalsociety.entry,tunic.historicalsociety.entry.wells.flag,0,0,1,13-22,2
20090109393214576,948,6081562,person_click,basic,18,,56.06820124047122,-70.28565977026676,382.0,370.0,,Not sure. Do I look like a deer expert to you?,wells,tunic.historicalsociety.entry,tunic.historicalsociety.entry.wells.flag,0,0,1,13-22,2
20090109393214576,949,6083012,navigate_click,undefined,18,,339.3701986086698,63.24203804629349,556.0,288.0,,,boss,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,950,6084695,person_click,basic,18,,355.35681505026224,-31.45106309607632,569.0,344.0,,Do you know where I can find a deer expert?,boss,tunic.historicalsociety.entry,tunic.historicalsociety.entry.boss.flag,0,0,1,13-22,2
20090109393214576,951,6086712,person_click,basic,18,,355.1020706181373,-31.631268126153522,569.0,344.0,,Hmm. You could try the Aldo Leopold Wildlife Center.,boss,tunic.historicalsociety.entry,tunic.historicalsociety.entry.boss.flag,0,0,1,13-22,2
20090109393214576,952,6089496,person_click,basic,18,,355.0955569545903,-31.635875861543866,569.0,344.0,,Ugh. I have to head over there and check out the animals.,boss,tunic.historicalsociety.entry,tunic.historicalsociety.entry.boss.flag,0,0,1,13-22,2
20090109393214576,953,6090395,person_click,basic,18,,355.0955242775856,-31.635898977105516,569.0,344.0,,Can I ride with you?,boss,tunic.historicalsociety.entry,tunic.historicalsociety.entry.boss.flag,0,0,1,13-22,2
20090109393214576,954,6092695,person_click,basic,18,,355.09551657687825,-31.635904424550123,569.0,344.0,,FINE. That possum better not scratch my leather seats...,boss,tunic.historicalsociety.entry,tunic.historicalsociety.entry.boss.flag,0,0,1,13-22,2
20090109393214576,955,6095696,person_click,basic,18,,355.09551646053006,-31.635904506854327,569.0,344.0,,"Don't worry, he won't! (And he's a badger, by the way.)",boss,tunic.historicalsociety.entry,tunic.historicalsociety.entry.boss.flag,0,0,1,13-22,2
20090109393214576,956,6098004,notebook_click,open,18,5.0,-512.8223017217662,-494.0911772344653,36.0,628.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,957,6099445,notebook_click,close,18,5.0,755.672971005499,372.19827731098394,815.0,96.0,,,,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,958,6101712,navigate_click,undefined,18,,700.3086073691353,-25.122449961743392,781.0,340.0,,,tobasement,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,959,6104561,navigate_click,undefined,18,,-608.4200983735794,129.25081845234934,90.0,228.0,,,toentry,tunic.historicalsociety.basement,,0,0,1,13-22,2
20090109393214576,960,6107678,navigate_click,undefined,18,,947.373439575544,44.97168358536099,806.0,302.0,,,tomap,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,961,6109795,map_hover,basic,18,,,,,,467.0,,tunic.drycleaner,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,962,6109995,map_hover,basic,18,,,,,,50.0,,tunic.humanecology,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,963,6110528,map_hover,basic,18,,,,,,350.0,,tunic.kohlcenter,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,964,6110928,map_hover,basic,18,,,,,,332.0,,tunic.library,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,965,6111295,map_hover,basic,18,,,,,,249.0,,tunic.capitol_2,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,966,6112382,map_click,undefined,18,,1003.1206584337732,-355.60577096009337,775.0,548.0,,,tunic.wildlife,tunic.historicalsociety.entry,,0,0,1,13-22,2
20090109393214576,967,6128495,navigate_click,undefined,18,,-475.26814315586495,-757.9650156237675,48.0,540.0,,,coffee,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,968,6132011,observation_click,basic,18,,-754.6578642715492,-576.1264366903133,99.0,420.0,,People sure drink a lot of coffee around here.,coffee,tunic.wildlife.center,tunic.wildlife.center.coffee,0,0,1,13-22,2
20090109393214576,969,6133228,navigate_click,undefined,18,,-843.8096223106091,-496.5923999042751,32.0,359.0,,,wells,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,970,6135552,person_click,basic,18,,-773.4178918811232,-472.1557931346137,227.0,391.0,,Gah. I can't believe this.,wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,971,6136702,person_click,basic,18,,-785.2585171146844,-469.2083643529782,227.0,391.0,,"I'm a historian, not a zookeeper!",wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,972,6137328,person_click,basic,18,,-787.1950721547047,-468.7263072023136,227.0,391.0,,"And this place is dirty, and itchy, and-",wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,973,6138229,person_click,basic,18,,-787.3981851905572,-468.6757472702163,227.0,391.0,,I love it!,wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,974,6139894,person_click,basic,18,,-787.4444666221466,-468.6642266603811,227.0,391.0,,Of course you do. You've got a rodent following you around.,wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,975,6140612,person_click,basic,18,,-787.4461536734343,-468.663806710976,227.0,391.0,,"Actually, badgers aren't rodents-",wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,976,6141412,person_click,basic,18,,-787.4466327657669,-468.66368745287076,227.0,391.0,,Whatever.,wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals,0,0,1,13-22,2
20090109393214576,977,6143811,navigate_click,undefined,18,,-838.2649573716451,-445.20910645488425,188.0,373.0,,,wells,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,978,6146877,person_click,basic,18,,-838.2649591105138,-445.2091060220362,188.0,373.0,,Ugh... I think that lynx is looking at me funny.,wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals2,0,0,1,13-22,2
20090109393214576,979,6147727,navigate_click,undefined,18,,-838.2649591156204,-445.209106020765,188.0,373.0,,,wells,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,980,6148678,person_click,basic,18,,-939.90132275307,-602.8757726871614,110.0,494.0,,Ugh... I think that lynx is looking at me funny.,wells,tunic.wildlife.center,tunic.wildlife.center.wells.animals2,0,0,1,13-22,2
20090109393214576,981,6149637,notebook_click,open,18,5.0,-1019.3861712381098,-778.7848635962047,49.0,629.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,982,6151577,notebook_click,close,18,5.0,-1.7195045714829007,-66.0272878386196,830.0,82.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,983,6152279,navigate_click,undefined,18,,-392.62859548057406,-748.8151666264986,530.0,606.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,984,6152911,navigate_click,undefined,18,,-249.23682996548197,-758.9302047593442,596.0,584.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,985,6153294,navigate_click,undefined,18,,-176.0886684621044,-782.0478101866437,596.0,584.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,986,6154045,navigate_click,undefined,18,,32.961645946917656,-792.8821489248247,633.0,576.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,987,6154844,navigate_click,undefined,18,,262.49884167421317,-740.4546784908407,689.0,530.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,988,6155444,navigate_click,undefined,18,,389.1890165814394,-657.0031179249322,689.0,471.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,989,6156245,navigate_click,undefined,18,,638.4560455149424,-561.5609685741307,745.0,416.0,,,crane_ranger,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,990,6157712,person_click,basic,18,,678.6337760591764,-588.4994677398199,672.0,471.0,,Oh no! What happened to that crane?,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,991,6159294,person_click,basic,18,,689.9660577433417,-584.6075770423387,672.0,471.0,,Her beak is stuck in a coffee cup.,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,992,6160210,person_click,basic,18,,690.5059713731978,-584.4221523509973,672.0,471.0,,It's lucky we found her.,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,993,6161494,person_click,basic,18,,690.6184516766814,-584.3835227917452,672.0,471.0,,Ugh! Those cups are all over the place.,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,994,6163211,person_click,basic,18,,690.629853441807,-584.3796070380723,672.0,471.0,,I need to get her free. She won't hold still!,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,995,6164722,person_click,basic,18,,690.6302767663402,-584.3794616540392,672.0,471.0,,Can Teddy and I help?,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,996,6165202,person_click,basic,18,,690.6303541720233,-584.3794350702968,672.0,471.0,,Sure! Give it a try.,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,997,6166312,person_click,basic,18,,690.6303689355617,-584.3794299999959,672.0,471.0,,Careful. That beak is sharp!,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,998,6167712,person_click,basic,18,,690.6303705885863,-584.3794294322912,672.0,471.0,,"We need to calm her down, Teddy.",crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,999,6168527,person_click,basic,18,,690.6303706961105,-584.3794293953638,672.0,471.0,,Any ideas?,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1000,6169760,person_click,basic,18,,690.6303707240196,-584.3794293857787,672.0,471.0,,\u00f0\u0178\u00a7\u02dc,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1001,6170810,person_click,basic,18,,690.6303707268128,-584.3794293848194,672.0,471.0,,Yoga does sound nice.,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1002,6171877,person_click,basic,18,,690.6303707272248,-584.379429384678,672.0,471.0,,"But cranes can't do yoga, Teddy!",crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1003,6173382,person_click,basic,18,,690.6303707272859,-584.3794293846571,672.0,471.0,,\u00f0\u0178\u008d\u00a9,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1004,6174077,person_click,basic,18,,690.6303707272922,-584.3794293846554,672.0,471.0,,Cranes don't eat donuts!,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1005,6175493,person_click,basic,18,,690.6303707272922,-584.3794293846554,672.0,471.0,,"Besides, you just ate my last snack.",crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1006,6182845,person_click,basic,18,,437.8424919394136,-644.3188233240494,478.0,517.0,,\u00f0\u0178\u00a6\u2014,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1007,6183793,person_click,basic,18,,437.8424919394136,-644.3188233240494,478.0,517.0,,"Oh yeah, cranes eat insects!",crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1008,6185010,person_click,basic,18,,437.8424919394136,-644.3188233240494,478.0,517.0,,Luckily there are tons of insects around here...,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1009,6185744,person_click,basic,18,,437.8424919394136,-644.3188233240494,478.0,517.0,,Got one!,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1010,6186827,person_click,basic,18,,437.8424919394136,-644.3188233240494,478.0,517.0,,Maybe she'll let me take off the cup!,crane_ranger,tunic.wildlife.center,tunic.wildlife.center.crane_ranger.crane,0,0,1,13-22,2
20090109393214576,1011,6188510,navigate_click,undefined,18,,605.9334010303227,-467.1067021119282,607.0,381.0,,,remove_cup,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1012,6191611,observation_click,basic,18,,528.9716654246963,-461.5582901531829,607.0,381.0,,"It's OK, girl! Look, I found you a cricket!",remove_cup,tunic.wildlife.center,tunic.wildlife.center.remove_cup,0,0,1,13-22,2
20090109393214576,1013,6194027,navigate_click,undefined,18,,641.9769415568064,-406.8110949230382,694.0,339.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1014,6195560,navigate_click,undefined,18,,763.6905792137135,-377.092944847752,672.0,378.0,,,expert,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1015,6196676,person_click,basic,18,,754.7550070677937,-416.0591356145693,672.0,378.0,,"You did it! Thanks, kid.",expert,tunic.wildlife.center,tunic.wildlife.center.expert.removed_cup,0,0,1,13-22,2
20090109393214576,1016,6197460,person_click,basic,18,,753.1569430919391,-422.2762935613579,672.0,378.0,,Can I help you with anything?,expert,tunic.wildlife.center,tunic.wildlife.center.expert.removed_cup,0,0,1,13-22,2
20090109393214576,1017,6198545,person_click,basic,18,,752.7245256847021,-423.958583732686,672.0,378.0,,I'm investigating this symbol.,expert,tunic.wildlife.center,tunic.wildlife.center.expert.removed_cup,0,0,1,13-22,2
20090109393214576,1018,6199393,person_click,basic,18,,752.669900507688,-424.171099225494,672.0,378.0,,Does it look like a deer hoof?,expert,tunic.wildlife.center,tunic.wildlife.center.expert.removed_cup,0,0,1,13-22,2
20090109393214576,1019,6201376,person_click,basic,18,,752.6556369545012,-424.22659059779517,672.0,378.0,,There's a diagram of animal tracks over there.,expert,tunic.wildlife.center,tunic.wildlife.center.expert.removed_cup,0,0,1,13-22,2
20090109393214576,1020,6202862,person_click,basic,18,,752.6553396351172,-424.22774729840296,672.0,378.0,,Go take a look!,expert,tunic.wildlife.center,tunic.wildlife.center.expert.removed_cup,0,0,1,13-22,2
20090109393214576,1021,6205522,navigate_click,undefined,18,,691.412822452274,-426.83416948276846,625.0,380.0,,,expert,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1022,6206192,person_click,basic,18,,691.4128221205217,-426.8341707734279,625.0,380.0,,"Thanks for your help, kid!",expert,tunic.wildlife.center,tunic.wildlife.center.expert.recap,0,0,1,13-22,2
20090109393214576,1023,6207210,navigate_click,undefined,18,,691.4128220607538,-426.83417100595045,625.0,380.0,,,expert,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1024,6208010,person_click,basic,18,,691.4128220541322,-426.83417103171035,625.0,380.0,,"Thanks for your help, kid!",expert,tunic.wildlife.center,tunic.wildlife.center.expert.recap,0,0,1,13-22,2
20090109393214576,1025,6209322,notebook_click,open,18,5.0,-53.92051128101286,-734.349322553911,53.0,616.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1026,6212995,notebook_click,close,18,5.0,945.5037311430448,-21.59174679705637,820.0,69.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1027,6213826,navigate_click,undefined,18,,292.6855493248632,-610.5614437667532,319.0,521.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1028,6214709,navigate_click,undefined,18,,244.71198255125228,-719.5968626566394,367.0,572.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1029,6215643,navigate_click,undefined,18,,537.9517671283329,-690.3729899040262,680.0,515.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1030,6216193,navigate_click,undefined,18,,745.2251352213582,-648.4770481311415,810.0,481.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1031,6216860,navigate_click,undefined,18,,892.2871017633786,-590.1434653969502,825.0,444.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1032,6217443,navigate_click,undefined,18,,1003.3811572683333,-531.0158649265273,820.0,413.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1033,6218692,navigate_click,undefined,18,,1145.0551810711486,-533.1704428793953,852.0,437.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1034,6222577,object_hover,undefined,18,,,,,,3116.0,,tracks.hub.deer,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1035,6229395,object_click,basic,18,,899.4589783022274,-435.43457610825163,612.0,371.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1036,6230202,object_click,close,18,,1166.5801904857774,-51.04063670438313,817.0,76.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1037,6231460,navigate_click,undefined,18,,1162.6710995988,-447.1618488220729,814.0,380.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1038,6232852,object_hover,undefined,18,,,,,,67.0,,tracks.hub.deer,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1039,6232610,object_click,close,18,,1179.6104935398776,-26.283060943017073,827.0,57.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1040,6233876,navigate_click,undefined,18,,1174.398372327968,-447.1618488217714,823.0,380.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1041,6234359,object_hover,undefined,18,,,,,,17.0,,tracks.hub.deer,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1042,6235010,object_click,basic,18,,586.7317056613207,-382.0103336702533,372.0,330.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1043,6239593,object_hover,undefined,18,,,,,,216.0,,tracks.hub.deer,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1044,6240826,object_hover,undefined,18,,,,,,33.0,,tracks.hub.deer,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1045,6242022,object_click,close,18,,1160.0650389946554,-23.677000336919946,812.0,55.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1046,6246626,navigate_click,undefined,18,,956.792311721928,-568.3436670035867,656.0,473.0,,,,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1047,6248842,navigate_click,undefined,18,,1198.025057096232,-433.33260748901137,870.0,356.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1048,6249761,object_hover,basic,18,,,,,,501.0,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1049,6250809,object_click,basic,18,,357.22010211977533,-254.84682107195263,197.0,232.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2
20090109393214576,1050,6251526,object_click,basic,18,,221.4834346613464,-578.9118834282721,92.0,481.0,,,tracks,tunic.wildlife.center,,0,0,1,13-22,2