-
Notifications
You must be signed in to change notification settings - Fork 237
Expand file tree
/
Copy pathquery_set.json
More file actions
3824 lines (3824 loc) · 147 KB
/
query_set.json
File metadata and controls
3824 lines (3824 loc) · 147 KB
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
{
"0": {
"question": "Did Adam Smith send a message to Li Hua about the upcoming building maintenance schedule before the administrators announced a temporary change in the construction schedule due to weather conditions?",
"answer": "Yes",
"evidence": "20260121_10:00<and>20260701_10:00",
"type": "Multi"
},
"1": {
"question": "Did Wolfgang ask Li Hua about watching \"Star Wars: A New Hope\" after he asked Li Hua about going to see \"Overwatch 3\"?",
"answer": "Yes",
"evidence": "20260121_13:00<and>20261009_17:00",
"type": "Multi"
},
"2": {
"question": "Did Li Hua agree to go out for dinner after Wolfgang first asked him if he wanted to go out for dinner?",
"answer": "Yes",
"evidence": "20260123_17:00<and>20260930_16:00",
"type": "Multi"
},
"3": {
"question": "Did Li Hua send a message to Jennifer thanking her for the new training schedule before he requested a change in his training schedule for Thursday?",
"answer": "Yes",
"evidence": "20260204_15:00<and>20260204_16:00<and>20260211_19:00",
"type": "Multi"
},
"4": {
"question": "Did Li Hua ask Jennifer for advice on how to prevent muscle soreness after an intense workout session before he told her that he feels soreness in his arm muscles after the workout this week?",
"answer": "Yes",
"evidence": "20260206_16:00<and>20260811_11:00<and>20261008_14:00<and>20261211_11:00",
"type": "Multi"
},
"5": {
"question": "Did Li Hua send a message to Jennifer asking for her opinion on protein supplements before he consulted her about his daily protein powder consumption?",
"answer": "Yes",
"evidence": "20260214_16:00<and>20261120_20:00",
"type": "Multi"
},
"6": {
"question": "Did Yuriko ask Li Hua for help with her studio's homepage before she booked a seat at the \"Central Perk\" cafe?",
"answer": "Yes",
"evidence": "20260223_15:00<and>20260225_15:00",
"type": "Multi"
},
"7": {
"question": "Did Li Hua discuss his progress with the fitness plan before he shared a blog post about his recent fitness achievements?",
"answer": "Yes",
"evidence": "20260305_17:00<and>20260325_19:00<and>20260610_16:00<and>20260630_18:00<and>20260708_14:00<and>20260817_12:15<and>20261022_22:00<and>20261202_14:00",
"type": "Multi"
},
"8": {
"question": "Did Li Hua send a message to Jennifer asking if he can turn the Thursday class to Friday after he requested a change in his training schedule for Thursday?",
"answer": "Yes",
"evidence": "20260211_19:00<and>20260309_12:00",
"type": "Multi"
},
"9": {
"question": "Did Li Hua ask Yuriko to play music together before Wolfgang proposed to pause playing musical instruments?",
"answer": "Yes",
"evidence": "20260318_15:10<and>20260416_21:00",
"type": "Multi"
},
"10": {
"question": "Did Wolfgang Schulz recommend the band learns \"Viva la Vida\" by Coldplay after he and Li Hua discussed what song to play this Sunday?",
"answer": "Yes",
"evidence": "20260318_15:30<and>20260625_19:00",
"type": "Multi"
},
"11": {
"question": "Did Wolfgang's promotion announcement occur before he invited Li Hua for dinner on 20260430?",
"answer": "Yes",
"evidence": "20260428_18:30<and>20260930_16:00",
"type": "Multi"
},
"12": {
"question": "Did Turalyon announce the construction updates and feedback from residents after Illidan Stormrage complained about the construction noise?",
"answer": "Yes",
"evidence": "20260526_15:40<and>20260527_10:00<and>20260528_15:00",
"type": "Multi"
},
"13": {
"question": "Did Hailey announce the new line of high-protein breads before inviting Li Hua to the special bakery event?",
"answer": "Yes",
"evidence": "20260611_12:45<and>20260622_13:30",
"type": "Multi"
},
"14": {
"question": "Did Chae tell Li Hua that taking a warm shower before sleeping can improve the sleep quality before sharing the neuroscience article with her?",
"answer": "No",
"evidence": "20260711_11:00<and>20260926_10:30",
"type": "Multi"
},
"15": {
"question": "Did Li Hua ask Jennifer Moore for book recommendations on fitness nutrition before she announced the special guest speaker at the gym?",
"answer": "No",
"evidence": "20260713_19:30<and>20260817_12:15<and>20260831_19:00",
"type": "Multi"
},
"16": {
"question": "Did Jennifer remind Li Hua about proper nutrition and hydration before Jake shared his tips for staying hydrated during the match?",
"answer": "Yes",
"evidence": "20260804_14:00<and>20261001_18:00",
"type": "Multi"
},
"17": {
"question": "Did the group members talk about their favorite characters in the TV series Game of Thrones after Emily started a vote on the most hateable character?",
"answer": "Yes",
"evidence": "20260902_16:00<and>20260915_12:00",
"type": "Multi"
},
"18": {
"question": "Question: Did Jennifer remind Li Hua to consume enough protein after the workout before she shared tips with the group members on common mistakes to avoid after an intense workout?",
"answer": "Answer: Yes",
"evidence": "20260919_10:00<and>20261101_11:00",
"type": "Multi"
},
"19": {
"question": "Did Li Hua ask Thane about his opinion on The Last of Us before he asked about Sekiro: Shadows Die Twice?",
"answer": "No",
"evidence": "20261001_20:00<and>20261228_14:00",
"type": "Multi"
},
"20": {
"question": "Did Jake Watson and Li Hua discuss the classic matches between FC Barcelona and FC Bayern Munich before the group members discussed the classic matches between FC Barcelona and Real Madrid?",
"answer": "Yes",
"evidence": "20261005_10:05<and>20261026_16:00",
"type": "Multi"
},
"21": {
"question": "Did the group members debate about the best football manager in the Premier League history after they debated if Pep Guardiola is the greatest soccer manager in football history?",
"answer": "Yes",
"evidence": "20261006_10:00<and>20261110_10:00",
"type": "Multi"
},
"22": {
"question": "Did the discussion about Jaime Lannister's character occur after the discussion about Cersei Lannister's character?",
"answer": "Yes",
"evidence": "20261010_10:10<and>20261026_20:00",
"type": "Multi"
},
"23": {
"question": "Did Wolfgang ask Li Hua if she wants to have pizza for dinner after work today before he wondered if she wanted to have Sichuan hot pot for dinner tonight?",
"answer": "No",
"evidence": "20260930_16:00<and>20261015_15:00",
"type": "Multi"
},
"24": {
"question": "Did Jennifer challenge Li Hua to do 60 pull-ups in a training session after she challenged him to do 100 pushups?",
"answer": "Yes",
"evidence": "20261104_18:00<and>20261129_19:00",
"type": "Multi"
},
"25": {
"question": "Did Jake share common knowledge about offside in soccer with Li Hua before he passed practical techniques to Li Hua on how to avoid offside for a forward?",
"answer": "Yes",
"evidence": "20261105_15:00<and>20261130_11:30",
"type": "Multi"
},
"26": {
"question": "Did Wolfgang arrive in Hong Kong after he informed Li Hua about his upcoming trip?",
"answer": "Yes",
"evidence": "20261219_19:00<and>20261223_23:00",
"type": "Multi"
},
"27": {
"question": "What time does Li Hua watch the movie \"Overwatch 3\"?",
"answer": "20260122",
"evidence": "20260122_17:00<and>20260121_13:00",
"type": "Multi"
},
"28": {
"question": "Who does Li Hua go to watch the movie \"Overwatch 3\" with?",
"answer": "Wolfgang",
"evidence": "20260122_17:00<and>20260121_13:00",
"type": "Multi"
},
"29": {
"question": "Has Wolfgang ever been to Hong Kong?",
"answer": "Yes",
"evidence": "20261219_19:00<and>20261220_20:00<and>20261221_12:00<and>20261228_10:00",
"type": "Multi"
},
"30": {
"question": "Who knows about Wolfgang going to Hong Kong?",
"answer": "LiHua & Chae & Yuriko",
"evidence": "20261219_19:00<and>20261220_20:00<and>20261221_12:00<and>20261228_10:00",
"type": "Multi"
},
"31": {
"question": "Who wished Li Hua a happy Lunar New Year?",
"answer": "Adam Smith & Jennifer Moore & Wolfgang Schulz",
"evidence": "20260119_11:30<and>20260119_14:30<and>20260119_09:30",
"type": "Multi"
},
"32": {
"question": "Who introduced the bread delivery service and recommend Alice for the delivery?",
"answer": "HaileyJohnson",
"evidence": "20260318_15:00<and>20260329_13:00",
"type": "Multi"
},
"33": {
"question": "What is the opportunity that makes Wolfgang and Yuriko acquaitances?",
"answer": "LiHua introduce them to each other by saying that they can play music together every Sunday",
"evidence": "20260318_15:10<and>20260319_16:00",
"type": "Multi"
},
"34": {
"question": "What was the content of the first-ever delivery from Hailey to LiHua and what was LiHua's opinion about it?",
"answer": "a fresh sourdough loaf and a bottle of milk and LiHua praises Hailey's bread and milk",
"evidence": "20260317_08:00<and>20260318_15:00",
"type": "Multi"
},
"35": {
"question": "What opportunity did LiHua create for Chae to meet Wolfgang and Yuriko?",
"answer": "LiHua introduced Chae to Wolfgang and Yuriko during the band's gathering on Sunday evening",
"evidence": "20260425_21:00<and>20260425_23:30",
"type": "Multi"
},
"36": {
"question": "What special offerings did Hailey have for her backery shop in the month of May?",
"answer": "a special Mother's Day bakery promotion & a special summer promotion on ice cream & a free baking class at the end of May & banana durian cheesecake",
"evidence": "20260508_08:00<and>20260514_14:00<and>20260527_16:00<and>20260531_20:00",
"type": "Multi"
},
"37": {
"question": "What feedbacks does Hailey ask from LiHua in July?",
"answer": "feedback on the bread delivery service & customer feedback on a new line of artisanal donuts",
"evidence": "20260710_08:30<and>20260712_16:00",
"type": "Multi"
},
"38": {
"question": "How long does it take in total from LiHua planning on getting the air-conditioner to the air-conditioner been installed?",
"answer": "about 27 days",
"evidence": "20260716_10:00<and>20260812_11:00",
"type": "Multi"
},
"39": {
"question": "Did it take more than 3 weeks from LiHua planning on getting the air-conditioner to the air-conditioner been actually installed?",
"answer": "Yes",
"evidence": "20260716_10:00<and>20260812_11:00",
"type": "Multi"
},
"40": {
"question": "Did it take more than a week from Adam asking LiHua about the ideal installation date to Adam reminding LiHua about the contractor team installing air-conditioner at 18:00?",
"answer": "Yes",
"evidence": "20260803_13:00<and>20260812_11:00",
"type": "Multi"
},
"41": {
"question": "Who does LiHua want to invite to the photo exhibition and who goes with him (during August)?",
"answer": "Wolfgang",
"evidence": "20260801_19:00<and>20260805_16:00",
"type": "Multi"
},
"42": {
"question": "Is the time interval between LiHua asking JakeWatson to help him with dribbling skills and Li Hua asking the group about classic must-watch UCL matches more than 2 days (restrict your search within August)?",
"answer": "Yes",
"evidence": "20260819_10:00<and>20260821_15:00",
"type": "Multi"
},
"43": {
"question": "Is the time interval more than 3 days between LiHua asking Adam to help him install a curtain on the basement window and Adam asking LiHua to measure the size of the window?",
"answer": "Yes",
"evidence": "20260921_16:00<and>20260928_10:00",
"type": "Multi"
},
"44": {
"question": "Is the time interval more than 7 days between Adam asking LiHua to measure the size of the window and Adam informing Li Hua that he has booked the curtain of the right size?",
"answer": "Yes",
"evidence": "20260928_10:00<and>20261007_12:00",
"type": "Multi"
},
"45": {
"question": "Is the time interval more than 3 days between LiHua confirming that he has received the curtain and Adam asking LiHua if the curtain is all good?",
"answer": "Yes",
"evidence": "20261012_10:00<and>20261019_20:00",
"type": "Multi"
},
"46": {
"question": "Is the time interval more than 3 days between LiHua first asking Adam if he can buy a small fridge for the basement and Adam asking LiHua about the size of the fridge?",
"answer": "Yes",
"evidence": "20261110_11:00<and>20261116_16:00",
"type": "Multi"
},
"47": {
"question": "Is the time interval more than 7 days between Adam asking LiHua about the size of the fridge and Adam informing LiHua that the fridge will be delivered at 4pm next day?",
"answer": "Yes",
"evidence": "20261116_16:00<and>20261123_23:00",
"type": "Multi"
},
"48": {
"question": "Wolfgang suddenly becomes very concerned about good body shape and healthy food choices in December. What are the two conversations he had with LiHua in December that reflect this?",
"answer": "20261202_14:00 & 20261209_19:00",
"evidence": "20261202_14:00<and>20261209_19:00",
"type": "Multi"
},
"49": {
"question": "Did Li Hua agree to have dinner with Wolfgang after he told Wolfgang about the lunch arrangement?",
"answer": "Yes",
"evidence": "20260105_11:00<and>20260930_16:00",
"type": "Multi"
},
"50": {
"question": "Did Li Hua ask Wolfgang Schulz for a recommendation on a gym or fitness center before asking Jennifer Moore for book recommendations on fitness nutrition?",
"answer": "Yes",
"evidence": "20260111_08:00<and>20260831_19:00",
"type": "Multi"
},
"51": {
"question": "Did Li Hua ask Wolfgang Schulz if he wants to go to the gym together before Jennifer reminded Li Hua to participate in the gym's membership feedback activity?",
"answer": "Yes",
"evidence": "20260112_10:00<and>20260605_11:00",
"type": "Multi"
},
"52": {
"question": "Did Li Hua send a message to Wolfgang Schulz saying that he has prepared all the delicious food for tonight's Chinese Lunar New Year before Wolfgang sent a message to Li Hua wishing him a happy Lunar New Year?",
"answer": "Yes",
"evidence": "20260113_11:00<and>20260118_12:00<and>20260119_11:30<and>20260119_14:30<and>20260119_09:30",
"type": "Multi"
},
"53": {
"question": "Did Li Hua provide feedback to Jennifer Moore on his new meal plan before he asked her for advice on a healthy meal plan?",
"answer": "No",
"evidence": "20260115_16:45<and>20260122_15:00",
"type": "Multi"
},
"54": {
"question": "Did Li Hua's complaint about the customer who modifies their requirements occur before Wolfgang comforted him?",
"answer": "No",
"evidence": "20260123_17:30<and>20260131_14:00",
"type": "Multi"
},
"55": {
"question": "Did Adam Smith send Li Hua a reminder about the upcoming rent due date before Li Hua sent a message about having already transferred the rent on 20260301?",
"answer": "Yes",
"evidence": "20260127_20:30<and>20260227_18:30<and>20260301_10:00<and>20260330_18:00<and>20260331_17:00<and>20260429_17:00<and>20260429_18:00",
"type": "Multi"
},
"56": {
"question": "Did Li Hua share a blog post about his recent fitness achievements after Jennifer sent him a motivational message?",
"answer": "Yes",
"evidence": "20260520_18:00<and>20260606_09:00<and>20260817_12:15<and>20261022_22:00<and>20261202_14:00",
"type": "Multi"
},
"57": {
"question": "Did Li Hua send a follow-up message to Jennifer before she asked him about his latest sleeping schedule?",
"answer": "Yes",
"evidence": "20260205_13:00<and>20260725_10:00",
"type": "Multi"
},
"58": {
"question": "Did Li Hua ask Adam Smith about placing potted plants in the basement before he asked about decorating the basement?",
"answer": "No",
"evidence": "20260219_20:00<and>20261214_14:00",
"type": "Multi"
},
"59": {
"question": "Did Li Hua ask Wolfgang for advice on renovating the basement before he invited Adam Smith to check the progress of the basement renovation?",
"answer": "Yes",
"evidence": "20260219_20:10<and>20260223_17:00<and>20260707_16:00",
"type": "Multi"
},
"60": {
"question": "Did Li Hua tell Wolfgang about making a new friend before Yuriko reminded the group members to meet for the music festival?",
"answer": "Yes",
"evidence": "20260302_18:00<and>20260318_14:27<and>20261212_12:00",
"type": "Multi"
},
"61": {
"question": "Did Yuriko tell Li Hua about booking a seat at the \"Central Perk\" cafe before Li Hua sent her a message to confirm the details of their next meeting?",
"answer": "Yes",
"evidence": "20260225_15:00<and>20260303_09:30",
"type": "Multi"
},
"62": {
"question": "What time does Li Hua check in with Adam about moving in?",
"answer": "5:30 PM",
"evidence": "20260105_14:00",
"type": "Single"
},
"63": {
"question": "When was the first time Li Hua had dinner with Wolfgang this year?",
"answer": "20260108",
"evidence": "20260108_11:00",
"type": "Single"
},
"64": {
"question": "Where was the first time Li Hua had dinner with Wolfgang this year?",
"answer": "the cozy café downtown",
"evidence": "20260108_11:00",
"type": "Single"
},
"65": {
"question": "What time is Li Hua's lunch with Wolfgang Schulz at the cozy café downtown?",
"answer": "20260108",
"evidence": "20260108_11:00",
"type": "Single"
},
"66": {
"question": "What is the Wi-Fi password at Li Hua's house?",
"answer": "Family123",
"evidence": "20260106_09:00",
"type": "Single"
},
"67": {
"question": "What does Adam say about having friends over?",
"answer": "having friends over occasionally is fine",
"evidence": "20260106_09:00",
"type": "Single"
},
"68": {
"question": "What house rule does Adam mention?",
"answer": "keep noise to a minimum during late hours",
"evidence": "20260106_09:00",
"type": "Single"
},
"69": {
"question": "What does Li Hua report to Adam on January 6th?",
"answer": "the water tab in the apartment is broken",
"evidence": "20260106_13:00",
"type": "Single"
},
"70": {
"question": "When does Adam confirm the plumber will arrive?",
"answer": "tomorrow at 10 AM",
"evidence": "20260106_15:00",
"type": "Single"
},
"71": {
"question": "What does Li Hua ask Adam about the door hinge?",
"answer": "a small repair",
"evidence": "20260107_15:00",
"type": "Single"
},
"72": {
"question": "What is the name of the gym that Wolfgang recommended LiHua to go to?",
"answer": "FitZone",
"evidence": "20260111_08:00",
"type": "Single"
},
"73": {
"question": "When does Li Hua ask Jennifer Moore about adjusting the protein in her meal plan?",
"answer": "20260122",
"evidence": "20260122_15:00<and>20260122_15:00",
"type": "Multi"
},
"74": {
"question": "What time does Li Hua watch the movie \"Overwatch 3\"?",
"answer": "20260122",
"evidence": "20260122_17:00<and>20260121_13:00",
"type": "Multi"
},
"75": {
"question": "Who does Li Hua go to watch the movie \"Overwatch 3\" with?",
"answer": "Wolfgang",
"evidence": "20260122_17:00<and>20260121_13:00",
"type": "Multi"
},
"76": {
"question": "When does Li Hua plan to celebrate Chinese Lunar New Year?",
"answer": "20260118",
"evidence": "20260113_11:00",
"type": "Single"
},
"77": {
"question": "What does Li Hua plan to celebrate Chinese Lunar New Year?",
"answer": "dumplings",
"evidence": "20260113_11:00",
"type": "Single"
},
"78": {
"question": "Who does Li Hua plan to celebrate Chinese Lunar New Year with?",
"answer": "Wolfgang",
"evidence": "20260113_11:00",
"type": "Single"
},
"79": {
"question": "Li Hua accidentally broke a light fixture once. What did Adam say about the light fixture?",
"answer": "I'll arrange for a professional to take a look",
"evidence": "20260108_19:00",
"type": "Single"
},
"80": {
"question": "Li Hua has a difficult client. When did he solve that client's project?",
"answer": "20260209",
"evidence": "20260123_17:30<and>20260209_21:00",
"type": "Multi"
},
"81": {
"question": "When did Li Hua express frustration about a client changing requirements?",
"answer": "20260131_14:00",
"evidence": "20260131_14:00",
"type": "Single"
},
"82": {
"question": "Who suggested Li Hua keep a clear log of all the changes requested by the client?",
"answer": "Wolfgang Schulz",
"evidence": "20260131_14:00",
"type": "Single"
},
"83": {
"question": "What did Wolfgang Schulz suggest Li Hua to do when Li Hua face a difficult client?",
"answer": "keep a clear log of all the changes requested by the client",
"evidence": "20260131_14:00",
"type": "Single"
},
"84": {
"question": "What does Li Hua plan to do to clear their head?",
"answer": "go for a walk and find a new café",
"evidence": "20260131_14:00",
"type": "Single"
},
"85": {
"question": "What is the name of the café Wolfgang Schulz recommends to Li Hua?",
"answer": "The Java Spot",
"evidence": "20260131_14:00",
"type": "Single"
},
"86": {
"question": "Can Li Hua hang his artworks on the wall?",
"answer": "Yes",
"evidence": "20260201_20:00",
"type": "Single"
},
"87": {
"question": "What does Adam Smith suggest Li Hua use to hang artwork without damaging the walls?",
"answer": "use removable hooks",
"evidence": "20260201_20:00",
"type": "Single"
},
"88": {
"question": "How many times does Li Hua train per week now?",
"answer": "2",
"evidence": "20260204_15:00 ",
"type": "Single"
},
"89": {
"question": "When did Li Hua change the training plan?",
"answer": "20260204",
"evidence": "20260204_15:00",
"type": "Single"
},
"90": {
"question": "What days does Li Hua takes for the training sessions?",
"answer": "Tuesdays and Thursdays",
"evidence": "20260204_15:00",
"type": "Single"
},
"91": {
"question": "When did Li Hua ask Jennifer Moore for tips on dealing with muscle soreness?",
"answer": "20260206_16:00",
"evidence": "20260206_16:00",
"type": "Single"
},
"92": {
"question": "What are some of Jennifer Moore's tips for dealing with muscle soreness?",
"answer": "hydration&active recovery&stretching&foam rolling&rest",
"evidence": "20260206_16:00",
"type": "Single"
},
"93": {
"question": "Why did Li Hua ask for extra exercises to do at home?",
"answer": "to complement his training schedule",
"evidence": "20260205_13:00",
"type": "Single"
},
"94": {
"question": "What exercises did Jennifer Moore suggest Li Hua do at home?",
"answer": "bodyweight squats& plank holds&push-ups&lunges&glute bridges",
"evidence": "20260205_13:00",
"type": "Single"
},
"95": {
"question": "What is Adam Smith's condition for Li Hua to add decorations to the basement?",
"answer": "must be reversible and not damage anything",
"evidence": "20260219_20:00",
"type": "Single"
},
"96": {
"question": "When was the first time Wolfgang went to Li Hua's basement?",
"answer": "20260221",
"evidence": "20260221_15:00",
"type": "Single"
},
"97": {
"question": "What ideas did Wolfgang Schulz suggest for Li Hua's basement practice spot?",
"answer": "good lighting&soundproofing&a comfy chair",
"evidence": "20260219_20:10",
"type": "Single"
},
"98": {
"question": "Why did Adam remind Li Hua not to play guitar late at night?",
"answer": "a few neighbors have mentioned they're hearing guitar music late at night",
"evidence": "20260216_10:00",
"type": "Single"
},
"99": {
"question": "What type of ambiance does YurikoYamamoto want for her studio's homepage?",
"answer": "more welcoming and engaging",
"evidence": "20260223_15:00",
"type": "Single"
},
"100": {
"question": "When did Li Hua invite Adam Smith to check the basement renovation progress?",
"answer": "20260223_19:00",
"evidence": "20260223_17:00",
"type": "Single"
},
"101": {
"question": "What is the name of the café where Li Hua and YurikoYamamoto first meeting to talk about Yuriko's website?",
"answer": "Central Perk",
"evidence": "20260225_15:00",
"type": "Single"
},
"102": {
"question": "What is the essence of YurikoYamamoto Li Hua is helping with her homepage?",
"answer": "speech therapy",
"evidence": "20260223_15:00",
"type": "Single"
},
"103": {
"question": "What type of instrument does Li Hua play in the basement?",
"answer": "guitar",
"evidence": "20260223_17:00",
"type": "Single"
},
"104": {
"question": "When did Adam Smith inform Li Hua about potential issues with the pipes in the basement?",
"answer": "20260301_13:00",
"evidence": "20260301_13:00",
"type": "Single"
},
"105": {
"question": "When did Li Hua inform Adam Smith that the rent was transferred?",
"answer": "20260301_10:00",
"evidence": "20260301_10:00",
"type": "Single"
},
"106": {
"question": "When is the music concert that Wolfgang invites Li Hua to?",
"answer": "20260307_18:00",
"evidence": "20260302_18:00",
"type": "Single"
},
"107": {
"question": "What dish does Li Hua agree to bring to the neighborhood potluck dinner?",
"answer": "Homemade pasta salad",
"evidence": "20260302_18:45",
"type": "Single"
},
"108": {
"question": "Who is Li Hua meeting with to discuss homepage design updates?",
"answer": "Yuriko Yamamoto",
"evidence": "20260303_09:30",
"type": "Single"
},
"109": {
"question": "What new feature does Yuriko Yamamoto consider adding to her studio's homepage?",
"answer": "A blog section",
"evidence": "20260307_13:00",
"type": "Single"
},
"110": {
"question": "What time is the power outage in the neighborhood?",
"answer": "2 PM to 3 PM",
"evidence": "20260307_14:45",
"type": "Single"
},
"111": {
"question": "What suggestions does Li Hua give for promoting the new scheduling feature?",
"answer": "Showcase it on social media platforms and include a short tutorial and send out a newsletter to clients",
"evidence": "20260311_14:30",
"type": "Single"
},
"112": {
"question": "Who invites Li Hua to join the community bake sale?",
"answer": "Adam Smith",
"evidence": "20260312_12:30",
"type": "Single"
},
"113": {
"question": "What day and time is the community bake sale taking place?",
"answer": "Sunday at 3 PM",
"evidence": "20260312_12:30",
"type": "Single"
},
"114": {
"question": "When does Li Hua request a delivery from Hailey Johnson?",
"answer": "Tuesday",
"evidence": "20260314_17:00",
"type": "Single"
},
"115": {
"question": "What is the address where Li Hua wants the bread delivery to be made?",
"answer": "123 Sunny Street",
"evidence": "20260314_17:00",
"type": "Single"
},
"116": {
"question": "What service does Hailey Johnson offer to Li Hua?",
"answer": "Doorstep delivery service for fresh milk and bread",
"evidence": "20260314_17:00",
"type": "Single"
},
"117": {
"question": "What time does Hailey Johnson start baking?",
"answer": "4 AM",
"evidence": "20260317_08:00",
"type": "Single"
},
"118": {
"question": "Where does Li Hua plan to meet Yuriko Yamamoto to show the final website?",
"answer": "Central Perk café",
"evidence": "20260317_15:30",
"type": "Single"
},
"119": {
"question": "What does Li Hua suggest to Hailey regarding the frequency of bread delivery?",
"answer": "Twice a week on Mondays and Fridays at 8am",
"evidence": "20260318_15:00",
"type": "Single"
},
"120": {
"question": "What does Li Hua agree to bring to the bonfire singing party hosted by Chae Song-hwa?",
"answer": "Li Hua will bring his guitar",
"evidence": "20260320_18:00",
"type": "Single"
},
"121": {
"question": "What is the focus of Li Hua's next month's fitness plan according to Jennifer?",
"answer": "Strengthening lower limbs",
"evidence": "20260325_19:00",
"type": "Single"
},
"122": {
"question": "What is the building's policy that Adam reminds Li Hua about?",
"answer": "Recycling policy",
"evidence": "20260328_15:00",
"type": "Single"
},
"123": {
"question": "What is the topic of the online tutorial Yuriko shares with the group?",
"answer": "Advanced drum techniques",
"evidence": "20260329_10:00",
"type": "Single"
},
"124": {
"question": "What is Wolfgang looking for in his new drums?",
"answer": "Something versatile that sounds good for both rock and softer tunes like The Beatles",
"evidence": "20260326_16:00",
"type": "Single"
},
"125": {
"question": "What song does Li Hua suggest for the jam session on 20260405?",
"answer": "Viva la Vida",
"evidence": "20260405_10:00",
"type": "Single"
},
"126": {
"question": "What does Li Hua think about the rosemary focaccia?",
"answer": "Li Hua thinks the rosemary focaccia is amazing",
"evidence": "20260331_14:00",
"type": "Single"
},
"127": {
"question": "When does Li Hua confirm the rent transfer to Adam?",
"answer": "20260331_17:00",
"evidence": "20260331_17:00",
"type": "Single"
},
"128": {
"question": "What joke does Wolfgang make as an April Fool's joke?",
"answer": "That Wolfgang bought a set of expensive drums",
"evidence": "20260401_15:00",
"type": "Single"
},
"129": {
"question": "Who is delivering the bread to Li Hua on 20260403?",
"answer": "Alice",
"evidence": "20260403_08:00",
"type": "Single"
},
"130": {
"question": "What does Li Hua think about improvisation during the jam session?",
"answer": "Improvisation sounds great",
"evidence": "20260402_19:00",
"type": "Single"
},
"131": {
"question": "When is ChaeSong-hwa hosting the community medical knowledge lecture?",
"answer": "7 PM on Saturday",
"evidence": "20260407_19:00",
"type": "Single"
},
"132": {
"question": "What topics will be covered in the community medical knowledge lecture?",
"answer": "Basics of common health issues and how to prevent them",
"evidence": "20260407_19:00",
"type": "Single"
},
"133": {
"question": "What new song does the Jolly band decide to work on for the jam session according to their discussion on 20260410?",
"answer": "Stand By Me",
"evidence": "20260410_11:00",
"type": "Single"
},
"134": {
"question": "What is Li Hua's feedback on Chae Song-hwa's medical knowledge lecture?",
"answer": "It is insightful and makes complex topics easy to understand",
"evidence": "20260411_21:00",
"type": "Single"
},
"135": {
"question": "When is the anniversary event of Hailey Johnson's bakery shop?",
"answer": "April 15 to 17",
"evidence": "20260413_21:00",
"type": "Single"
},
"136": {
"question": "What does Li Hua want to have on Hailey's bakery shop anniversary event?",
"answer": "Sourdough and sweet pastries",
"evidence": "20260413_21:00",
"type": "Single"
},
"137": {
"question": "Why does Li Hua ask ChaeSong-hwa about whether neurosurgeons actually use test tubes in their work?",
"answer": "Li Hua is trying to get some insights for a website design",
"evidence": "20260414_16:00",
"type": "Single"
},
"138": {
"question": "Who proposes that the band takes a break from jamming this week?",
"answer": "Wolfgang Schulz",
"evidence": "20260416_21:00",
"type": "Single"
},
"139": {
"question": "What suggestions does Li Hua propose to Adam Smith about the upcoming community garden renovation?",
"answer": "Add more seating areas for people to relax and enjoy the space and some flower beds with native plants",
"evidence": "20260417_11:00",
"type": "Single"
},
"140": {
"question": "What kinds of flowers does Li Hua recommend to Adam Smith for the flower beds?",
"answer": "Lavender and coneflowers and fresh herbs",
"evidence": "20260417_11:00",
"type": "Single"
},
"141": {
"question": "What will be a gift for Li Hua if he chooses to renew the fitness contract with Jennifer Moore?",
"answer": "A cool fitness bag as a gift for all the gym activities",
"evidence": "20260420_21:00",
"type": "Single"
},
"142": {
"question": "When is the karaoke activity organized by ChaeSong-hwa?",
"answer": "Saturday at 7 PM",
"evidence": "20260421_16:00",
"type": "Single"
},
"143": {
"question": "Who is Li Hua bringing to the band's jam session according to their discussion on 20260425?",
"answer": "ChaeSong-hwa",
"evidence": "20260425_21:00",
"type": "Single"
},
"144": {
"question": "What garden-related activity is Thrall planning to organize?",
"answer": "A community planting day",
"evidence": "20260426_1330",
"type": "Single"
},
"145": {
"question": "What is the proposed solution for making the garden more inviting on sunny days?",
"answer": "Adding shade with umbrellas or trees",
"evidence": "20260427_10:30",
"type": "Single"
},
"146": {
"question": "What is the main topic of the conversation on 2026-04-28 at 5 PM?",
"answer": "Breathing techniques and tips for squats during workouts",
"evidence": "20260428_17:00",
"type": "Single"
},
"147": {
"question": "When is Wolfgang Schulz's promotion celebration dinner?",
"answer": "6 PM on the day after tomorrow (implied to be 2026-04-30)",
"evidence": "20260428_18:30",
"type": "Single"
},
"148": {
"question": "What is the name of the Italian restaurant where Wolfgang and Li Hua are having dinner to celebrate Wolfgang's promotion?",
"answer": "Venedia Grancaffe",
"evidence": "20260430_17:00",
"type": "Single"
},
"149": {
"question": "What is Li Hua's suggestion for scheduling the water pipe repairs in the garden?",
"answer": "During off-peak hours",
"evidence": "20260501_16:00",
"type": "Single"
},
"150": {
"question": "When is the community meeting for the garden project scheduled according to the discussion on 20260507?",
"answer": "Saturday at 10 am",
"evidence": "20260507_16:00",
"type": "Single"
},
"151": {
"question": "What percentage discount is Hailey Johnson offering for Mother's Day pastries?",
"answer": "15%",
"evidence": "20260508_08:00",
"type": "Single"
},
"152": {
"question": "Which two specific pastries does Hailey Johnson recommend for Mother's Day?",
"answer": "Raspberry-filled croissants and chocolate eclairs",
"evidence": "20260508_08:00",
"type": "Single"
},
"153": {
"question": "What type of stretches does JenniferMoore suggest before and after workouts?",
"answer": "Dynamic stretches before and static stretches after",
"evidence": "20260510_11:30",
"type": "Single"
},
"154": {
"question": "When is the web design seminar at Wolfgang's company happening?",
"answer": "Thursday at 3 PM",
"evidence": "20260511_11:00",
"type": "Single"
},
"155": {
"question": "What is Li Hua looking forward to trying from the summer promotion?",
"answer": "Fruity ice cream flavors and a mango-coconut pastry",
"evidence": "20260514_14:00",
"type": "Single"
},
"156": {
"question": "What did Li Hua enjoy the most about the restaurant that he and Wolfgang visited for dinner on 20260514?",
"answer": "The pasta dish and the dessert",
"evidence": "20260514_22:00",
"type": "Single"
},
"157": {
"question": "Why is Chae Song-hwa unable to join the rehearsal?",
"answer": "She has to attend a medical lecture",
"evidence": "20260515_10:00",
"type": "Single"
},
"158": {
"question": "What type of lighting is preferred for the seating area in the community garden?",
"answer": "Soft white lights",
"evidence": "20260516_10:00",
"type": "Single"
},
"159": {
"question": "When is the construction of the garden supposed to start?",
"answer": "This Wednesday (20260520)",
"evidence": "20260518_10:00",
"type": "Single"
},
"160": {
"question": "Which flowers does RexxarRemar suggest for a vibrant vibe?",
"answer": "Bluebell and Camellia and Tulip",
"evidence": "20260518_10:00",
"type": "Single"
},
"161": {
"question": "How does RexxarRemar plan to spend time in the garden once it's done?",
"answer": "For family gatherings and relaxing afternoons",
"evidence": "20260518_10:00",
"type": "Single"
},
"162": {
"question": "What does LiHua find as a perfect place to work in his conversation with Chae?",
"answer": "The Lighthouse Cafe",
"evidence": "20260521_15:00",
"type": "Single"
},
"163": {
"question": "What songs does Chae propose to the Jolly band to try out on Sunday according to the conversation on 20260521?",
"answer": "The Yellow Wind Rises and \"To the West\"",
"evidence": "20260521_20:00",
"type": "Single"
},
"164": {
"question": "What is IllidanStormrage's suggestion to the ongoing garden construction according to the discussion on 20260522?",
"answer": "plan some quiet hours when the kids are playing",
"evidence": "20260522_20:00",
"type": "Single"
},
"165": {
"question": "What songs does LiHua suggest adding to the karaoke playlist in his conversation with Chae?",
"answer": "I Will Survive and \"Sweet Caroline\"",
"evidence": "20260525_15:00",
"type": "Single"
},
"166": {
"question": "What time does Turalyon plan to limit noisy activities?",
"answer": "From 2-3 pm",