-
Notifications
You must be signed in to change notification settings - Fork 35
/
webquestions.examples.test.json
2034 lines (2034 loc) · 437 KB
/
webquestions.examples.test.json
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
[
{"url": "http://www.freebase.com/view/en/jamaica", "targetValue": "(list (description \"Jamaican Creole English Language\") (description \"Jamaican English\"))", "utterance": "what does jamaican people speak?"},
{"url": "http://www.freebase.com/view/en/james_k_polk", "targetValue": "(list (description Lawyer))", "utterance": "what did james k polk do before he was president?"},
{"url": "http://www.freebase.com/view/en/oregon_ducks", "targetValue": "(list (description \"University of Oregon\"))", "utterance": "what is the oregon ducks 2012 football schedule?"},
{"url": "http://www.freebase.com/view/en/ken_barlow", "targetValue": "(list (description \"Tony Warren\"))", "utterance": "who plays ken barlow in coronation street?"},
{"url": "http://www.freebase.com/view/en/chiune_sugihara", "targetValue": "(list (description Yaotsu))", "utterance": "what happened after mr. sugihara died?"},
{"url": "http://www.freebase.com/view/en/wolfgang_amadeus_mozart", "targetValue": "(list (description \"wolfgang amadeus mozart used story by pierre beaumarchais\"))", "utterance": "who did mozart write his four horn concertos for?"},
{"url": "http://www.freebase.com/view/en/jamarcus_russell", "targetValue": "(list (description Mobile))", "utterance": "where is jamarcus russell from?"},
{"url": "http://www.freebase.com/view/en/george_washington_carver", "targetValue": "(list (description Diamond))", "utterance": "where was george washington carver from?"},
{"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description \"Lightning rod\") (description \"Franklin stove\") (description Bifocals) (description \"Glass harmonica\"))", "utterance": "what else did ben franklin invent?"},
{"url": "http://www.freebase.com/view/en/richard_nixon", "targetValue": "(list (description \"Pat Nixon\"))", "utterance": "who was richard nixon married to?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description Belgium))", "utterance": "what country did germany invade first in ww1?"},
{"url": "http://www.freebase.com/view/en/saint_lucia", "targetValue": "(list (description \"Micoud Quarter\") (description \"Choiseul Quarter\") (description \"Praslin Quarter\") (description \"Vieux Fort Quarter\") (description \"Castries Quarter\") (description \"Laborie Quarter\") (description \"Gros Islet Quarter\") (description \"Anse la Raye Quarter\") (description \"Dauphin Quarter\") (description \"Dennery Quarter\"))", "utterance": "what is the best sandals resort in st lucia?"},
{"url": "http://www.freebase.com/view/en/ohio", "targetValue": "(list (description \"John Kasich\"))", "utterance": "who is governor of ohio 2011?"},
{"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"Lyndon B. Johnson\"))", "utterance": "who was vice president after kennedy died?"},
{"url": "http://www.freebase.com/view/en/fukushima_i_nuclear_power_plant", "targetValue": "(list (description Japan) (description Okuma))", "utterance": "where is the fukushima daiichi nuclear plant located?"},
{"url": "http://www.freebase.com/view/en/united_states_house_of_representatives", "targetValue": "(list (description \"Nancy Pelosi\"))", "utterance": "who is the minority leader of the house of representatives now?"},
{"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description Scotland) (description England) (description Wales) (description \"Northern Ireland\"))", "utterance": "what countries are part of the uk?"},
{"url": "http://www.freebase.com/view/en/bilbo_baggins", "targetValue": "(list (description \"Norman Bird\") (description \"Martin Freeman\") (description \"Ian Holm\"))", "utterance": "who plays bilbo baggins in the hobbit?"},
{"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description \"Civil rights movement\") (description \"Civil disobedience\") (description Nonviolence))", "utterance": "what things did martin luther king do?"},
{"url": "http://www.freebase.com/view/en/louisiana", "targetValue": "(list (description \"Central Time Zone\") (description UTC\u221206:00))", "utterance": "what is my timezone in louisiana?"},
{"url": "http://www.freebase.com/view/en/st_augustin", "targetValue": "(list (description Physician) (description Writer) (description Philosopher))", "utterance": "what did st augustine do?"},
{"url": "http://www.freebase.com/view/en/keyshia_cole", "targetValue": "(list (description \"Leon Cole\"))", "utterance": "who is keyshia cole dad?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Semi-presidential system\") (description \"Constitutional republic\") (description Republic) (description \"Unitary state\"))", "utterance": "what kind government does egypt have?"},
{"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description Memphis))", "utterance": "what town was martin luther king assassinated in?"},
{"url": "http://www.freebase.com/view/en/edgar_allan_poe", "targetValue": "(list (description Baltimore))", "utterance": "where did edgar allan poe died?"},
{"url": "http://www.freebase.com/view/en/charles_goodyear", "targetValue": "(list (description \"During the early 1830's he began inventing, filing six patents between 1830 and 1834, and during this period became interested in rubber, which he tried - unsuccessfully - to use in some of his mechanical inventions.\"))", "utterance": "when did charles goodyear invented rubber?"},
{"url": "http://www.freebase.com/view/en/atlanta", "targetValue": "(list (description \"Atlanta History Center\") (description \"Atlanta Cyclorama & Civil War Museum\") (description \"Atlanta Ballet\") (description \"Fernbank Museum of Natural History\") (description \"Woodruff Arts Center\") (description \"Zoo Atlanta\") (description \"Atlanta Symphony Orchestra\") (description \"Centennial Olympic Park\") (description \"Martin Luther King, Jr., National Historic Site\") (description \"Fernbank Science Center\"))", "utterance": "what to do today in atlanta with kids?"},
{"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description Germany))", "utterance": "who did france surrender to in ww2?"},
{"url": "http://www.freebase.com/view/en/anna_bligh", "targetValue": "(list (description \"Electoral district of South Brisbane\"))", "utterance": "what electorate does anna bligh represent?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description us))", "utterance": "what channel is the usa pageant on?"},
{"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Zak\u0101t) (description Salah) (description Hajj) (description \"Islamic dietary laws\") (description \"Mosque Carpet\") (description Jihad) (description Sawm) (description \"Halal food\") (description Shahada) (description Adab))", "utterance": "what are some of the traditions of islam?"},
{"url": "http://www.freebase.com/view/en/andrew_murray", "targetValue": "(list (description \"United Kingdom\"))", "utterance": "where did andy murray started playing tennis?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"Australian dollar\"))", "utterance": "what is the australian dollar called?"},
{"url": "http://www.freebase.com/view/en/sweden", "targetValue": "(list (description \"Central European Time\"))", "utterance": "what timezone is sweden?"},
{"url": "http://www.freebase.com/view/en/cameron_newton", "targetValue": "(list (description \"Carolina Panthers\"))", "utterance": "who did cam newton sign with?"},
{"url": "http://www.freebase.com/view/en/frederick", "targetValue": "(list (description \"Frederick County\"))", "utterance": "what county is frederick md in?"},
{"url": "http://www.freebase.com/view/en/harper_lee", "targetValue": "(list (description \"Monroe County High School\"))", "utterance": "what highschool did harper lee go to?"},
{"url": "http://www.freebase.com/view/en/utah", "targetValue": "(list (description \"Mountain Time Zone\"))", "utterance": "what timezone is utah in?"},
{"url": "http://www.freebase.com/view/en/george_w_bush", "targetValue": "(list (description \"Al Gore\"))", "utterance": "who did george w. bush run against for the second term?"},
{"url": "http://www.freebase.com/view/en/niall_ferguson", "targetValue": "(list (description \"Ayaan Hirsi Ali\"))", "utterance": "who is niall ferguson's wife?"},
{"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Joseph Stalin\"))", "utterance": "who was the leader of soviet union during wwii?"},
{"url": "http://www.freebase.com/view/en/galapagos_islands", "targetValue": "(list (description \"Pacific Ocean\") (description \"Gal\u00e1pagos Province\"))", "utterance": "where is the galapagos islands located on a world map?"},
{"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description \"Catching Feelings\") (description \"Down to Earth\") (description \"Beauty and a Beat\") (description \"All Around The World (featuring Ludacris)\") (description \"Die in Your Arms\") (description \"As Long As You Love Me (featuring Big Sean)\") (description Baby) (description Believe) (description \"Be Alright\") (description Boyfriend))", "utterance": "what are the songs that justin bieber wrote?"},
{"url": "http://www.freebase.com/view/en/georges_clemenceau", "targetValue": "(list (description Newspaper) (description Physician) (description Statesman) (description Publisher))", "utterance": "what did george clemenceau do?"},
{"url": "http://www.freebase.com/view/en/arizona", "targetValue": "(list (description Saguaro))", "utterance": "what is the state flower of arizona?"},
{"url": "http://www.freebase.com/view/en/riannah", "targetValue": "(list (description \"Saint Michael Parish\") (description Barbados))", "utterance": "where was rihanna born and raised?"},
{"url": "http://www.freebase.com/view/en/william_henry_harrison", "targetValue": "(list (description 3/4/1841))", "utterance": "what year did president william henry harrison take office?"},
{"url": "http://www.freebase.com/view/en/george_lopez", "targetValue": "(list (description \"Mission Hills\"))", "utterance": "where george lopez was born?"},
{"url": "http://www.freebase.com/view/en/samsung_group", "targetValue": "(list (description Seoul))", "utterance": "where are samsung based?"},
{"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Zak\u0101t) (description Salah) (description Hajj) (description \"Islamic dietary laws\") (description Jihad) (description Sawm) (description \"Halal food\") (description Shahada) (description Adab))", "utterance": "what did the islamic people believe in?"},
{"url": "http://www.freebase.com/view/en/james_chadwick", "targetValue": "(list (description Neutron))", "utterance": "what did the scientist chadwick discovered?"},
{"url": "http://www.freebase.com/view/en/grey", "targetValue": "(list (description \"Karen Mulder\"))", "utterance": "who will play mr gray in the film?"},
{"url": "http://www.freebase.com/view/en/george_orwell", "targetValue": "(list (description Tuberculosis))", "utterance": "what did george orwell died of?"},
{"url": "http://www.freebase.com/view/en/battle_of_gettysburg", "targetValue": "(list (description Union))", "utterance": "who won the battle of gettysburg union or confederate?"},
{"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description Germany))", "utterance": "what country did adolf hitler control?"},
{"url": "http://www.freebase.com/view/en/michael_buble", "targetValue": "(list (description Singer) (description Actor) (description Singer-songwriter))", "utterance": "who is michael buble?"},
{"url": "http://www.freebase.com/view/en/kansas_city_kansas", "targetValue": "(list (description \"Wyandotte County\"))", "utterance": "what county is kansas city kansas?"},
{"url": "http://www.freebase.com/view/en/john_quincy_adams", "targetValue": "(list (description \"Secretary of State\") (description President) (description Ambassador) (description \"Member of Congress\") (description Senator))", "utterance": "what was john quincy adams famous for?"},
{"url": "http://www.freebase.com/view/en/jackie_robinson", "targetValue": "(list (description \"Montreal Royals\") (description \"Kansas City Monarchs\") (description \"Los Angeles Bulldogs\") (description \"Brooklyn Dodgers\") (description \"UCLA Bruins football\"))", "utterance": "who did jackie robinson first play for?"},
{"url": "http://www.freebase.com/view/en/annie", "targetValue": "(list (description \"Annie (1977 original Broadway cast)\"))", "utterance": "when did annie open?"},
{"url": "http://www.freebase.com/view/en/eleanor_roosevelt", "targetValue": "(list (description \"New York City\"))", "utterance": "where did eleanor roosevelt die?"},
{"url": "http://www.freebase.com/view/en/indonesia", "targetValue": "(list (description Protestantism) (description Hinduism) (description Catholicism) (description Islam))", "utterance": "what are the religions practiced in indonesia?"},
{"url": "http://www.freebase.com/view/en/jesse_james", "targetValue": "(list (description Assassination) (description Firearm))", "utterance": "what was jesse james killed with?"},
{"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description \"Andrew Johnson\") (description \"Hannibal Hamlin\"))", "utterance": "who was vp for lincoln?"},
{"url": "http://www.freebase.com/view/en/charles_dickens", "targetValue": "(list (description \"The Chimes\") (description \"Our Mutual Friend\") (description \"The Old Curiosity Shop\") (description \"David Copperfield\") (description \"A Christmas Carol\") (description \"The Cricket on the Hearth\") (description \"The Life and Adventures of Nicholas Nickleby\") (description \"Hard Times\") (description \"Oliver Twist\") (description \"A Tale of Two Cities\"))", "utterance": "what other books did charles dickens write?"},
{"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Joseph Stalin\"))", "utterance": "who was the first dictator of the soviet union?"},
{"url": "http://www.freebase.com/view/en/puerto_rico", "targetValue": "(list (description \"United States dollar\"))", "utterance": "what is the currency of puerto rico called?"},
{"url": "http://www.freebase.com/view/en/carl_wilson", "targetValue": "(list (description \"Lung cancer\"))", "utterance": "what kind of cancer did carl wilson have?"},
{"url": "http://www.freebase.com/view/en/kitt", "targetValue": "(list (description \"William Daniels\"))", "utterance": "who plays the voice of kitt in knight rider?"},
{"url": "http://www.freebase.com/view/en/brentwood", "targetValue": "(list (description \"Williamson County\"))", "utterance": "what county is brentwood tennessee in?"},
{"url": "http://www.freebase.com/view/en/moira_mactaggert", "targetValue": "(list (description Mutant))", "utterance": "who is moira en x men?"},
{"url": "http://www.freebase.com/view/en/michael_j_fox", "targetValue": "(list (description \"Tracy Pollan\"))", "utterance": "who did michael j fox marry?"},
{"url": "http://www.freebase.com/view/en/stonewall_jackson", "targetValue": "(list (description \"Battle of Manassas Station Ops.\") (description \"Battle of McDowell\") (description \"Battle of Port Republic\") (description \"Battle of Rappahannock Station I\") (description \"Battle of Chancellorsville\") (description \"Battle of Front Royal\") (description \"Battle of Hoke's Run\") (description \"Battle of Cedar Mountain\") (description \"First Battle of Winchester\") (description \"Battle of Hancock\"))", "utterance": "what battles did stonewall jackson fight in?"},
{"url": "http://www.freebase.com/view/en/maasai", "targetValue": "(list (description \"Maasai Language\"))", "utterance": "what language do the maasai tribe speak?"},
{"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description \"Deborah Read\"))", "utterance": "who did benjamin franklin get married to?"},
{"url": "http://www.freebase.com/view/en/patrick_swayze", "targetValue": "(list (description \"Pancreatic cancer\"))", "utterance": "what disease did patrick swayze died from?"},
{"url": "http://www.freebase.com/view/en/leonardo_da_vinci", "targetValue": "(list (description \"Ginevra de' Benci\") (description \"The Last Supper\") (description \"The Virgin and Child with St Anne and St John the Baptist\") (description \"Mona Lisa\") (description \"Benois Madonna\") (description \"Madonna Litta\") (description \"Lady with an Ermine\") (description \"St. John the Baptist\") (description \"The Virgin and Child with St. Anne\") (description Annunciation))", "utterance": "what works of art did leonardo da vinci produce?"},
{"url": "http://www.freebase.com/view/en/austria", "targetValue": "(list (description Vienna))", "utterance": "what capital of austria?"},
{"url": "http://www.freebase.com/view/en/eva_peron", "targetValue": "(list (description \"Cervical cancer\"))", "utterance": "what type of cancer did eva peron have?"},
{"url": "http://www.freebase.com/view/en/gautama_buddha", "targetValue": "(list (description India))", "utterance": "what country did buddha come from?"},
{"url": "http://www.freebase.com/view/en/greeley", "targetValue": "(list (description \"Weld County\"))", "utterance": "what county is greeley colorado in?"},
{"url": "http://www.freebase.com/view/en/ellen_degeneres", "targetValue": "(list (description \"Beverly Hills\"))", "utterance": "where is the ellen degenerous show filmed?"},
{"url": "http://www.freebase.com/view/en/peter_tjajkovskij", "targetValue": "(list (description Composer))", "utterance": "what did peter tchaikovsky do?"},
{"url": "http://www.freebase.com/view/en/german_language", "targetValue": "(list (description Canada) (description \"German Democratic Republic\") (description Luxembourg) (description Switzerland) (description Liechtenstein) (description Germany) (description \"West Germany\") (description Belgium) (description \"Vatican City\") (description \"Second Polish Republic\"))", "utterance": "which countries speak german officially?"},
{"url": "http://www.freebase.com/view/en/john_lennon", "targetValue": "(list (description \"Experimental rock\") (description \"Pop rock\") (description \"Pop music\") (description Blues-rock) (description \"Art rock\") (description \"Soft rock\") (description \"Psychedelic rock\") (description \"Rock music\") (description \"Experimental music\"))", "utterance": "what type of music did john lennon sing?"},
{"url": "http://www.freebase.com/view/en/colorado", "targetValue": "(list (description \"Wayne Allard\") (description \"Ken Salazar\") (description \"Gordon L. Allott\") (description \"Hank Brown\") (description \"Edwin C. Johnson\") (description \"William L. Armstrong\") (description \"Floyd K. Haskell\") (description \"Mark Udall\") (description \"Michael Bennet\"))", "utterance": "who are the colorado representatives?"},
{"url": "http://www.freebase.com/view/en/greenland", "targetValue": "(list (description Denmark))", "utterance": "which country does greenland belong to?"},
{"url": "http://www.freebase.com/view/en/seattle", "targetValue": "(list (description 98109) (description 98108) (description 98105) (description 98104) (description 98107) (description 98106) (description 98101) (description 98103) (description 98102) (description 98117))", "utterance": "what the zip code for seattle washington?"},
{"url": "http://www.freebase.com/view/en/willow_smith", "targetValue": "(list (description \"Jada Pinkett Smith\"))", "utterance": "who is willow smith mom name?"},
{"url": "http://www.freebase.com/view/en/chinese_language", "targetValue": "(list (description \"Standard Mandarin\"))", "utterance": "what do you call the chinese writing system?"},
{"url": "http://www.freebase.com/view/en/the_jeffersons", "targetValue": "(list (description \"Isabel Sanford\") (description \"Marla Gibbs\") (description \"Sherman Hemsley\"))", "utterance": "who played on the jeffersons?"},
{"url": "http://www.freebase.com/view/en/san_francisco", "targetValue": "(list (description \"The San Francisco Examiner\") (description \"California Star\") (description \"San Francisco Bay Guardian\") (description \"San Francisco Business Times\") (description \"San Francisco Bay Times\") (description \"San Francisco Chronicle\") (description \"Bay Area Reporter\") (description \"Sing Tao Daily\") (description AsianWeek) (description \"San Francisco Call\"))", "utterance": "what is the name of the san francisco newspaper?"},
{"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Cold War\"))", "utterance": "what made the soviet union fall?"},
{"url": "http://www.freebase.com/view/en/armenia", "targetValue": "(list (description Eurasia))", "utterance": "what continent does armenia belong to?"},
{"url": "http://www.freebase.com/view/en/randy_savage", "targetValue": "(list (description \"Myocardial infarction\") (description \"Traffic collision\"))", "utterance": "what did randy savage died of?"},
{"url": "http://www.freebase.com/view/en/charles_darwin", "targetValue": "(list (description \"The Structure and Distribution of Coral Reefs\") (description \"On evolution\") (description \"A student's introduction to Charles Darwin\") (description \"Climbing Plants\") (description \"The Expression of the Emotions in Man and Animals\") (description \"The origin of species : complete and fully illustrated\") (description \"The Origin of Species\") (description \"The Life of Erasmus Darwin\") (description \"The Autobiography of Charles Darwin\") (description \"The Descent of Man, and Selection in Relation to Sex\"))", "utterance": "what was the title of the book charles darwin wrote?"},
{"url": "http://www.freebase.com/view/en/richard_nixon", "targetValue": "(list (description \"New York City\"))", "utterance": "where did richard nixon die?"},
{"url": "http://www.freebase.com/view/en/smokey_robinson", "targetValue": "(list (description \"Being With You\") (description Cruisin') (description Crusin') (description \"And I Love Her\") (description \"The Tracks of My Tears\") (description \"Quiet Storm\") (description \"Tracks of my Tears\") (description \"Santa Claus is Coming to Town\"))", "utterance": "what songs does smokey robinson sing?"},
{"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"Lyndon B. Johnson\"))", "utterance": "who was vice president when jfk was president?"},
{"url": "http://www.freebase.com/view/en/serbia", "targetValue": "(list (description \"Serbian language\"))", "utterance": "what is serbian language called?"},
{"url": "http://www.freebase.com/view/en/haiti", "targetValue": "(list (description \"French Language\") (description \"Haitian Creole French Language\"))", "utterance": "what language is spoken in haiti today?"},
{"url": "http://www.freebase.com/view/en/greece", "targetValue": "(list (description Athens))", "utterance": "what are the names of the city states in ancient greece?"},
{"url": "http://www.freebase.com/view/en/barbara_gordon", "targetValue": "(list (description \"Alicia Silverstone\"))", "utterance": "who played barbara gordon batgirl?"},
{"url": "http://www.freebase.com/view/en/shaquille_oneal", "targetValue": "(list (description \"Boston Celtics\") (description \"Miami Heat\") (description \"LSU Tigers men's basketball\") (description \"Los Angeles Lakers\") (description \"Orlando Magic\"))", "utterance": "what basketball teams has shaq played for?"},
{"url": "http://www.freebase.com/view/en/jay_leno", "targetValue": "(list (description \"New Rochelle\"))", "utterance": "where is jay leno from?"},
{"url": "http://www.freebase.com/view/en/thailand", "targetValue": "(list (description \"Mon Language\") (description \"Lao Language\") (description \"Khmer language\") (description \"Hmong language\") (description \"Thai Language\") (description \"Cham language\") (description \"Mlabri language\") (description \"Malay, Pattani Language\") (description \"Nyaw Language\") (description \"Saek language\"))", "utterance": "what language do people from thailand speak?"},
{"url": "http://www.freebase.com/view/en/armie_hammer", "targetValue": "(list (description \"Jesse Eisenberg\"))", "utterance": "who did armie hammer play in the social network?"},
{"url": "http://www.freebase.com/view/en/thomas_jefferson", "targetValue": "(list (description Writer))", "utterance": "what was thomas jefferson role in the declaration of independence?"},
{"url": "http://www.freebase.com/view/en/charles_darwin", "targetValue": "(list (description \"The Structure and Distribution of Coral Reefs\") (description \"On evolution\") (description \"A student's introduction to Charles Darwin\") (description \"Climbing Plants\") (description \"The Expression of the Emotions in Man and Animals\") (description \"The origin of species : complete and fully illustrated\") (description \"The Origin of Species\") (description \"The Life of Erasmus Darwin\") (description \"The Autobiography of Charles Darwin\") (description \"The Descent of Man, and Selection in Relation to Sex\"))", "utterance": "what was the book written by charles darwin?"},
{"url": "http://www.freebase.com/view/en/tim_tebow", "targetValue": "(list (description \"University of Florida\"))", "utterance": "who did tim tebow play college football for?"},
{"url": "http://www.freebase.com/view/en/peyton_manning", "targetValue": "(list (description \"Denver Broncos\"))", "utterance": "who does peyton manning play football for?"},
{"url": "http://www.freebase.com/view/en/carpathian_mountains", "targetValue": "(list (description Ukraine) (description Europe) (description Romania) (description \"Czech Republic\") (description Poland) (description Serbia) (description Slovakia) (description Hungary))", "utterance": "where is the carpathian mountain range located?"},
{"url": "http://www.freebase.com/view/en/robert_burns", "targetValue": "(list (description Poet) (description Writer) (description Bard) (description Author))", "utterance": "what was robert burns?"},
{"url": "http://www.freebase.com/view/en/anton_van_leeuwenhoek", "targetValue": "(list (description \"microscope first used by anton van leeuwenhoek\"))", "utterance": "what did anton van leeuwenhoek contribute to our knowledge of cells?"},
{"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"Hayden Christensen\"))", "utterance": "who did the voice of darth vader in episode 3?"},
{"url": "http://www.freebase.com/view/en/peyton_manning", "targetValue": "(list (description \"2006 NFL season\"))", "utterance": "what super bowl did peyton manning win?"},
{"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description Canada))", "utterance": "which country was justin bieber born in?"},
{"url": "http://www.freebase.com/view/en/yamaha_motor_company", "targetValue": "(list (description \"Shizuoka Prefecture\"))", "utterance": "where are yamaha outboard motors manufactured?"},
{"url": "http://www.freebase.com/view/en/gulf_war", "targetValue": "(list (description \"Saudi Arabia\") (description Australia) (description \"United States of America\") (description France) (description \"United Kingdom\") (description Argentina) (description Iraq))", "utterance": "who fought in the gulf war 1991?"},
{"url": "http://www.freebase.com/view/en/london_tipton", "targetValue": "(list (description \"Brenda Song\"))", "utterance": "who plays london tipton in suite life on deck?"},
{"url": "http://www.freebase.com/view/en/chinese_language", "targetValue": "(list (description \"Sino-Tibetan languages\"))", "utterance": "what was the ancient chinese writing system?"},
{"url": "http://www.freebase.com/view/en/david_beckham", "targetValue": "(list (description \"LA Galaxy\"))", "utterance": "what team did david beckham play for in 2011?"},
{"url": "http://www.freebase.com/view/en/francisco_vasquez_de_coronado", "targetValue": "(list (description Salamanca))", "utterance": "where did francisco coronado come from?"},
{"url": "http://www.freebase.com/view/en/google", "targetValue": "(list (description \"Google Maps\") (description \"Nexus 7\") (description \"Google Buzz\") (description \"Nexus 10\") (description \"Nexus One\") (description \"Nexus S\") (description \"Google Chrome\") (description \"Google Earth\") (description \"Google Wave\"))", "utterance": "what all does google now do?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Modern Standard Arabic\"))", "utterance": "what language does egyptian people speak?"},
{"url": "http://www.freebase.com/view/en/ibrahim", "targetValue": "(list (description Zimran) (description Ishbak) (description Midian) (description Shuah) (description Ishmael) (description Jokshan) (description Isaac) (description Medan))", "utterance": "what are abraham sons names?"},
{"url": "http://www.freebase.com/view/en/jana_gana_mana", "targetValue": "(list (description \"Ram Singh Thakur\") (description \"Rabindranath Tagore\"))", "utterance": "who wrote the jana gana mana?"},
{"url": "http://www.freebase.com/view/en/gilda_radner", "targetValue": "(list (description \"Ovarian cancer\"))", "utterance": "what type of cancer did gilda radner die of?"},
{"url": "http://www.freebase.com/view/en/juni_cortez", "targetValue": "(list (description \"Daryl Sabara\"))", "utterance": "who plays juni cortez?"},
{"url": "http://www.freebase.com/view/en/lucille_ball", "targetValue": "(list (description Singer) (description Model) (description Comedian) (description \"Television Producer\") (description Actor))", "utterance": "what was lucille ball?"},
{"url": "http://www.freebase.com/view/en/carrie_ann_inaba", "targetValue": "(list (description \"Jesse Sloan\"))", "utterance": "who did carrie ann inaba get engaged to?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Saul Alinsky\") (description \"Nipsey Russell\"))", "utterance": "who inspired obama?"},
{"url": "http://www.freebase.com/view/en/michael_j_fox", "targetValue": "(list (description \"Tracy Pollan\"))", "utterance": "who is michael j fox wife?"},
{"url": "http://www.freebase.com/view/en/dolly_parton", "targetValue": "(list (description Tennessee))", "utterance": "where did dolly parton grow up?"},
{"url": "http://www.freebase.com/view/en/agatha_christie", "targetValue": "(list (description \"Crime writer\"))", "utterance": "what type of books did agatha christie wrote?"},
{"url": "http://www.freebase.com/view/en/john_edwards", "targetValue": "(list (description \"Rielle Hunter\"))", "utterance": "who is the woman that john edwards had an affair with?"},
{"url": "http://www.freebase.com/view/en/jimi_hendrix", "targetValue": "(list (description \"Drug overdose\"))", "utterance": "what is jimi hendrix purple haze about?"},
{"url": "http://www.freebase.com/view/en/sacramento", "targetValue": "(list (description \"Boulevard Park\"))", "utterance": "where can i go running in sacramento?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Basque Language\") (description \"Galician Language\") (description \"Catalan language\") (description \"Occitan language\"))", "utterance": "what are the four main languages spoken in spain?"},
{"url": "http://www.freebase.com/view/en/national_rifle_association", "targetValue": "(list (description Fairfax))", "utterance": "where is the nra headquarters located?"},
{"url": "http://www.freebase.com/view/en/anna_kendrick", "targetValue": "(list (description Cups))", "utterance": "what is the song anna kendrick sings in pitch perfect?"},
{"url": "http://www.freebase.com/view/en/gimli", "targetValue": "(list (description Gloin))", "utterance": "who is gimli's father in the hobbit?"},
{"url": "http://www.freebase.com/view/en/transmission_control_protocol", "targetValue": "(list (description \"Robert E. Kahn\") (description \"Vint Cerf\"))", "utterance": "who developed the tcp ip reference model?"},
{"url": "http://www.freebase.com/view/en/shenandoah_valley", "targetValue": "(list (description \"Jackson's Valley Campaign\"))", "utterance": "who led the campaign in the shenandoah valley?"},
{"url": "http://www.freebase.com/view/en/pittsburgh_steelers", "targetValue": "(list (description \"Rooney family\"))", "utterance": "who founded the pittsburgh steelers in 1933?"},
{"url": "http://www.freebase.com/view/en/albert_einstein", "targetValue": "(list (description \"University of Zurich\") (description \"Aargau Cantonal School\") (description \"ETH Zurich\") (description \"Luitpold Gymnasium\"))", "utterance": "what college did albert einstein go to?"},
{"url": "http://www.freebase.com/view/en/jordan", "targetValue": "(list (description \"Jordan national football team\"))", "utterance": "what team does jordan own?"},
{"url": "http://www.freebase.com/view/en/tennesee", "targetValue": "(list (description \"Bill Haslam\"))", "utterance": "who is the state governor of tennessee?"},
{"url": "http://www.freebase.com/view/en/eli_whitney", "targetValue": "(list (description \"Cotton gin\"))", "utterance": "who is eli whitney and what did he invent?"},
{"url": "http://www.freebase.com/view/en/portuguese", "targetValue": "(list (description Portuguese))", "utterance": "what do portuguese people speak?"},
{"url": "http://www.freebase.com/view/en/cuba", "targetValue": "(list (description \"Spanish Language\"))", "utterance": "what language does cuba speak?"},
{"url": "http://www.freebase.com/view/en/aaron_rodgers", "targetValue": "(list (description \"Pleasant Valley High School\"))", "utterance": "where did aaron rodgers go to high school?"},
{"url": "http://www.freebase.com/view/en/herman_cain", "targetValue": "(list (description \"\u00c9vocateur: The Morton Downey Jr. Movie\"))", "utterance": "where herman cain stance on the issues?"},
{"url": "http://www.freebase.com/view/en/madrid", "targetValue": "(list (description \"Paseo del Prado\") (description \"Thyssen-Bornemisza Museum\") (description \"Almudena Cathedral\") (description \"Plaza de Cibeles\") (description \"Puerta del Sol\") (description \"Royal Palace of Madrid\") (description \"Museo de Lazaro Galdiano\") (description \"Gran V\u00eda\") (description \"Museo Nacional Centro de Arte Reina Sof\u00eda\") (description \"Plaza Mayor, Madrid\"))", "utterance": "what are the sights to see in madrid?"},
{"url": "http://www.freebase.com/view/en/louis_armstrong", "targetValue": "(list (description trumpet) (description Cornet))", "utterance": "what instruments did louis armstrong play?"},
{"url": "http://www.freebase.com/view/en/george_w_bush", "targetValue": "(list (description \"George W. Bush presidential campaign, 2000\"))", "utterance": "what year was george w bush elected?"},
{"url": "http://www.freebase.com/view/en/california", "targetValue": "(list (description \"Pacific Time Zone\") (description UTC-8))", "utterance": "what time zone am i in california?"},
{"url": "http://www.freebase.com/view/en/mission_san_buenaventura", "targetValue": "(list (description \"Ventura County\"))", "utterance": "where is mission san buenaventura located?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description \"Benito Mussolini\"))", "utterance": "who was the italian leader in ww1?"},
{"url": "http://www.freebase.com/view/en/hilo", "targetValue": "(list (description \"Hawaii\u2013Aleutian Time Zone\"))", "utterance": "what time in hilo hawaii?"},
{"url": "http://www.freebase.com/view/en/rudolf_virchow", "targetValue": "(list (description \"Humboldt University of Berlin\") (description \"University of W\u00fcrzburg\"))", "utterance": "where did rudolf virchow conduct his research?"},
{"url": "http://www.freebase.com/view/en/gordon_brown", "targetValue": "(list (description \"University of Edinburgh\"))", "utterance": "what university did gordon brown attend?"},
{"url": "http://www.freebase.com/view/en/greece", "targetValue": "(list (description Turkey) (description \"Republic of Macedonia\") (description Albania) (description \"Lake Prespa\") (description Bulgaria))", "utterance": "what countries does greece share borders with?"},
{"url": "http://www.freebase.com/view/en/seattle_seahawks", "targetValue": "(list (description \"2006 NFL season\"))", "utterance": "what year did the seahawks win the superbowl?"},
{"url": "http://www.freebase.com/view/en/stephen_hawking", "targetValue": "(list (description Author) (description Mathematician) (description Professor) (description Writer) (description Cosmologist) (description Physicist) (description Actor) (description Astronomer) (description Scientist) (description \"Science writer\"))", "utterance": "what did stephen hawking become famous for?"},
{"url": "http://www.freebase.com/view/en/donna_noble", "targetValue": "(list (description \"Catherine Tate\"))", "utterance": "who plays donna noble?"},
{"url": "http://www.freebase.com/view/en/dr_seuss", "targetValue": "(list (description \"Dartmouth College\") (description \"University of Oxford\") (description \"Lincoln College, Oxford\"))", "utterance": "what was dr seuss education?"},
{"url": "http://www.freebase.com/view/en/queensland", "targetValue": "(list (description \"Queen Victoria\"))", "utterance": "where did queensland get its name from?"},
{"url": "http://www.freebase.com/view/en/james_madison", "targetValue": "(list (description \"The Federalist Papers\") (description \"The Papers of James Madison: Presidential Series\") (description \"The Papers of James Madison: Congressional Series\") (description \"The Papers of James Madison: Secretary of State Series\") (description \"The Papers of James Madison\") (description \"The Papers of James Madison: Retirement Series\"))", "utterance": "what document did james madison write?"},
{"url": "http://www.freebase.com/view/en/belgium", "targetValue": "(list (description \"French Language\") (description \"German Language\") (description \"Dutch Language\"))", "utterance": "what are the three official languages of belgium?"},
{"url": "http://www.freebase.com/view/en/bilbo_baggins", "targetValue": "(list (description \"Norman Bird\") (description \"Martin Freeman\") (description \"Ian Holm\"))", "utterance": "who played bilbo in lord of the rings?"},
{"url": "http://www.freebase.com/view/en/destin", "targetValue": "(list (description \"Northwest Florida Regional Airport\") (description \"Destin\u2013Fort Walton Beach Airport\"))", "utterance": "what airport do you fly into to get to destin fl?"},
{"url": "http://www.freebase.com/view/en/united_states_senate", "targetValue": "(list (description Senator))", "utterance": "what do you call members of the senate?"},
{"url": "http://www.freebase.com/view/en/baltic_countries", "targetValue": "(list (description Latvia) (description Lithuania) (description Estonia))", "utterance": "what countries are part of the baltic?"},
{"url": "http://www.freebase.com/view/en/colin_kaepernick", "targetValue": "(list (description \"San Francisco 49ers\"))", "utterance": "what team does colin kaepernick play for?"},
{"url": "http://www.freebase.com/view/en/joe_flacco", "targetValue": "(list (description \"University of Delaware\"))", "utterance": "where did joe flacco attend college?"},
{"url": "http://www.freebase.com/view/en/emily_stone", "targetValue": "(list (description \"Jeff Stone\"))", "utterance": "who is emma stone father?"},
{"url": "http://www.freebase.com/view/en/theodore_roosevelt", "targetValue": "(list (description \"Youngs Memorial Cemetery\"))", "utterance": "where was theodore roosevelt buried?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Gerald Ford\"))", "utterance": "who was the leader of the us during wwii?"},
{"url": "http://www.freebase.com/view/en/henri_matisse", "targetValue": "(list (description Fauvism) (description Impressionism) (description Neo-impressionism) (description Modernism))", "utterance": "what artistic movement did henri matisse belong to?"},
{"url": "http://www.freebase.com/view/en/missouri_river", "targetValue": "(list (description \"Mississippi River\"))", "utterance": "where the missouri river ends?"},
{"url": "http://www.freebase.com/view/en/thailand", "targetValue": "(list (description \"Thai baht\"))", "utterance": "what type of currency do they use in thailand?"},
{"url": "http://www.freebase.com/view/en/khloe_kardashian", "targetValue": "(list (description \"Lamar Odom\"))", "utterance": "who is khloe kardashian's husband?"},
{"url": "http://www.freebase.com/view/en/mitt_romney", "targetValue": "(list (description 1/2/2003))", "utterance": "what years did romney serve as governor?"},
{"url": "http://www.freebase.com/view/en/mitt_romney", "targetValue": "(list (description Massachusetts))", "utterance": "what state does romney live in?"},
{"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description \"Semi-presidential system\") (description \"Constitutional republic\") (description \"Unitary state\"))", "utterance": "what type of government does france use?"},
{"url": "http://www.freebase.com/view/en/denmark", "targetValue": "(list (description \"Helle Thorning-Schmidt\"))", "utterance": "who rules denmark right now?"},
{"url": "http://www.freebase.com/view/en/stephen_hawking", "targetValue": "(list (description Physics))", "utterance": "what did stephen hawking study?"},
{"url": "http://www.freebase.com/view/en/bristol_palin", "targetValue": "(list (description \"Wasilla High School\") (description \"West Anchorage High School\") (description \"Juneau-Douglas High School\"))", "utterance": "where did bristol palin go to school?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Middle East\"))", "utterance": "what region of the world is egypt associated with?"},
{"url": "http://www.freebase.com/view/en/dr_seuss", "targetValue": "(list (description Writer))", "utterance": "what did dr. seuss do?"},
{"url": "http://www.freebase.com/view/en/drew_brees", "targetValue": "(list (description \"Purdue University\"))", "utterance": "where did drew brees go to college wikianswers?"},
{"url": "http://www.freebase.com/view/en/republican_party", "targetValue": "(list (description 20003))", "utterance": "what are republicans views on health care?"},
{"url": "http://www.freebase.com/view/en/ben_roethlisberger", "targetValue": "(list (description \"Miami University\"))", "utterance": "what school did ben roethlisberger go to?"},
{"url": "http://www.freebase.com/view/en/iroquois", "targetValue": "(list (description Qu\u00e9bec))", "utterance": "where did the iroquois indians come from?"},
{"url": "http://www.freebase.com/view/en/george_harrison", "targetValue": "(list (description \"Fender Stratocaster\") (description \"Rickenbacker 360/12\"))", "utterance": "what kind of guitar did george harrison use?"},
{"url": "http://www.freebase.com/view/en/navajo_people", "targetValue": "(list (description \"Spanish Language\") (description \"Navajo Language\") (description \"English Language\"))", "utterance": "what language do navajo people speak?"},
{"url": "http://www.freebase.com/view/en/new_england", "targetValue": "(list (description Maine))", "utterance": "what places make up new england?"},
{"url": "http://www.freebase.com/view/en/latin_america", "targetValue": "(list (description Bolivia) (description Honduras) (description Cuba) (description \"El Salvador\") (description Guatemala) (description \"Costa Rica\") (description \"Cuauht\u00e9moc, D.F.\") (description \"Great Pyramid of Tenochtitl\u00e1n\") (description Paraguay) (description Belize))", "utterance": "what are the landlocked countries in latin america?"},
{"url": "http://www.freebase.com/view/en/iraq", "targetValue": "(list (description \"Parliamentary system\") (description Federation) (description Republic) (description \"Federal republic\") (description \"Parliamentary republic\"))", "utterance": "what type of government does iraq have now?"},
{"url": "http://www.freebase.com/view/en/vietnam_war", "targetValue": "(list (description \"South Vietnam\") (description \"North Vietnam\") (description \"Southeast Asia\") (description Cambodia) (description Vietnam) (description Laos))", "utterance": "where was the vietnam war location?"},
{"url": "http://www.freebase.com/view/en/gerald_ford", "targetValue": "(list (description \"Nelson Rockefeller\"))", "utterance": "who did gerald ford select as his vice president when he became president?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description Euro))", "utterance": "what is the currency used in italy?"},
{"url": "http://www.freebase.com/view/en/jamie_little", "targetValue": "(list (description \"Cody Selman\"))", "utterance": "who is jamie little engaged to?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description Cairo))", "utterance": "what is the capital of modern egypt?"},
{"url": "http://www.freebase.com/view/en/ernest_rutherford", "targetValue": "(list (description \"Trinity College, Cambridge\") (description \"Nelson College\") (description \"University of Canterbury\") (description \"University of Cambridge\") (description \"University of New Zealand\"))", "utterance": "what school did sir ernest rutherford go to?"},
{"url": "http://www.freebase.com/view/en/brandon_roy", "targetValue": "(list (description \"Point guard\") (description \"Small forward\") (description \"Shooting guard\"))", "utterance": "what position does brandon roy play?"},
{"url": "http://www.freebase.com/view/en/harvard_university", "targetValue": "(list (description Massachusetts))", "utterance": "where is harvard university?"},
{"url": "http://www.freebase.com/view/en/janelle_corlass_brown", "targetValue": "(list (description Actor))", "utterance": "what does janelle brown work?"},
{"url": "http://www.freebase.com/view/en/laos", "targetValue": "(list (description Cambodia))", "utterance": "where is laos in world map?"},
{"url": "http://www.freebase.com/view/en/tyrese", "targetValue": "(list (description Watts))", "utterance": "where is tyrese gibson from?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description Switzerland) (description Slovenia) (description Austria) (description France))", "utterance": "what countries are near italy?"},
{"url": "http://www.freebase.com/view/en/colorado_river", "targetValue": "(list (description Utah) (description Arizona) (description Nevada) (description California) (description Colorado))", "utterance": "which states does the colorado river run through?"},
{"url": "http://www.freebase.com/view/en/scarlett_johansson", "targetValue": "(list (description \"Justin Timberlake\") (description \"Josh Hartnett\") (description \"Benicio del Toro\") (description \"Jared Leto\") (description \"Derek Jeter\"))", "utterance": "who did scarlett johansson date?"},
{"url": "http://www.freebase.com/view/en/roman_empire", "targetValue": "(list (description Europe) (description \"North Africa\") (description \"Middle East\"))", "utterance": "which continents were part of the roman empire?"},
{"url": "http://www.freebase.com/view/en/elvis_costello", "targetValue": "(list (description Paddington))", "utterance": "where was elvis costello born?"},
{"url": "http://www.freebase.com/view/en/gobi_desert", "targetValue": "(list (description Mongolia))", "utterance": "where are the gobi desert located on a map?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Presidential system\") (description \"Federal republic\") (description \"Representative democracy\") (description \"Two-party system\") (description \"Constitutional republic\") (description Republic))", "utterance": "what type of government does the us follow?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description Europe))", "utterance": "in which continent is germany?"},
{"url": "http://www.freebase.com/view/en/wright_brothers", "targetValue": "(list (description \"1900 Wright Glider\"))", "utterance": "when did the wright brothers created their first plane?"},
{"url": "http://www.freebase.com/view/en/turkey", "targetValue": "(list (description \"Turkish Language\"))", "utterance": "what language turkey people speak?"},
{"url": "http://www.freebase.com/view/en/jeremy_lin", "targetValue": "(list (description \"Houston Rockets\"))", "utterance": "who does jeremy lin play for?"},
{"url": "http://www.freebase.com/view/en/seychelles", "targetValue": "(list (description Africa))", "utterance": "where is the seychelles on world map?"},
{"url": "http://www.freebase.com/view/en/phoenix", "targetValue": "(list (description \"Phoenix should not be contained in Maricopa County.\"))", "utterance": "what is the average temperature in phoenix az in december?"},
{"url": "http://www.freebase.com/view/en/william_morris", "targetValue": "(list (description \"Marlborough College\") (description \"Exeter College, Oxford\") (description \"University of Oxford\"))", "utterance": "where did william morris go to college?"},
{"url": "http://www.freebase.com/view/en/mount_st_helens", "targetValue": "(list (description Washington))", "utterance": "what state is mount st. helens in?"},
{"url": "http://www.freebase.com/view/en/jimmy_savile", "targetValue": "(list (description Presenter))", "utterance": "who is jimmy savile?"},
{"url": "http://www.freebase.com/view/en/seneca_nation", "targetValue": "(list (description \"New York\"))", "utterance": "where were the seneca indians located?"},
{"url": "http://www.freebase.com/view/en/william_howard_taft", "targetValue": "(list (description \"President of the United States\"))", "utterance": "what is william taft known for?"},
{"url": "http://www.freebase.com/view/en/washington_united_states", "targetValue": "(list (description Washington) (description \"Washington, D.C.\"))", "utterance": "what state is washington d.c. located?"},
{"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"John F. Kennedy International Airport\"))", "utterance": "where to exchange euros in new york city?"},
{"url": "http://www.freebase.com/view/en/florida_marlins", "targetValue": "(list (description \"1993 Major League Baseball Season\"))", "utterance": "when did florida marlins join mlb?"},
{"url": "http://www.freebase.com/view/en/spanish", "targetValue": "(list (description Spain))", "utterance": "what countries have spanish as the national language?"},
{"url": "http://www.freebase.com/view/en/phoenix", "targetValue": "(list (description \"Grand Canyon\") (description \"Phoenix Mountain Preserve\") (description \"Phoenix Art Museum\") (description \"Desert Botanical Garden\") (description \"Heard Museum\") (description \"Musical Instrument Museum\") (description \"Arizona Science Center\") (description \"Ro Ho En\") (description \"Mesa Arts Center\") (description \"Pueblo Grande Ruin\"))", "utterance": "what to see in phoenix arizona?"},
{"url": "http://www.freebase.com/view/en/panama", "targetValue": "(list (description \"Panama Canal Zone\"))", "utterance": "what countries does the panama canal go through?"},
{"url": "http://www.freebase.com/view/en/charlie_chaplin", "targetValue": "(list (description Comedian))", "utterance": "what is charlie chaplin famous for?"},
{"url": "http://www.freebase.com/view/en/paul_revere", "targetValue": "(list (description \"Sarah Revere\"))", "utterance": "who did paul revere marry?"},
{"url": "http://www.freebase.com/view/en/fred_durst", "targetValue": "(list (description Musician))", "utterance": "what did fred durst do?"},
{"url": "http://www.freebase.com/view/en/san_diego_chargers", "targetValue": "(list (description \"Frank Summers\"))", "utterance": "who did the chargers draft in 2011?"},
{"url": "http://www.freebase.com/view/en/american_bulldog", "targetValue": "(list (description \"United States of America\"))", "utterance": "where do american bulldogs originate from?"},
{"url": "http://www.freebase.com/view/en/albert_einstein", "targetValue": "(list (description \"School of Mathematics, Institute for Advanced Study\") (description \"Humboldt University of Berlin Department of Physics\"))", "utterance": "what colleges did albert einstein teach at?"},
{"url": "http://www.freebase.com/view/en/brian_griffin", "targetValue": "(list (description \"Seth MacFarlane\"))", "utterance": "who plays the voice of brian on family guy?"},
{"url": "http://www.freebase.com/view/en/steve_mcqueen", "targetValue": "(list (description Yucatan))", "utterance": "what make of bike did steve mcqueen ride in the great escape?"},
{"url": "http://www.freebase.com/view/en/george_w_bush", "targetValue": "(list (description \"New Haven\"))", "utterance": "where did george w bush live as a child?"},
{"url": "http://www.freebase.com/view/en/richard_dawkins", "targetValue": "(list (description \"The Selfish Gene\"))", "utterance": "which dawkins book to read first?"},
{"url": "http://www.freebase.com/view/en/miss_america", "targetValue": "(list (description \"1930 Miss America\"))", "utterance": "what year was the first miss america pageant held?"},
{"url": "http://www.freebase.com/view/en/nikola_tesla", "targetValue": "(list (description \"Tesla coil\"))", "utterance": "what was nikola tesla inventions?"},
{"url": "http://www.freebase.com/view/en/vlaams_language", "targetValue": "(list (description Belgium))", "utterance": "where did flemish people come from?"},
{"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"New York\"))", "utterance": "what state new york city belong to?"},
{"url": "http://www.freebase.com/view/en/bruce_lee", "targetValue": "(list (description \"Cerebral edema\"))", "utterance": "what was the cause of death for bruce lee?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Federal republic\"))", "utterance": "what type of government does usa follow?"},
{"url": "http://www.freebase.com/view/en/england", "targetValue": "(list (description \"UK \u00a3\"))", "utterance": "what type of currency do they use in england?"},
{"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description \"Boston Latin School\"))", "utterance": "where was benjamin franklin educated?"},
{"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description Scotland) (description England) (description Wales) (description \"Northern Ireland\"))", "utterance": "what countries included in the uk?"},
{"url": "http://www.freebase.com/view/en/chinese_language", "targetValue": "(list (description Canada) (description Brunei) (description Singapore) (description Malaysia) (description Sh\u011bn) (description Vietnam) (description China))", "utterance": "what countries in the world speak chinese?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Occidental College\") (description \"Harvard Law School\") (description \"Noelani Elementary School\") (description \"Punahou School\") (description \"State Elementary School Menteng 01\") (description \"St. Francis of Assisi Catholic School\") (description \"Columbia University\"))", "utterance": "where obama went to school?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Standard Mandarin\"))", "utterance": "what is the primary language of china?"},
{"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Alexei Negmatov\"))", "utterance": "who was the soviet leader during world war ii?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description Energy) (description Agriculture))", "utterance": "which of the following does australia export the most?"},
{"url": "http://www.freebase.com/view/en/david_berkowitz", "targetValue": "(list (description \"New York City\"))", "utterance": "where was david berkowitz arrested?"},
{"url": "http://www.freebase.com/view/en/david", "targetValue": "(list (description Bethlehem))", "utterance": "where was the city of david?"},
{"url": "http://www.freebase.com/view/en/cindy_sherman", "targetValue": "(list (description Photographer))", "utterance": "what is cindy sherman known for?"},
{"url": "http://www.freebase.com/view/en/shawnee_smith", "targetValue": "(list (description \"Anger Management\") (description \"The Tom Show\") (description \"Scream Queens\") (description \"Brand New Life\") (description \"30 Days of Night: Dust to Dust\") (description Arsenio) (description Becker) (description \"The Stand\") (description \"All is Forgiven\"))", "utterance": "what tv shows did shawnee smith play in?"},
{"url": "http://www.freebase.com/view/en/aristotle", "targetValue": "(list (description Politics) (description Ethics) (description Aesthetics) (description Metaphysics))", "utterance": "what are aristotle's contributions to science?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"Australian dollar\"))", "utterance": "what does australia use for currency?"},
{"url": "http://www.freebase.com/view/en/rome", "targetValue": "(list (description \"Ciampino \u2013 G.B. Pastine International Airport\") (description \"Roma Termini railway station\") (description \"Civitavecchia Ferry Terminal\") (description \"Leonardo da Vinci\u2013Fiumicino Airport\"))", "utterance": "which airport to fly into rome?"},
{"url": "http://www.freebase.com/view/en/kansas_city", "targetValue": "(list (description \"Kemper Arena\") (description \"Starlight Theatre\") (description \"Kauffman Stadium\") (description \"Municipal Stadium\") (description \"Ward Parkway Center\") (description \"Arrowhead Stadium\") (description \"Blue Ridge Mall\") (description \"Blue Ridge Crossing\") (description \"Crown Center\") (description \"TWA Corporate Headquarters' Building\"))", "utterance": "what is there to do for fun in kansas city?"},
{"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description Atlanta))", "utterance": "where was martin luther king jr raised?"},
{"url": "http://www.freebase.com/view/en/lebron_james", "targetValue": "(list (description \"2003\u201304 NBA season\"))", "utterance": "what year was lebron james rookie season?"},
{"url": "http://www.freebase.com/view/en/delaware_river", "targetValue": "(list (description \"West Branch Delaware River\") (description \"Mount Jefferson\"))", "utterance": "where does delaware river start?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Constitutional monarchy\"))", "utterance": "what kind of monarchy does japan have?"},
{"url": "http://www.freebase.com/view/en/mitt_romney", "targetValue": "(list (description \"Bloomfield Hills\"))", "utterance": "where did mitt romney's parents come from?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Hiroshima Prefecture\"))", "utterance": "what places in japan were bombed?"},
{"url": "http://www.freebase.com/view/en/michael_jordan", "targetValue": "(list (description \"2001\u201302 NBA season\"))", "utterance": "when did michael jordan return to the nba?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Socialist state\"))", "utterance": "what type of economy exists in china?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Egyptian pound\"))", "utterance": "what is the currency in egypt 2012?"},
{"url": "http://www.freebase.com/view/en/san_rafael", "targetValue": "(list (description California))", "utterance": "where was mission san rafael located?"},
{"url": "http://www.freebase.com/view/en/esther", "targetValue": "(list (description Susa))", "utterance": "who was esther's husband?"},
{"url": "http://www.freebase.com/view/en/claire_danes", "targetValue": "(list (description \"Hugh Dancy\"))", "utterance": "who's dating claire danes?"},
{"url": "http://www.freebase.com/view/en/st_paul_virginia", "targetValue": "(list (description \"United States of America\") (description \"Wise County\") (description \"Russell County\") (description Virginia))", "utterance": "what county is st paul va in?"},
{"url": "http://www.freebase.com/view/en/florida", "targetValue": "(list (description \"Orange juice\"))", "utterance": "what produce does florida export?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Japan national football team\") (description \"Japan women's national handball team\") (description \"Japan men's national volleyball team\") (description \"Japan national handball team\") (description \"Japan women's national volleyball team\") (description \"Japan national baseball team\"))", "utterance": "what type of sports do japanese play?"},
{"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description Ukraine) (description Belarus) (description Kazakhstan) (description Poland) (description Lithuania) (description Azerbaijan) (description Mongolia) (description \"North Korea\") (description Georgia) (description Norway))", "utterance": "which countries share a border with russia?"},
{"url": "http://www.freebase.com/view/en/kf_drita", "targetValue": "(list (description \"Football Superleague of Kosovo\"))", "utterance": "what did drita find out?"},
{"url": "http://www.freebase.com/view/en/latin", "targetValue": "(list (description \"Italic languages\") (description \"Indo-European languages\"))", "utterance": "where did the latin language originate from?"},
{"url": "http://www.freebase.com/view/en/maya_civilization", "targetValue": "(list (description 2012))", "utterance": "when does the mayan calendar end exactly?"},
{"url": "http://www.freebase.com/view/en/karl_benz", "targetValue": "(list (description \"Karlsruhe Institute of Technology\") (description \"University of Karlsruhe\"))", "utterance": "what school did karl benz go to?"},
{"url": "http://www.freebase.com/view/en/carmen_electra", "targetValue": "(list (description \"The Mating Habits of the Earthbound Human\") (description \"Scary Movie\") (description \"Getting Played\") (description \"Cheaper by the Dozen 2\") (description \"Meet the Spartans\") (description \"I Want Candy\") (description \"Full of It\") (description \"The Chosen One: Legend of the Raven\") (description \"Scary Movie 4\") (description \"Dirty Love\"))", "utterance": "what movies has carmen electra been in?"},
{"url": "http://www.freebase.com/view/en/jew", "targetValue": "(list (description \"Yiddish Language\"))", "utterance": "when does jewish new year start?"},
{"url": "http://www.freebase.com/view/en/world_war_ii", "targetValue": "(list (description 1942))", "utterance": "when do world war ii end?"},
{"url": "http://www.freebase.com/view/en/christian", "targetValue": "(list (description \"Greek Evangelical Church\") (description \"The Church of Nails\"))", "utterance": "what do christians believe about heaven hell and purgatory?"},
{"url": "http://www.freebase.com/view/en/morgan_freeman", "targetValue": "(list (description \"Jackson State University\") (description \"Los Angeles City College\"))", "utterance": "where did morgan freeman graduate?"},
{"url": "http://www.freebase.com/view/en/elizabeth_i_of_england", "targetValue": "(list (description \"queen elizabeth i of england she executed mary queen of scots\"))", "utterance": "who did queen elizabeth 1 executed?"},
{"url": "http://www.freebase.com/view/en/arabic_language", "targetValue": "(list (description \"Saudi Arabia\"))", "utterance": "where is arabic most spoken?"},
{"url": "http://www.freebase.com/view/en/carolus_linnaeus", "targetValue": "(list (description Botanist))", "utterance": "who was carolus linnaeus?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description \"Constitutional republic\") (description \"Multi-party system\") (description \"Federal republic\") (description Democracy) (description \"Parliamentary republic\"))", "utterance": "what type of government does germany have now?"},
{"url": "http://www.freebase.com/view/en/libya", "targetValue": "(list (description \"Provisional government\") (description \"Parliamentary republic\"))", "utterance": "what kind of government does libya have today?"},
{"url": "http://www.freebase.com/view/en/anaheim", "targetValue": "(list (description \"Pacific Time Zone\"))", "utterance": "what time zone is anaheim california?"},
{"url": "http://www.freebase.com/view/en/baltimore_orioles", "targetValue": "(list (description \"1983 World Series\") (description \"1966 World Series\") (description \"1970 World Series\"))", "utterance": "what year did the orioles go to the world series?"},
{"url": "http://www.freebase.com/view/en/zhao_xin", "targetValue": "(list (description Male))", "utterance": "what would ap xin zhao do?"},
{"url": "http://www.freebase.com/view/en/francis_bacon", "targetValue": "(list (description Philosopher))", "utterance": "who is sir francis bacon?"},
{"url": "http://www.freebase.com/view/en/amelia_earhart", "targetValue": "(list (description Writer) (description Pilot))", "utterance": "what were amelia earhart's achievements?"},
{"url": "http://www.freebase.com/view/en/dallas_cowboys", "targetValue": "(list (description Blue) (description \"Royal blue\") (description White) (description Silver) (description \"Navy Blue\"))", "utterance": "what are the official colors of the dallas cowboys?"},
{"url": "http://www.freebase.com/view/en/margaret_hoover", "targetValue": "(list (description \"Davidson College\"))", "utterance": "where did margaret hoover go to college?"},
{"url": "http://www.freebase.com/view/en/jamie_oliver", "targetValue": "(list (description \"Petal Blossom Rainbow Oliver\") (description \"Poppy Honey Rosie Oliver\") (description \"Daisy Boo Pamela Oliver\") (description \"Buddy Bear Maurice Oliver\"))", "utterance": "what is jamie oliver children names?"},
{"url": "http://www.freebase.com/view/en/bradley_walsh", "targetValue": "(list (description England))", "utterance": "where does bradley walsh live?"},
{"url": "http://www.freebase.com/view/en/fc_internazionale_milano", "targetValue": "(list (description \"Andrea Stramaccioni\"))", "utterance": "who is the head coach of inter milan?"},
{"url": "http://www.freebase.com/view/en/river_shannon", "targetValue": "(list (description \"Shannon Pot\"))", "utterance": "where does the shannon river start and end?"},
{"url": "http://www.freebase.com/view/en/reese_witherspoon", "targetValue": "(list (description \"Ryan Phillippe\"))", "utterance": "who did reese witherspoon get married to?"},
{"url": "http://www.freebase.com/view/en/dutch_people", "targetValue": "(list (description Europeans))", "utterance": "where did dutch language come from?"},
{"url": "http://www.freebase.com/view/en/costa_rica", "targetValue": "(list (description \"Costa Rican col\u00f3n\"))", "utterance": "what kind of money should i take to costa rica?"},
{"url": "http://www.freebase.com/view/en/ultimate_fighting_championship", "targetValue": "(list (description \"Las Vegas\"))", "utterance": "where is the ufc headquarters?"},
{"url": "http://www.freebase.com/view/en/james_t_kirk", "targetValue": "(list (description \"William Shatner\"))", "utterance": "who plays captain kirk in star trek?"},
{"url": "http://www.freebase.com/view/en/albert_pujols", "targetValue": "(list (description \"Los Angeles Angels of Anaheim\"))", "utterance": "who does albert pujols play for 2012?"},
{"url": "http://www.freebase.com/view/en/sweden", "targetValue": "(list (description \"Representative democracy\") (description \"Unitary state\") (description \"Parliamentary system\") (description \"Constitutional monarchy\") (description \"Hereditary monarchy\") (description \"Multi-party system\"))", "utterance": "what kind of government is sweden?"},
{"url": "http://www.freebase.com/view/en/george_jones", "targetValue": "(list (description Saratoga))", "utterance": "where was country singer george jones born?"},
{"url": "http://www.freebase.com/view/en/william_shakespeare", "targetValue": "(list (description Poet) (description Playwright) (description Dramatist) (description Lyricist) (description Author))", "utterance": "what did shakespeare become famous for?"},
{"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description Uzbekistan))", "utterance": "where does russia import from?"},
{"url": "http://www.freebase.com/view/en/switzerland", "targetValue": "(list (description \"Swiss franc\"))", "utterance": "what is the money of switzerland called?"},
{"url": "http://www.freebase.com/view/en/grand_canyon", "targetValue": "(list (description \"Grand Canyon National Park Superintendent's Residence\") (description \"Grand Canyon South Rim Ranger's Dormitory\") (description \"Grand Canyon Village Historic District\") (description \"Grand Canyon North Rim Headquarters\") (description \"Grandview Mine\") (description \"Grand Canyon Water Reclamation Plant\") (description \"Buckey O'Neill Cabin\") (description \"El Tovar Hotel\") (description \"Grand Canyon Depot\"))", "utterance": "what to see near grand canyon?"},
{"url": "http://www.freebase.com/view/en/jew", "targetValue": "(list (description \"Yiddish Language\"))", "utterance": "when did the jews stop making animal sacrifices?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description Lojban) (description \"Esperanto Language\") (description \"English Language\"))", "utterance": "what do people in australia speak?"},
{"url": "http://www.freebase.com/view/en/ian_somerhalder", "targetValue": "(list (description Smallville) (description \"The Vampire Diaries\") (description Lost) (description \"Tell Me You Love Me\") (description Fearless) (description \"Young Americans\"))", "utterance": "what has ian somerhalder acted in?"},
{"url": "http://www.freebase.com/view/en/ron_howard", "targetValue": "(list (description \"How the Grinch Stole Christmas!\"))", "utterance": "what movies did ron howard director?"},
{"url": "http://www.freebase.com/view/en/alexander_hamilton", "targetValue": "(list (description Financier))", "utterance": "what role did alexander hamilton play in the constitution?"},
{"url": "http://www.freebase.com/view/en/shakira", "targetValue": "(list (description \"Gerard Piqu\u00e9\"))", "utterance": "who is shakira married to?"},
{"url": "http://www.freebase.com/view/en/gerald_ford", "targetValue": "(list (description \"Cardiovascular disease\"))", "utterance": "what did gerald r ford die from?"},
{"url": "http://www.freebase.com/view/en/turkey", "targetValue": "(list (description Europe) (description Eurasia) (description Asia))", "utterance": "what two continents is turkey on?"},
{"url": "http://www.freebase.com/view/en/kevin_love_1988", "targetValue": "(list (description \"University of California, Los Angeles\"))", "utterance": "where did kevin love go to college?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description \"Parliamentary republic\"))", "utterance": "what type of government was formed when italy unified?"},
{"url": "http://www.freebase.com/view/en/egyptians", "targetValue": "(list (description \"Egyptian Arabic\"))", "utterance": "what was the ancient egyptians spoken language?"},
{"url": "http://www.freebase.com/view/en/karnak", "targetValue": "(list (description Egypt) (description \"Luxor Governorate\"))", "utterance": "where was the temple of karnak built?"},
{"url": "http://www.freebase.com/view/en/louisiana", "targetValue": "(list (description \"Mary Landrieu\"))", "utterance": "who is the senior senator of louisiana?"},
{"url": "http://www.freebase.com/view/en/morgan_freeman", "targetValue": "(list (description \"10 Items or Less\") (description \"Batman Begins\") (description \"All About Us\") (description \"A Raisin in the Sun\") (description \"Bruce Almighty\") (description Amistad) (description Brubaker) (description \"An Unfinished Life\") (description \"A Man Called Adam\") (description \"Along Came a Spider\"))", "utterance": "what movies did morgan freeman star in?"},
{"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"william averell harriman appointed by john fitzgerald kennedy\"))", "utterance": "who did john kennedy have affairs with?"},
{"url": "http://www.freebase.com/view/en/cuba", "targetValue": "(list (description \"Cuban peso\"))", "utterance": "what type of money to take to cuba?"},
{"url": "http://www.freebase.com/view/en/morocco", "targetValue": "(list (description \"Moroccan dirham\"))", "utterance": "what currency should you take to morocco?"},
{"url": "http://www.freebase.com/view/en/mary_mcleod_bethune", "targetValue": "(list (description Educator))", "utterance": "who is mary mcleod bethune for kids?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Japanese yen\"))", "utterance": "what do they call money in japan?"},
{"url": "http://www.freebase.com/view/en/mother_teresa", "targetValue": "(list (description India))", "utterance": "what nationality is mother teresa?"},
{"url": "http://www.freebase.com/view/en/richard_pryor", "targetValue": "(list (description \"Franklin Pryor\") (description \"Steven Pryor\") (description \"Richard Pryor Jr.\") (description \"Rain Pryor\") (description \"Kelsey Pryor\") (description \"Elizabeth Pryor\") (description \"Renee Pryor\"))", "utterance": "who is richard pryor son?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Perejil Island\") (description Portugal) (description France) (description Andorra) (description Morocco) (description Gibraltar))", "utterance": "what countries share borders with spain?"},
{"url": "http://www.freebase.com/view/en/english", "targetValue": "(list (description Canada) (description Australia) (description \"Kingdom of Great Britain\") (description \"United States of America\") (description \"United Kingdom\") (description Ireland) (description \"New Zealand\"))", "utterance": "what countries have english as their official language?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"United Nations\") (description \"G-20 major economies\") (description \"Caribbean Development Bank\") (description \"Asian Development Bank\") (description \"Shanghai Cooperation Organisation\") (description \"African Development Bank\") (description \"World Bank\") (description \"Asia-Pacific Economic Cooperation\"))", "utterance": "what international organizations is china part of?"},
{"url": "http://www.freebase.com/view/en/west_st_paul", "targetValue": "(list (description \"Dakota County\"))", "utterance": "what county is west st paul in?"},
{"url": "http://www.freebase.com/view/en/magic_johnson", "targetValue": "(list (description \"Michigan State University\"))", "utterance": "what college did magic johnson play for?"},
{"url": "http://www.freebase.com/view/en/donnie_wahlberg", "targetValue": "(list (description \"Vincent Grey\"))", "utterance": "who does donnie wahlberg play in the sixth sense?"},
{"url": "http://www.freebase.com/view/en/charles_de_secondat_baron_de_montesquieu", "targetValue": "(list (description \"charles-louis de secondat montesquieu influenced edward gibbon\"))", "utterance": "what did baron de montesquie influence?"},
{"url": "http://www.freebase.com/view/en/australian_people", "targetValue": "(list (description \"Waleed Aly\"))", "utterance": "what do australians call bigfoot?"},
{"url": "http://www.freebase.com/view/en/carlos_boozer", "targetValue": "(list (description \"Utah Jazz\") (description \"Cleveland Cavaliers\"))", "utterance": "who did carlos boozer play for?"},
{"url": "http://www.freebase.com/view/en/indonesia", "targetValue": "(list (description Australia) (description \"East Malaysia\"))", "utterance": "what countries share a land border with indonesia?"},
{"url": "http://www.freebase.com/view/en/portland_press_herald", "targetValue": "(list (description \"Blethen Maine Newspapers, Inc.\"))", "utterance": "who owns the portland press herald?"},
{"url": "http://www.freebase.com/view/en/albert_speer", "targetValue": "(list (description \"Deutsches Stadion\") (description Volkshalle) (description \"Reich Chancellery\") (description \"Olympic Stadium\"))", "utterance": "what did albert speer design?"},
{"url": "http://www.freebase.com/view/en/jordan_palmer_1984", "targetValue": "(list (description \"Jacksonville Jaguars\"))", "utterance": "who does jordan palmer play for?"},
{"url": "http://www.freebase.com/view/en/leonardo_da_vinci", "targetValue": "(list (description \"High Renaissance\"))", "utterance": "what art movement did leonardo da vinci belong to?"},
{"url": "http://www.freebase.com/view/en/american_people_of_the_united_states", "targetValue": "(list (description \"Tom Selleck\"))", "utterance": "what time does american horror story air?"},
{"url": "http://www.freebase.com/view/en/arlington_texas", "targetValue": "(list (description \"Arlington Municipal Airport\"))", "utterance": "what airport is near arlington tx?"},
{"url": "http://www.freebase.com/view/en/vasco_da_gama", "targetValue": "(list (description Portugal))", "utterance": "who did vasco de gama explore for?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Presidential system\") (description \"Federal republic\") (description \"Representative democracy\") (description \"Two-party system\") (description \"Constitutional republic\") (description Republic))", "utterance": "what type of government does the us constitution set up?"},
{"url": "http://www.freebase.com/view/en/emile_heskey", "targetValue": "(list (description \"Newcastle Jets FC\"))", "utterance": "what team does heskey play for?"},
{"url": "http://www.freebase.com/view/en/hirohito", "targetValue": "(list (description Japan))", "utterance": "where did emperor hirohito live?"},
{"url": "http://www.freebase.com/view/en/vienna", "targetValue": "(list (description \"Belvedere, Vienna\") (description \"Hofburg Palace\") (description Prater) (description \"St. Peter's Church\") (description \"St. Stephen's Cathedral, Vienna\") (description \"Sch\u00f6nbrunn Palace\") (description \"Jesuit Church, Vienna\") (description \"Karlskirche, Vienna\") (description \"Rathaus, Vienna\") (description \"Minoritenkirche, Vienna\"))", "utterance": "what to do and see in vienna austria?"},
{"url": "http://www.freebase.com/view/en/ireland", "targetValue": "(list (description \"Viking invasion of Ireland\"))", "utterance": "when did conflict start in ireland?"},
{"url": "http://www.freebase.com/view/en/minneapolis_lakers", "targetValue": "(list (description 2000))", "utterance": "when did the lakers 3 peat?"},
{"url": "http://www.freebase.com/view/en/catholicism", "targetValue": "(list (description \"Book of Nehemiah\") (description \"The Bible\") (description \"New Testament\") (description \"Old Testament\"))", "utterance": "what bible do catholics follow?"},
{"url": "http://www.freebase.com/view/en/peoria", "targetValue": "(list (description \"Peoria Zoo\") (description \"Judge Flanagan Residence\") (description \"George L. Luthy Memorial Botanical Garden\") (description \"Lakeview Museum of Arts and Sciences\") (description \"WeaverRidge Golf Club\") (description \"Heart of Illinois Fair\") (description \"Wildlife Prairie State Park\") (description \"Par-A-Dice Hotel and Casino\") (description \"Peoria Civic Center\") (description \"O'Brien Field\"))", "utterance": "what is there to do in peoria illinois?"},
{"url": "http://www.freebase.com/view/en/briton", "targetValue": "(list (description \"Scottish Gaelic language\") (description \"Scots Language\") (description \"Cornish Language\") (description Irish) (description \"English Language\") (description \"Welsh Language\") (description Guern\u00e9siais) (description \"Ulster Scots dialects\") (description J\u00e8rriais) (description \"Manx Language\"))", "utterance": "what language do british speak?"},
{"url": "http://www.freebase.com/view/en/elvis_presley", "targetValue": "(list (description Singer))", "utterance": "what makes elvis presley famous?"},
{"url": "http://www.freebase.com/view/en/d_carter", "targetValue": "(list (description \"Mcmain Magnet Secondary School\"))", "utterance": "what high school did lil wayne graduate from?"},
{"url": "http://www.freebase.com/view/en/washington_redskins", "targetValue": "(list (description \"Rex Grossman\"))", "utterance": "who is washington redskins backup qb?"},
{"url": "http://www.freebase.com/view/en/netherlands", "targetValue": "(list (description \"Frisian languages\") (description \"West Flemish\") (description \"Dutch Language\"))", "utterance": "what language do people speak in the netherlands?"},
{"url": "http://www.freebase.com/view/en/greece", "targetValue": "(list (description \"Albanian language\") (description \"Greek Language\"))", "utterance": "what are the major languages spoken in greece?"},
{"url": "http://www.freebase.com/view/en/john_willams", "targetValue": "(list (description \"A.I. Artificial Intelligence\") (description Always) (description \"Catch Me If You Can\") (description 1941) (description Daddy-O) (description Amistad) (description \"Close Encounters of the Third Kind\") (description \"E.T. the Extra-Terrestrial\") (description \"Empire of the Sun\") (description Earthquake))", "utterance": "what movies has john williams score?"},
{"url": "http://www.freebase.com/view/en/richardson", "targetValue": "(list (description \"Wizard's Sports Cafe\"))", "utterance": "what to do in richardson dallas?"},
{"url": "http://www.freebase.com/view/en/henri_matisse", "targetValue": "(list (description Sculpture) (description Printmaking) (description Collage) (description Painting) (description Drawing))", "utterance": "what type of artist is henri matisse?"},
{"url": "http://www.freebase.com/view/en/charles_dickens", "targetValue": "(list (description \"Oliver Twist\"))", "utterance": "what was the first book charles dickens wrote?"},
{"url": "http://www.freebase.com/view/en/agatha_christie", "targetValue": "(list (description \"And Then There Were None\") (description \"Le Grand alibi\") (description \"Ten Little Indians\") (description \"Appointment with Death\") (description \"Desyat Negrityat\") (description \"The Man in the Brown Suit\") (description \"Witness for the Prosecution\"))", "utterance": "what books did agatha christie wrote?"},
{"url": "http://www.freebase.com/view/en/michael_jordan", "targetValue": "(list (description \"University of North Carolina at Chapel Hill\") (description \"Emsley A. Laney High School\"))", "utterance": "what school did michael jordan attend?"},
{"url": "http://www.freebase.com/view/en/continental_congress", "targetValue": "(list (description \"Second Continental Congress\"))", "utterance": "which continental congress approve the declaration of independence?"},
{"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description \"Hitler and His Generals: Military Conferences 1942-1945\"))", "utterance": "what year does hitler die?"},
{"url": "http://www.freebase.com/view/en/mount_st_helens", "targetValue": "(list (description \"Skamania County\"))", "utterance": "where is mount st helens volcano?"},
{"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"Flight of the Conchords\") (description \"The Stand\"))", "utterance": "what shows are shot in new york?"},
{"url": "http://www.freebase.com/view/en/tupac_shakur", "targetValue": "(list (description \"The Rose That Grew from Concrete\"))", "utterance": "what book did tupac write?"},
{"url": "http://www.freebase.com/view/en/chinese_language", "targetValue": "(list (description \"Traditional Chinese characters\") (description Chinese) (description \"Simplified Chinese character\") (description \"'Phags-pa script\") (description \"N\u00fcshu script\") (description \"Chinese characters\"))", "utterance": "what language do chinese people write in?"},
{"url": "http://www.freebase.com/view/en/robert_burns", "targetValue": "(list (description Poet))", "utterance": "what was robert burns famous for?"},
{"url": "http://www.freebase.com/view/en/william_mckinley", "targetValue": "(list (description 9/14/1901))", "utterance": "when did william mckinley died?"},
{"url": "http://www.freebase.com/view/en/lake_merritt", "targetValue": "(list (description Oakland))", "utterance": "how deep is lake merritt oakland?"},
{"url": "http://www.freebase.com/view/en/indiana", "targetValue": "(list (description \"Mitch Daniels\"))", "utterance": "who is the next governor of indiana?"},
{"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description \"Eid al-Fitr\") (description Ramadan) (description \"Eid al-Adha\"))", "utterance": "what are the important holidays of islam?"},
{"url": "http://www.freebase.com/view/en/claude_debussy", "targetValue": "(list (description Ballet) (description \"French opera\") (description \"Art song\") (description \"Incidental music\") (description \"Classical music\") (description \"20th-century classical music\"))", "utterance": "what type of music did claude debussy play?"},
{"url": "http://www.freebase.com/view/en/toronto_maple_leafs", "targetValue": "(list (description \"1967 Stanley Cup Finals\"))", "utterance": "when was the last time the toronto maple leafs were in the stanley cup finals?"},
{"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Russian ruble\"))", "utterance": "what currency does russia use 2012?"},
{"url": "http://www.freebase.com/view/en/hank_baskett", "targetValue": "(list (description \"Philadelphia Eagles\"))", "utterance": "what team is hank baskett on 2010?"},
{"url": "http://www.freebase.com/view/en/paraguay", "targetValue": "(list (description \"Paraguayan Guaran\u00ed\") (description \"Spanish Language\"))", "utterance": "what are the two official languages of paraguay?"},
{"url": "http://www.freebase.com/view/en/hammurabi", "targetValue": "(list (description Monarch))", "utterance": "who is hammurabi and what did he do?"},
{"url": "http://www.freebase.com/view/en/pittsburgh_steelers", "targetValue": "(list (description Pittsburgh))", "utterance": "what state is the steelers from?"},
{"url": "http://www.freebase.com/view/en/isaac_newton", "targetValue": "(list (description \"The King's School, Grantham\") (description \"Trinity College, Cambridge\"))", "utterance": "what college did sir isaac newton go to?"},
{"url": "http://www.freebase.com/view/en/harvard_university", "targetValue": "(list (description Crimson))", "utterance": "what are the school colors for harvard university?"},
{"url": "http://www.freebase.com/view/en/university_of_the_rockies", "targetValue": "(list (description \"United States of America\") (description Colorado) (description \"Colorado Springs\"))", "utterance": "where is the university of the rockies located?"},
{"url": "http://www.freebase.com/view/en/robin_roberts", "targetValue": "(list (description \"Breast cancer\"))", "utterance": "what disease does robin roberts have?"},
{"url": "http://www.freebase.com/view/en/byzantine_empire", "targetValue": "(list (description Constantinople))", "utterance": "what was the capital city of the east roman empire?"},
{"url": "http://www.freebase.com/view/en/edward_scissorhands", "targetValue": "(list (description \"Johnny Depp\"))", "utterance": "who plays edward scissorhands?"},
{"url": "http://www.freebase.com/view/en/joey_jordison", "targetValue": "(list (description Drums))", "utterance": "what does joey jordison play in slipknot?"},
{"url": "http://www.freebase.com/view/en/turkey", "targetValue": "(list (description \"Turkish Language\"))", "utterance": "what kind of language does turkey speak?"},
{"url": "http://www.freebase.com/view/en/lebron_james", "targetValue": "(list (description \"Cleveland Cavaliers\"))", "utterance": "what was lebron james first team?"},
{"url": "http://www.freebase.com/view/en/battle_of_gettysburg", "targetValue": "(list (description \"Confederate States of America\") (description \"United States of America\"))", "utterance": "who fought the battle of gettysburg?"},
{"url": "http://www.freebase.com/view/en/san_francisco_giants", "targetValue": "(list (description \"Tim Flannery\"))", "utterance": "who is the coach of the sf giants?"},
{"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description \"World Bank, World Development Indicators, Life Expectancy\"))", "utterance": "where can you go on eco holidays in the uk?"},
{"url": "http://www.freebase.com/view/en/american_football_league", "targetValue": "(list (description \"Bud Adams\") (description \"Lamar Hunt\"))", "utterance": "who was the first president of the afl?"},
{"url": "http://www.freebase.com/view/en/giuliana_depandi", "targetValue": "(list (description Naples))", "utterance": "where did giuliana rancic grow up?"},
{"url": "http://www.freebase.com/view/en/ukraine", "targetValue": "(list (description Kiev))", "utterance": "what are the major cities in ukraine?"},
{"url": "http://www.freebase.com/view/en/michael_bay", "targetValue": "(list (description \"Crossroads School\") (description \"Pasadena's Art Center College of Design\") (description \"Wesleyan University\") (description \"Art Center College of Design\"))", "utterance": "which university did michael bay graduated from?"},
{"url": "http://www.freebase.com/view/en/victoria_of_the_united_kingdom", "targetValue": "(list (description \"I am every day more convinced that we women, if we are to be good women, feminine and amiable and domestic, are not fitted to reign; at least it is they that drive themselves to the work which it entails.\"))", "utterance": "what did queen victoria say about the suffragettes?"},
{"url": "http://www.freebase.com/view/en/anthony_of_padua", "targetValue": "(list (description Padua))", "utterance": "what is st anthony patron saint of?"},
{"url": "http://www.freebase.com/view/en/brian_dawkins", "targetValue": "(list (description \"Denver Broncos\"))", "utterance": "who does brian dawkins play for 2011?"},
{"url": "http://www.freebase.com/view/en/tupac_shakur", "targetValue": "(list (description \"Nothing but Trouble\"))", "utterance": "what movies did tupac star in?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description Renminbi))", "utterance": "what form of currency does china have?"},
{"url": "http://www.freebase.com/view/en/kenneth_parcell", "targetValue": "(list (description \"Jack McBrayer\"))", "utterance": "who plays kenneth?"},
{"url": "http://www.freebase.com/view/en/indianapolis_colts", "targetValue": "(list (description \"AFC South\"))", "utterance": "what league are the indianapolis colts in?"},
{"url": "http://www.freebase.com/view/en/ferdinand_magellan", "targetValue": "(list (description Portugal))", "utterance": "what country did magellan represent?"},
{"url": "http://www.freebase.com/view/en/perpignan", "targetValue": "(list (description France))", "utterance": "where is perpignan located?"},
{"url": "http://www.freebase.com/view/en/kim_richards", "targetValue": "(list (description \"Greg Davis\") (description \"John Jackson\") (description \"G. Monty Brinson\"))", "utterance": "who did kim richards marry?"},
{"url": "http://www.freebase.com/view/en/bosnia_and_herzegovina", "targetValue": "(list (description \"Yugoslav Wars\") (description \"Operation Tiger\") (description \"Croat\u2013Bosniak War\") (description \"Operation Deny Flight\") (description \"Operation Summer '95\") (description \"Operation Sana\") (description \"Bosnian War\") (description \"Operation Mistral\") (description \"Battle of the Bosnian Highlands\") (description \"NATO intervention in Bosnia and Herzegovina\"))", "utterance": "what happened in bosnia in the 90s?"},
{"url": "http://www.freebase.com/view/en/pittsburgh_steelers", "targetValue": "(list (description \"Super Bowl XLIII\"))", "utterance": "when's the last time the steelers won the superbowl?"},
{"url": "http://www.freebase.com/view/en/desmond_tutu", "targetValue": "(list (description \"South Africa\"))", "utterance": "where does archbishop desmond tutu live?"},
{"url": "http://www.freebase.com/view/en/english", "targetValue": "(list (description Canada) (description Australia) (description \"South Africa\") (description Zambia) (description \"United Kingdom\") (description Zimbabwe) (description Uganda) (description \"New Zealand\") (description \"Turks and Caicos Islands\") (description Tanzania))", "utterance": "where english is spoken?"},
{"url": "http://www.freebase.com/view/en/giza", "targetValue": "(list (description Egypt) (description \"Giza Governorate\"))", "utterance": "where is giza pyramids located?"},
{"url": "http://www.freebase.com/view/en/midland", "targetValue": "(list (description 79702) (description 79710) (description 79708) (description 79706) (description 79707) (description 79704) (description 79705) (description 79711) (description 79703) (description 79701))", "utterance": "what is the zip code for midland tx?"},
{"url": "http://www.freebase.com/view/en/midwestern_united_states", "targetValue": "(list (description Wisconsin) (description \"North Dakota\") (description Kansas) (description \"Council Grove\") (description Nebraska) (description Indiana) (description Ohio))", "utterance": "what states make up the midwest us?"},
{"url": "http://www.freebase.com/view/en/florida_marlins", "targetValue": "(list (description \"University of Florida\"))", "utterance": "where do the florida marlins play spring training?"},
{"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description guitar) (description Piano) (description trumpet) (description Drums))", "utterance": "what instruments does justin bieber use?"},
{"url": "http://www.freebase.com/view/en/australian_people", "targetValue": "(list (description \"Greek Language\") (description \"English Language\") (description \"Italian Language\") (description \"Chinese language\"))", "utterance": "what language does australians speak?"},
{"url": "http://www.freebase.com/view/en/annie_oakley", "targetValue": "(list (description \"Frank E. Butler\"))", "utterance": "who did annie oakley married?"},
{"url": "http://www.freebase.com/view/en/lex_luthor", "targetValue": "(list (description \"Anthony LaPaglia\") (description \"Kevin Spacey\") (description \"Clancy Brown\") (description \"James Marsters\") (description \"Gene Hackman\"))", "utterance": "who has played lex luthor?"},
{"url": "http://www.freebase.com/view/en/zambezi", "targetValue": "(list (description Mwinilunga))", "utterance": "where does the zambezi river start?"},
{"url": "http://www.freebase.com/view/en/tim_tebow", "targetValue": "(list (description \"New York Jets\"))", "utterance": "where will tebow go in 2013?"},
{"url": "http://www.freebase.com/view/en/nigeria", "targetValue": "(list (description \"West Africa Time\") (description UTC+01:00))", "utterance": "what is the nigeria time?"},
{"url": "http://www.freebase.com/view/en/jenni_rivera", "targetValue": "(list (description \"Iturbide, Nuevo Le\u00f3n\"))", "utterance": "where did they find jenni rivera's body?"},
{"url": "http://www.freebase.com/view/en/mitt_romney", "targetValue": "(list (description \"Stanford University\") (description \"Cranbrook Schools\") (description \"Harvard Law School\") (description \"Harvard Business School\") (description \"Harvard University\") (description \"Brigham Young University\"))", "utterance": "what university did romney graduated from?"},
{"url": "http://www.freebase.com/view/en/south_dakota", "targetValue": "(list (description \"Mountain Time Zone\") (description \"Central Time Zone\") (description UTC\u221207:00) (description UTC\u221206:00))", "utterance": "where is the time zone line in south dakota?"},
{"url": "http://www.freebase.com/view/en/jason_mraz", "targetValue": "(list (description Mechanicsville))", "utterance": "where is jason mraz from?"},
{"url": "http://www.freebase.com/view/en/john_bonham", "targetValue": "(list (description \"Inhalation of vomit\"))", "utterance": "what killed john bonham?"},
{"url": "http://www.freebase.com/view/en/wal-mart", "targetValue": "(list (description \"Department Stores\") (description Retail) (description \"Variety Stores\"))", "utterance": "what industry does walmart operate in?"},
{"url": "http://www.freebase.com/view/en/texarkana_arkansas", "targetValue": "(list (description \"Miller County\"))", "utterance": "what county is texarkana arkansas in?"},
{"url": "http://www.freebase.com/view/en/chris_paul", "targetValue": "(list (description \"Los Angeles Clippers\"))", "utterance": "what team was chris paul on?"},
{"url": "http://www.freebase.com/view/en/slovakia", "targetValue": "(list (description Czechoslovakia))", "utterance": "what country was slovakia?"},
{"url": "http://www.freebase.com/view/en/ludwig_van_beethoven", "targetValue": "(list (description Opera) (description \"Classical music\"))", "utterance": "what music period did beethoven live in?"},
{"url": "http://www.freebase.com/view/en/laura_ingalls_wilder", "targetValue": "(list (description \"On the Banks of Plum Creek\") (description \"The Long Winter\") (description \"Farmer Boy\") (description \"Little House in the Big Woods\") (description \"West from Home\") (description \"These Happy Golden Years\") (description \"The First Four Years\") (description \"Little Town on the Prairie\") (description \"By the Shores of Silver Lake\") (description \"On the Way Home\"))", "utterance": "what did laura ingalls wilder wrote?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description \"Constitutional republic\") (description \"Parliamentary republic\") (description \"Unitary state\"))", "utterance": "what type of government system does italy have?"},
{"url": "http://www.freebase.com/view/en/john_irving", "targetValue": "(list (description \"Trying to Save Piggy Sneed\") (description \"The Fourth Hand\") (description \"The Cider House Rules\") (description \"The 158-Pound Marriage\") (description \"The World According to Garp\") (description \"The Hotel New Hampshire\") (description \"A Widow for One Year\") (description \"A Prayer for Owen Meany\") (description \"The Water-Method Man\") (description \"Until I Find You\"))", "utterance": "what did john irving wrote?"},
{"url": "http://www.freebase.com/view/en/hawaii", "targetValue": "(list (description \"Hawaiian hibiscus\"))", "utterance": "what is the national flower of hawaii?"},
{"url": "http://www.freebase.com/view/en/alice_paul", "targetValue": "(list (description \"Silent Sentinels\") (description \"National Woman's Party\"))", "utterance": "what did alice paul accomplish?"},
{"url": "http://www.freebase.com/view/en/roanoke_colony", "targetValue": "(list (description \"Rainbow Bluff Expedition\"))", "utterance": "where to go fishing in roanoke va?"},
{"url": "http://www.freebase.com/view/en/costa_rica", "targetValue": "(list (description \"Spanish Language\"))", "utterance": "what languages do they speak in costa rica?"},
{"url": "http://www.freebase.com/view/en/hank_marvin", "targetValue": "(list (description \"Newcastle upon Tyne\"))", "utterance": "where did hank marvin come from?"},
{"url": "http://www.freebase.com/view/en/chipper_jones", "targetValue": "(list (description \"1990 Major League Baseball Draft\"))", "utterance": "when did chipper jones get drafted?"},
{"url": "http://www.freebase.com/view/en/winona_ryder", "targetValue": "(list (description \"Amanda Grayson\"))", "utterance": "what part did winona ryder play in star trek?"},
{"url": "http://www.freebase.com/view/en/jimmy_carter", "targetValue": "(list (description \"Social development\") (description \"Human rights\") (description \"Economic development\"))", "utterance": "what did president carter do in office?"},
{"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description \"World War II\"))", "utterance": "what war did hitler lose?"},
{"url": "http://www.freebase.com/view/en/jovan_belcher", "targetValue": "(list (description \"Kansas City\"))", "utterance": "where did jovan belcher kill himself?"},
{"url": "http://www.freebase.com/view/en/chernobyl_disaster", "targetValue": "(list (description Prypiat) (description \"Ukrainian SSR\") (description \"Chernobyl Nuclear Power Plant\") (description Chernobyl))", "utterance": "where is the chernobyl nuclear power plant?"},
{"url": "http://www.freebase.com/view/en/clay_matthews_iii", "targetValue": "(list (description \"Agoura High School\") (description \"University of Southern California\"))", "utterance": "where did clay matthews go to school?"},
{"url": "http://www.freebase.com/view/en/houston", "targetValue": "(list (description \"Central Time Zone\"))", "utterance": "what time is it in texas houston right now?"},
{"url": "http://www.freebase.com/view/en/princess_leia_organa", "targetValue": "(list (description \"Carrie Fisher\"))", "utterance": "who is princess leia in star wars?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Single-party state\") (description \"Communist state\") (description \"Socialist state\"))", "utterance": "what is the political structure of china?"},
{"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"Flushing Airport\") (description \"Mitchel Air Force Base\") (description \"Downtown Manhattan Heliport\") (description \"LaGuardia Airport\") (description \"John F. Kennedy International Airport\") (description \"New York Skyports Inc. Seaplane Base\") (description \"East 34th Street Heliport\"))", "utterance": "what is new york city airport?"},
{"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian Portuguese\") (description \"Portuguese Language\") (description \"Italian Language\"))", "utterance": "what language brazil speak?"},
{"url": "http://www.freebase.com/view/en/obi-wan_kenobi", "targetValue": "(list (description \"Ewan McGregor\"))", "utterance": "who played obi wan in episode 2?"},
{"url": "http://www.freebase.com/view/en/venus_williams", "targetValue": "(list (description Lynwood))", "utterance": "where did venus williams come from?"},
{"url": "http://www.freebase.com/view/en/panama", "targetValue": "(list (description \"United States dollar\") (description \"Panamanian balboa\"))", "utterance": "what currency is used in panama?"},
{"url": "http://www.freebase.com/view/en/zambezi", "targetValue": "(list (description Tanzania))", "utterance": "where does the zambezi river originate?"},
{"url": "http://www.freebase.com/view/en/united_staff", "targetValue": "(list (description Afghanistan) (description Albania) (description Angola) (description Algeria) (description Andorra) (description Austria) (description Australia) (description \"Antigua and Barbuda\") (description Armenia) (description Argentina))", "utterance": "what countries do the united nations help?"},
{"url": "http://www.freebase.com/view/en/ronaldo", "targetValue": "(list (description \"Real Madrid C.F.\"))", "utterance": "what team did ronaldo play for in 2003?"},
{"url": "http://www.freebase.com/view/en/robin_williams", "targetValue": "(list (description \"San Francisco\"))", "utterance": "where does robin williams live 2011?"},
{"url": "http://www.freebase.com/view/en/jacob_black", "targetValue": "(list (description \"Taylor Lautner\"))", "utterance": "who played jacob black in twilight?"},
{"url": "http://www.freebase.com/view/en/john_adams", "targetValue": "(list (description \"John Adams Presidential Campaign, 1796\") (description \"John Adams Presidential Campaign, 1800\"))", "utterance": "when was president john adams elected?"},
{"url": "http://www.freebase.com/view/en/lee_clark", "targetValue": "(list (description \"Birmingham City F.C.\"))", "utterance": "who does lee clark manager?"},
{"url": "http://www.freebase.com/view/en/buenos_aires", "targetValue": "(list (description \"Aeroparque Jorge Newbery\") (description \"Ministro Pistarini International Airport\") (description \"Don Torcuato Airport\"))", "utterance": "which airport to fly into in buenos aires?"},
{"url": "http://www.freebase.com/view/en/long_island", "targetValue": "(list (description \"United States District Court for the Eastern District of New York\"))", "utterance": "where to get a marriage license in long island?"},
{"url": "http://www.freebase.com/view/en/adrian_peterson", "targetValue": "(list (description \"University of Oklahoma\"))", "utterance": "what team did adrian peterson play for in college?"},
{"url": "http://www.freebase.com/view/en/pennsylvania", "targetValue": "(list (description \"William Penn\"))", "utterance": "where does name pennsylvania come from?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description Euro))", "utterance": "what kind of money do they use in germany?"},
{"url": "http://www.freebase.com/view/en/david_blaine", "targetValue": "(list (description Him/Herself))", "utterance": "who plays blaine in batman?"},
{"url": "http://www.freebase.com/view/en/james_chadwick", "targetValue": "(list (description Neutron))", "utterance": "what did james chadwick invent?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"English Language\"))", "utterance": "what language does australia use?"},
{"url": "http://www.freebase.com/view/en/vince_lombardi", "targetValue": "(list (description \"Right Guard\"))", "utterance": "what position did vince lombardi play in college?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Presidential system\") (description \"Federal republic\") (description \"Representative democracy\") (description \"Two-party system\") (description \"Constitutional republic\") (description Republic))", "utterance": "what kind of government did the united states have after the revolution?"},
{"url": "http://www.freebase.com/view/en/veronica_lake", "targetValue": "(list (description \"Andr\u00e9 De Toth\") (description \"Joseph A. McCarthy\") (description \"Robert Carleton-Munro\") (description \"John S. Detlie\"))", "utterance": "who did veronica lake mary?"},
{"url": "http://www.freebase.com/view/en/francis_drake", "targetValue": "(list (description \"Mary Newman\") (description \"Elizabeth Sydenham\"))", "utterance": "who did sir francis drake marry?"},
{"url": "http://www.freebase.com/view/en/stephanie_plum", "targetValue": "(list (description \"Katherine Heigl\"))", "utterance": "who plays stephanie plum in one for the money?"},
{"url": "http://www.freebase.com/view/en/roman_empire", "targetValue": "(list (description \"Latin Language\"))", "utterance": "what did the ancient romans speak?"},
{"url": "http://www.freebase.com/view/en/ringo_starr", "targetValue": "(list (description \"Yellow Submarine\") (description \"Pinocchio Medley (\"Do You See the Noses Growing?\"): Desolation Theme / When You Wish Upon a Star\") (description \"Good Night\") (description \"I Shall Be Released\") (description \"Roll Over Beethoven\") (description \"Tommy's Holiday Camp\") (description \"Sweet Little Sixteen\") (description \"California Calling\") (description \"Honey Don't\") (description \"Don\u2019t Pass Me By\"))", "utterance": "what does ringo sing?"},
{"url": "http://www.freebase.com/view/en/saint_lucy", "targetValue": "(list (description Syracuse))", "utterance": "where was st. lucy born?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"Parliamentary system\") (description Federation) (description \"Constitutional monarchy\"))", "utterance": "what type of government does australia have?"},
{"url": "http://www.freebase.com/view/en/university_of_maryland_baltimore", "targetValue": "(list (description Maryland) (description \"United States of America\") (description Baltimore))", "utterance": "where is the university of maryland medical school?"},
{"url": "http://www.freebase.com/view/en/galileo_galilei", "targetValue": "(list (description Ganymede) (description Callisto) (description Europa) (description \"Galilean moons\") (description Io))", "utterance": "what objects did galileo see with his telescope?"},
{"url": "http://www.freebase.com/view/en/salvador_dali", "targetValue": "(list (description \"Real Academia de Bellas Artes de San Fernando\"))", "utterance": "where did salvador dali study art?"},
{"url": "http://www.freebase.com/view/en/george_vi_of_the_united_kingdom", "targetValue": "(list (description \"George V\"))", "utterance": "who was the father of king george vi?"},
{"url": "http://www.freebase.com/view/en/cristiano_ronaldo", "targetValue": "(list (description \"Portugal national football team\"))", "utterance": "what national team does cristiano ronaldo play for?"},
{"url": "http://www.freebase.com/view/en/oklahoma", "targetValue": "(list (description \"Scissor-tailed Flycatcher\"))", "utterance": "what flower is on the oklahoma quarter?"},
{"url": "http://www.freebase.com/view/en/trenton", "targetValue": "(list (description 08610) (description 08611) (description 08618) (description 08608) (description 08603) (description 08602) (description 08601) (description 08607) (description 08605) (description 08604))", "utterance": "what is the zip code for trenton?"},
{"url": "http://www.freebase.com/view/en/ashley_greene", "targetValue": "(list (description Skateland) (description \"New Moon\") (description \"Radio Free Albemuth\") (description \"A Warrior's Heart\") (description Eclipse) (description \"Summer's Blood\") (description \"King of California\") (description \"The Apparition\") (description Twilight) (description \"The Twilight Saga: Breaking Dawn - Part 1\"))", "utterance": "what has ashley greene been in?"},
{"url": "http://www.freebase.com/view/en/al-qaeda", "targetValue": "(list (description \"Iraq War\"))", "utterance": "where did al qaeda attack?"},
{"url": "http://www.freebase.com/view/en/switzerland", "targetValue": "(list (description \"Romansh language\") (description \"French Language\") (description \"German Language\") (description \"Italian Language\"))", "utterance": "what language is spoken in switzerland?"},
{"url": "http://www.freebase.com/view/en/philip_the_apostle", "targetValue": "(list (description \"Apostle Philip\"))", "utterance": "who was philip in acts chapter 8?"},
{"url": "http://www.freebase.com/view/en/charles_darwin", "targetValue": "(list (description \"The purpose of the expedition, which lasted for nearly four years, was to survey the east and west coasts of South America, but it also took in the Cape Verde Islands, the Galapagos, Tahiti, New Zealand, Australia, Mauritius and South Africa.\"))", "utterance": "what islands did darwin study finches on?"},
{"url": "http://www.freebase.com/view/en/england", "targetValue": "(list (description \"Greenwich Mean Time\") (description UTC\u00b100:00))", "utterance": "what the time zone in england?"},
{"url": "http://www.freebase.com/view/en/epidermal_growth_factor_receptor", "targetValue": "(list (description Protein))", "utterance": "what does egfr african american mean on a blood test?"},
{"url": "http://www.freebase.com/view/en/turkey", "targetValue": "(list (description \"Turkish lira\"))", "utterance": "what is the best currency to take to turkey?"},
{"url": "http://www.freebase.com/view/en/nigeria", "targetValue": "(list (description \"Federal republic\"))", "utterance": "what system of government is practiced in nigeria?"},
{"url": "http://www.freebase.com/view/en/alexander_graham_bell", "targetValue": "(list (description Graphaphone))", "utterance": "what else did alexander graham bell invent other than the telephone?"},
{"url": "http://www.freebase.com/view/en/holly_madison", "targetValue": "(list (description \"United States of America\"))", "utterance": "where did holly madison get her breast implants?"},
{"url": "http://www.freebase.com/view/en/mary_shelley", "targetValue": "(list (description Author))", "utterance": "who were mary shelley?"},
{"url": "http://www.freebase.com/view/en/australian_people", "targetValue": "(list (description \"Greek Language\") (description \"English Language\") (description \"Italian Language\") (description \"Chinese language\"))", "utterance": "what language do most australians speak?"},
{"url": "http://www.freebase.com/view/en/denmark", "targetValue": "(list (description \"Euroregion Baltic\"))", "utterance": "where is denmark situated?"},
{"url": "http://www.freebase.com/view/en/theodore_roosevelt", "targetValue": "(list (description \"New York City\"))", "utterance": "where was teddy roosevelt's house?"},
{"url": "http://www.freebase.com/view/en/malaysia", "targetValue": "(list (description \"Parliamentary system\") (description \"Federal monarchy\") (description Federation) (description \"Constitutional monarchy\") (description \"Elective monarchy\"))", "utterance": "what is the government system of malaysia?"},
{"url": "http://www.freebase.com/view/en/canada", "targetValue": "(list (description \"French Language\") (description \"English Language\"))", "utterance": "what do people speak in canada?"},
{"url": "http://www.freebase.com/view/en/costa_rica", "targetValue": "(list (description \"Costa Rican col\u00f3n\"))", "utterance": "what type of money do they use in costa rica?"},
{"url": "http://www.freebase.com/view/en/nashville_tennessee", "targetValue": "(list (description \"Central Time Zone\"))", "utterance": "what timezone is nashville tn?"},
{"url": "http://www.freebase.com/view/en/philippines", "targetValue": "(list (description \"Province of the Philippines\"))", "utterance": "what does the sun in the philippine flag represent?"},
{"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"Darth Vader\"))", "utterance": "who was anakin skywalker?"},
{"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description Berlin))", "utterance": "where did adolf hitler die?"},
{"url": "http://www.freebase.com/view/en/europe", "targetValue": "(list (description Russia))", "utterance": "what is the largest nation in europe?"},
{"url": "http://www.freebase.com/view/en/gulf_war", "targetValue": "(list (description Israel) (description \"Arabian Peninsula\") (description Kuwait) (description \"Saudi Arabia\") (description \"Persian Gulf\") (description Iraq))", "utterance": "where was the first gulf war fought?"},
{"url": "http://www.freebase.com/view/en/virginia", "targetValue": "(list (description \"Mark Warner\"))", "utterance": "who are the senators of virginia 2013?"},
{"url": "http://www.freebase.com/view/en/george_clinton", "targetValue": "(list (description \"The Parliaments\") (description \"P-Funk All Stars\") (description Funkadelic) (description \"George Clinton & Bootsy Collins\") (description \"George Clinton\") (description Parliament-Funkadelic))", "utterance": "what band was george clinton in?"},
{"url": "http://www.freebase.com/view/en/slovakia", "targetValue": "(list (description Ukraine) (description Austria) (description Poland) (description \"Czech Republic\") (description Hungary))", "utterance": "what country borders slovakia?"},
{"url": "http://www.freebase.com/view/en/james_garfield", "targetValue": "(list (description \"United States Representative\") (description \"President of the United States\"))", "utterance": "what was james garfield most known for?"},
{"url": "http://www.freebase.com/view/en/paula_deen", "targetValue": "(list (description \"Albany High School\"))", "utterance": "where did paula deen go to school?"},
{"url": "http://www.freebase.com/view/en/robert_irvine", "targetValue": "(list (description Salisbury))", "utterance": "where does robert irvine come from?"},
{"url": "http://www.freebase.com/view/en/michael_jackson", "targetValue": "(list (description \"Pop music\"))", "utterance": "what style of music does michael jackson perform?"},
{"url": "http://www.freebase.com/view/en/david_beckham", "targetValue": "(list (description Midfielder))", "utterance": "what does david beckham play?"},
{"url": "http://www.freebase.com/view/en/julian_lennon", "targetValue": "(list (description Singer) (description Writer) (description Guitarist) (description Musician) (description Actor) (description Singer-songwriter) (description \"Record producer\"))", "utterance": "what does julian lennon do?"},
{"url": "http://www.freebase.com/view/en/milwaukee_brewers", "targetValue": "(list (description \"Bonnie Brewer\") (description \"Bernie Brewer\"))", "utterance": "what is the milwaukee brewers mascot?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description Hawaii))", "utterance": "what is the second biggest state in the united states?"},
{"url": "http://www.freebase.com/view/en/mexican_army", "targetValue": "(list (description \"Joaqu\u00edn Amaro\"))", "utterance": "who led the mexican army at the battle of the alamo?"},
{"url": "http://www.freebase.com/view/en/charlie_hunnam", "targetValue": "(list (description Deadfall) (description \"Nicholas Nickleby\") (description \"Pacific Rim\") (description \"Green Street\") (description \"Frankie Go Boom\") (description \"The Ledge\") (description \"Children of Men\") (description Abandon) (description \"Cold Mountain\") (description \"Whatever Happened to Harold Smith?\"))", "utterance": "what has charlie hunnam been in?"},
{"url": "http://www.freebase.com/view/en/taylor_swift", "targetValue": "(list (description \"Hannah Montana: The Movie\") (description \"Campfire Stories;Comes Around Gos Around\") (description \"The Lorax\") (description \"Valentine's Day\"))", "utterance": "what are all the movies taylor swift has been in?"},
{"url": "http://www.freebase.com/view/en/michael_jackson", "targetValue": "(list (description \"Montclair College Preparatory School\"))", "utterance": "what school did michael jackson go to high school?"},
{"url": "http://www.freebase.com/view/en/brett_favre", "targetValue": "(list (description \"The University of Southern Mississippi\"))", "utterance": "what college did brett favre?"},
{"url": "http://www.freebase.com/view/en/portland", "targetValue": "(list (description \"Zora Lancaster\"))", "utterance": "what time does registration open portland state?"},
{"url": "http://www.freebase.com/view/en/alex_chilton", "targetValue": "(list (description \"New Orleans\"))", "utterance": "where did alex chilton die?"},
{"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description \"Morehouse College\"))", "utterance": "what college did martin luther king jr go to?"},
{"url": "http://www.freebase.com/view/en/harley-davidson", "targetValue": "(list (description \"United States of America\"))", "utterance": "where is harley davidson made?"},
{"url": "http://www.freebase.com/view/en/farrah_fawcett", "targetValue": "(list (description \"Anal cancer\"))", "utterance": "what kind of cancer did farrah fawcett die of?"},
{"url": "http://www.freebase.com/view/en/michael_j_fox", "targetValue": "(list (description \"Tracy Pollan\"))", "utterance": "who is michael j fox's wife?"},
{"url": "http://www.freebase.com/view/en/costa_rica", "targetValue": "(list (description \"Costa Rican col\u00f3n\"))", "utterance": "what money do i use in costa rica?"},
{"url": "http://www.freebase.com/view/en/joe_walsh", "targetValue": "(list (description \"Fender Stratocaster\"))", "utterance": "what guitar did joe walsh play?"},
{"url": "http://www.freebase.com/view/en/european_union", "targetValue": "(list (description \"English Language\"))", "utterance": "what are the official languages of the eu?"},
{"url": "http://www.freebase.com/view/en/ryan_seacrest", "targetValue": "(list (description \"On Air with Ryan Seacrest\") (description \"American Top 40\"))", "utterance": "what is ryan seacrest radio show?"},
{"url": "http://www.freebase.com/view/en/african_american", "targetValue": "(list (description \"Continental Army Regiment\"))", "utterance": "what did african americans do during the revolutionary war?"},
{"url": "http://www.freebase.com/view/en/italian_people", "targetValue": "(list (description \"Italian Language\"))", "utterance": "what language do most italians speak?"},
{"url": "http://www.freebase.com/view/en/denver_broncos", "targetValue": "(list (description \"Peyton Manning\"))", "utterance": "what broncos are in the pro bowl?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description Euro))", "utterance": "what money do they use in spain?"},
{"url": "http://www.freebase.com/view/en/drew_barrymore", "targetValue": "(list (description Cocaine) (description \"Alcoholic beverage\"))", "utterance": "what did drew barrymore go to rehab for?"},
{"url": "http://www.freebase.com/view/en/st_georges_day", "targetValue": "(list (description \"April 23\"))", "utterance": "when is saint george day celebrated?"},
{"url": "http://www.freebase.com/view/en/roman_empire", "targetValue": "(list (description \"Family dictatorship\") (description Monarchy) (description Autocracy) (description Dictatorship))", "utterance": "what government did the roman empire have?"},
{"url": "http://www.freebase.com/view/en/crimean_war", "targetValue": "(list (description \"Russian Empire\"))", "utterance": "which country won the crimean war?"},
{"url": "http://www.freebase.com/view/en/robin_gibb", "targetValue": "(list (description Violin) (description Piano))", "utterance": "what instrument did robin gibb play?"},
{"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"James Earl Jones\"))", "utterance": "who voiced darth vader?"},
{"url": "http://www.freebase.com/view/en/abraham_lincoln", "targetValue": "(list (description \"Abraham Lincoln 1865 presidential inauguration\") (description \"Abraham Lincoln 1861 presidential inauguration\"))", "utterance": "when was abe lincoln president?"},
{"url": "http://www.freebase.com/view/en/texas_rangers", "targetValue": "(list (description \"Rangers Ballpark in Arlington\"))", "utterance": "where are the texas rangers playing?"},
{"url": "http://www.freebase.com/view/en/andrew_johnson", "targetValue": "(list (description \"Reconstruction after the Civil War\"))", "utterance": "what did andrew johnson accomplish as president?"},
{"url": "http://www.freebase.com/view/en/arkansas", "targetValue": "(list (description \"Little Rock\"))", "utterance": "what is arkansas state capitol?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description eg))", "utterance": "what is the best tour to egypt?"},
{"url": "http://www.freebase.com/view/en/vietnam", "targetValue": "(list (description \"\u0110\u1eafk N\u00f4ng Province\"))", "utterance": "where to go in vietnam beaches?"},
{"url": "http://www.freebase.com/view/en/nogales", "targetValue": "(list (description 85662) (description 85628) (description 85621))", "utterance": "what is the zip code for nogales az?"},
{"url": "http://www.freebase.com/view/en/michael_vick", "targetValue": "(list (description \"2009 NFL season\"))", "utterance": "when did michael vick start playing for the eagles?"},
{"url": "http://www.freebase.com/view/en/kfc", "targetValue": "(list (description Kentucky))", "utterance": "where do kfc get their chicken from?"},
{"url": "http://www.freebase.com/view/en/william_howard_taft", "targetValue": "(list (description \"President of the United States\"))", "utterance": "what is william taft famous for?"},
{"url": "http://www.freebase.com/view/en/jesse_james", "targetValue": "(list (description \"The Assassination of Jesse James by the Coward Robert Ford\"))", "utterance": "who was jesse james killed by?"},
{"url": "http://www.freebase.com/view/en/robin_cook", "targetValue": "(list (description Inverness))", "utterance": "where did robin cook die?"},
{"url": "http://www.freebase.com/view/en/melba_beals", "targetValue": "(list (description Arkansas))", "utterance": "where did melba beals live?"},
{"url": "http://www.freebase.com/view/en/joseph_kony", "targetValue": "(list (description \"Kony 2012: Part II - Beyond Famous\"))", "utterance": "how large is kony army?"},
{"url": "http://www.freebase.com/view/en/louisiana", "targetValue": "(list (description \"Mary Landrieu\"))", "utterance": "who is louisiana state senator?"},
{"url": "http://www.freebase.com/view/en/central_america", "targetValue": "(list (description Honduras) (description \"El Salvador\") (description Panama) (description \"Costa Rica\") (description Guatemala) (description \"Gran Colombia\") (description Belize))", "utterance": "what are the 7 countries that are part of central america?"},
{"url": "http://www.freebase.com/view/en/derek_fisher", "targetValue": "(list (description \"University of Arkansas at Little Rock\"))", "utterance": "where did derek fisher go to college?"},
{"url": "http://www.freebase.com/view/en/kobe_bryant", "targetValue": "(list (description \"Los Angeles Lakers\"))", "utterance": "who was kobe bryant drafted by?"},
{"url": "http://www.freebase.com/view/en/new_orleans_oklahoma_city_hornets", "targetValue": "(list (description \"New Orleans Arena\"))", "utterance": "where are the new orleans hornets moving to?"},
{"url": "http://www.freebase.com/view/en/algeria", "targetValue": "(list (description \"Northern Berber languages\") (description \"Numidian language\") (description \"Arabic Language\") (description \"Western Berber languages\") (description \"Proto-Berber language\") (description \"Guanche Language\"))", "utterance": "what language does algerian people speak?"},
{"url": "http://www.freebase.com/view/en/anne_boleyn", "targetValue": "(list (description \"Tower of London\"))", "utterance": "where was anne boleyn executed?"},
{"url": "http://www.freebase.com/view/en/galileo_galilei", "targetValue": "(list (description Astronomer))", "utterance": "what did galileo do to become famous?"},
{"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description \"Boston University\"))", "utterance": "what school did martin luther king jr received his doctorate degree from?"},
{"url": "http://www.freebase.com/view/en/gautama_buddha", "targetValue": "(list (description Lumbini))", "utterance": "where buddha come from?"},
{"url": "http://www.freebase.com/view/en/henry_viii_of_england", "targetValue": "(list (description England))", "utterance": "what did king henry viii rule?"},
{"url": "http://www.freebase.com/view/en/larry_hagman", "targetValue": "(list (description \"Head and neck cancer\") (description Cancer) (description Leukemia))", "utterance": "what type of cancer did larry hagman have?"},
{"url": "http://www.freebase.com/view/en/byron_nelson", "targetValue": "(list (description Roanoke))", "utterance": "where is byron nelson 2012?"},
{"url": "http://www.freebase.com/view/en/robert_e_lee", "targetValue": "(list (description \"Mexican\u2013American War\") (description \"American Civil War\") (description \"Battle of Chancellorsville\"))", "utterance": "what wars did robert e lee served in?"},
{"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Yiddish Language\") (description \"Chuvash Language\") (description \"Russian Language\") (description \"Tatar Language\") (description \"Ukrainian Language\"))", "utterance": "what russian language called?"},
{"url": "http://www.freebase.com/view/en/libya", "targetValue": "(list (description \"President of the General National Congress of Libya\"))", "utterance": "who is in charge of libya now?"},
{"url": "http://www.freebase.com/view/en/austraila", "targetValue": "(list (description \"Australian dollar\"))", "utterance": "what currency does australia use 2012?"},
{"url": "http://www.freebase.com/view/en/shays_rebellion", "targetValue": "(list (description 1786))", "utterance": "when did shays rebellion start?"},
{"url": "http://www.freebase.com/view/en/montel_williams", "targetValue": "(list (description \"Multiple sclerosis\"))", "utterance": "what kind of disease does montel williams have?"},
{"url": "http://www.freebase.com/view/en/vlaams_language", "targetValue": "(list (description Belgium))", "utterance": "where do flemish come from?"},
{"url": "http://www.freebase.com/view/en/baltimore_ravens", "targetValue": "(list (description \"Super Bowl XLVII\"))", "utterance": "when is the last time the ravens won a superbowl?"},
{"url": "http://www.freebase.com/view/en/kansas_city_royals", "targetValue": "(list (description \"Kansas City\"))", "utterance": "where did kansas city royals come from?"},
{"url": "http://www.freebase.com/view/en/john_mayer", "targetValue": "(list (description \"Soul music\") (description \"Pop rock\") (description \"Pop music\") (description \"Indie rock\") (description Blues-rock) (description \"Blue-eyed soul\") (description \"Soul rock\") (description \"Rock music\") (description Blues) (description \"Acoustic music\"))", "utterance": "what style of music does john mayer play?"},
{"url": "http://www.freebase.com/view/en/nathaniel_hawthorne", "targetValue": "(list (description \"Dark romanticism\"))", "utterance": "what is the theme of scarlet letter by nathaniel hawthorne?"},
{"url": "http://www.freebase.com/view/en/thomas_edison", "targetValue": "(list (description Phonograph) (description \"Carbon microphone\") (description Mimeograph) (description \"Quadruplex telegraph\") (description \"Electric power distribution\") (description \"Movie camera\") (description \"Incandescent light bulb\") (description \"Phonograph cylinder\"))", "utterance": "what inventions did thomas edison invent list?"},
{"url": "http://www.freebase.com/view/en/novak_djokovic", "targetValue": "(list (description Serbia))", "utterance": "where did djokovic come from?"},
{"url": "http://www.freebase.com/view/en/arizona_cardinals", "targetValue": "(list (description \"John Skelton\"))", "utterance": "who is the arizona cardinals backup quarterback?"},
{"url": "http://www.freebase.com/view/en/new_england", "targetValue": "(list (description \"Northeastern United States\"))", "utterance": "what part of the country is new england?"},
{"url": "http://www.freebase.com/view/en/turkey", "targetValue": "(list (description \"Turkish lira\"))", "utterance": "what money to take to turkey?"},
{"url": "http://www.freebase.com/view/en/jimi_hendrix", "targetValue": "(list (description \"Rock music\"))", "utterance": "what kind of music did jimi hendrix play?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Juris Doctor\") (description \"Bachelor of Arts\"))", "utterance": "what degrees did obama get in college?"},
{"url": "http://www.freebase.com/view/en/alexander_graham_bell", "targetValue": "(list (description \"Chichester Bell\") (description \"Melville James Bell\"))", "utterance": "who were alexander graham bell's siblings?"},
{"url": "http://www.freebase.com/view/en/tupac_shakur", "targetValue": "(list (description \"Tupac 1994 assault\"))", "utterance": "when tupac was shot?"},
{"url": "http://www.freebase.com/view/en/liverpool_fc", "targetValue": "(list (description \"2006 FA Cup Final\"))", "utterance": "when did liverpool fc last win the champions league?"},
{"url": "http://www.freebase.com/view/en/i_dream_of_jeannie", "targetValue": "(list (description \"Barbara Eden\"))", "utterance": "who played jeannie?"},
{"url": "http://www.freebase.com/view/en/french", "targetValue": "(list (description jansegers))", "utterance": "what kind of shoes do french people wear?"},
{"url": "http://www.freebase.com/view/en/saint_peter", "targetValue": "(list (description Rome))", "utterance": "where was st peter killed?"},
{"url": "http://www.freebase.com/view/en/jeremy_shockey", "targetValue": "(list (description \"Carolina Panthers\"))", "utterance": "who does jeremy shockey play for in 2012?"},
{"url": "http://www.freebase.com/view/en/deion_sanders", "targetValue": "(list (description \"Florida State University\"))", "utterance": "what college did deion sanders jr go to?"},
{"url": "http://www.freebase.com/view/en/battle_of_the_alamo", "targetValue": "(list (description 2/23/1836))", "utterance": "when did the battle of alamo start?"},
{"url": "http://www.freebase.com/view/en/henry_viii_of_england", "targetValue": "(list (description \"Prince Henry, Duke of Cornwall\") (description \"Edward VI of England\") (description \"Mary I of England\") (description \"Edward Tudor\") (description \"Henry, Duke of Cornwall\") (description \"Elizabeth I of England\") (description \"Henry FitzRoy, 1st Duke of Richmond and Somerset\") (description \"Henry Tudor\"))", "utterance": "what were the names of henry viii's three children?"},
{"url": "http://www.freebase.com/view/en/elizabeth_ii_of_the_united_kingdom", "targetValue": "(list (description Lillibet))", "utterance": "what was queen elizabeth ii childhood nickname?"},
{"url": "http://www.freebase.com/view/en/tim_tebow", "targetValue": "(list (description Manila))", "utterance": "where did tim tebow grow up?"},
{"url": "http://www.freebase.com/view/en/chesapeake_bay_bridge", "targetValue": "(list (description \"Anne Arundel County\") (description \"Queen Anne's County\"))", "utterance": "where is chesapeake bay bridge?"},
{"url": "http://www.freebase.com/view/en/the_big_valley", "targetValue": "(list (description \"Barbara Stanwyck\"))", "utterance": "who played victoria barkley?"},
{"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"John F. Kennedy 1961 presidential inauguration\"))", "utterance": "where did kennedy's inaugural address take place?"},
{"url": "http://www.freebase.com/view/en/german_language", "targetValue": "(list (description Canada) (description \"German Democratic Republic\") (description Luxembourg) (description Switzerland) (description Liechtenstein) (description Germany) (description \"West Germany\") (description Belgium) (description \"Vatican City\") (description \"Second Polish Republic\"))", "utterance": "what countries have german as the official language?"},
{"url": "http://www.freebase.com/view/en/taliban_movement", "targetValue": "(list (description Afghanistan))", "utterance": "where did the taliban began?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Government of Egypt\"))", "utterance": "what kind of government system did ancient egypt have?"},
{"url": "http://www.freebase.com/view/en/elena_gilbert", "targetValue": "(list (description \"Nina Dobrev\"))", "utterance": "who plays elena gilbert on vampire diaries?"},
{"url": "http://www.freebase.com/view/en/jill_valentine", "targetValue": "(list (description BSAA))", "utterance": "what happened to jill valentine?"},
{"url": "http://www.freebase.com/view/en/missouri_river", "targetValue": "(list (description \"Mississippi River\"))", "utterance": "what does the missouri river bisect?"},
{"url": "http://www.freebase.com/view/en/taylor_lautner", "targetValue": "(list (description \"United States of America\"))", "utterance": "what nationality is taylor lautner jacob black?"},
{"url": "http://www.freebase.com/view/en/california", "targetValue": "(list (description \"California grizzly bear\"))", "utterance": "what animal represents california?"},
{"url": "http://www.freebase.com/view/en/nike_inc", "targetValue": "(list (description Converse) (description \"Hurley International\"))", "utterance": "what company does nike own?"},
{"url": "http://www.freebase.com/view/en/colombia", "targetValue": "(list (description \"Wiwa language\") (description \"Uw Cuwa\") (description \"Andoque language\") (description \"Spanish Language\") (description \"Cams\u00e1 Language\") (description \"Cogui Language\") (description \"Guambiano Language\") (description \"P\u00e1ez language\") (description \"Arhuaco Language\"))", "utterance": "what language do colombian people speak?"},
{"url": "http://www.freebase.com/view/en/ray_allen", "targetValue": "(list (description 1996))", "utterance": "what year did ray allen join the nba?"},
{"url": "http://www.freebase.com/view/en/washington_redskins", "targetValue": "(list (description White) (description Burgundy) (description Gold))", "utterance": "what color jerseys do the redskins wear at home?"},
{"url": "http://www.freebase.com/view/en/claire_danes", "targetValue": "(list (description Actor))", "utterance": "what is claire danes famous for?"},
{"url": "http://www.freebase.com/view/en/san_antonio", "targetValue": "(list (description \"Comal County\"))", "utterance": "what county is san antonio in?"},
{"url": "http://www.freebase.com/view/en/matt_stone", "targetValue": "(list (description \"Kyle / Kenny / Jesus\"))", "utterance": "what characters does matt stone do?"},
{"url": "http://www.freebase.com/view/en/michigan", "targetValue": "(list (description \"Central Time Zone\") (description \"North American Eastern Time Zone\") (description UTC-5))", "utterance": "what timezone is the state of michigan and?"},
{"url": "http://www.freebase.com/view/en/soviet_union", "targetValue": "(list (description \"Communist state\"))", "utterance": "what type of government did soviet union have?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Japanese Language\"))", "utterance": "what languages are there in japan?"},
{"url": "http://www.freebase.com/view/en/dennis_rodman", "targetValue": "(list (description \"1995\u201396 NBA season\"))", "utterance": "what year did the bulls get rodman?"},
{"url": "http://www.freebase.com/view/en/paul_of_tarsus", "targetValue": "(list (description Tentmaker) (description Prophet) (description Writer) (description Missionary) (description Martyr))", "utterance": "who was saint paul the apostle?"},
{"url": "http://www.freebase.com/view/en/africa", "targetValue": "(list (description \"Northern Hemisphere\") (description \"Southern Hemisphere\"))", "utterance": "what hemisphere is africa located in?"},
{"url": "http://www.freebase.com/view/en/vin_scully", "targetValue": "(list (description \"Fordham University\"))", "utterance": "where did vince scully go to college?"},
{"url": "http://www.freebase.com/view/en/princess_leia_organa", "targetValue": "(list (description Alderaan))", "utterance": "where does princess leia live?"},
{"url": "http://www.freebase.com/view/en/el_salvador", "targetValue": "(list (description \"William Torres Alegria\") (description \"Ana Sol Gutierrez\") (description \"Julio Enrique Mart\u00ednez\") (description \"Andr\u00e9s Eduardo Men\u00e9ndez\") (description \"Erwin Raphael McManus\") (description \"Willian Renderos Iraheta\") (description \"\u00d3scar Navarro\") (description \"Ruben Cedillos\") (description \"Roberto Carlos Martinez\") (description \"Raul Antonio Garcia\"))", "utterance": "what famous people are from el salvador?"},
{"url": "http://www.freebase.com/view/en/leonardo_da_vinci", "targetValue": "(list (description Sculpture) (description Painting) (description Drawing))", "utterance": "what type of art did leonardo da vinci make?"},
{"url": "http://www.freebase.com/view/en/mary_bell", "targetValue": "(list (description \"Newcastle upon Tyne\"))", "utterance": "where did mary bell live?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description us))", "utterance": "what countries don need a visa for usa?"},
{"url": "http://www.freebase.com/view/en/kimberly_williams", "targetValue": "(list (description \"Brad Paisley\"))", "utterance": "who did kimberly williams marry?"},
{"url": "http://www.freebase.com/view/en/ryan_gosling", "targetValue": "(list (description \"The United States of Leland\") (description \"Half Nelson\") (description \"The Slaughter Rule\") (description Stay) (description \"Lars and the Real Girl\") (description \"The Believer\") (description Fracture) (description \"Murder by Numbers\") (description \"The Notebook\") (description \"All Good Things\"))", "utterance": "what other movies has ryan gosling been in?"},
{"url": "http://www.freebase.com/view/en/julia_gillard", "targetValue": "(list (description \"Queensland Labor Party\") (description \"Australian Labor Party\"))", "utterance": "what political party does julia gillard belong to?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description Euro))", "utterance": "what is the currency of germany now?"},
{"url": "http://www.freebase.com/view/en/selena_gomez", "targetValue": "(list (description Mexicans))", "utterance": "what kind of hispanic is selena gomez?"},
{"url": "http://www.freebase.com/view/en/denise_van_outen", "targetValue": "(list (description \"Lee Mead\"))", "utterance": "who did denise van outen married?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Egyptian pound\"))", "utterance": "what are egyptian money called?"},
{"url": "http://www.freebase.com/view/en/wyoming_michigan", "targetValue": "(list (description 49519) (description 49509))", "utterance": "what is the zip code for wyoming michigan?"},
{"url": "http://www.freebase.com/view/en/costa_rica", "targetValue": "(list (description \"Laura Chinchilla\"))", "utterance": "who is the president of costa rica in 2012?"},
{"url": "http://www.freebase.com/view/en/martin_luther_king_jr", "targetValue": "(list (description Memphis))", "utterance": "where did martin luther king got shot at?"},
{"url": "http://www.freebase.com/view/en/gospel_of_john", "targetValue": "(list (description \"John the Evangelist\"))", "utterance": "who wrote the gospel according to john?"},
{"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description \"Parliamentary system\") (description \"Unitary state\") (description \"Constitutional monarchy\") (description \"Hereditary monarchy\"))", "utterance": "what form of government is the uk?"},
{"url": "http://www.freebase.com/view/en/john_elway", "targetValue": "(list (description \"Stanford University\"))", "utterance": "what college football team did john elway play for?"},
{"url": "http://www.freebase.com/view/en/samir_nasri", "targetValue": "(list (description \"Olympique de Marseille\"))", "utterance": "who did nasri play for before arsenal?"},
{"url": "http://www.freebase.com/view/en/czech_republic", "targetValue": "(list (description \"Czech koruna\"))", "utterance": "what currency does the czech republic use now?"},
{"url": "http://www.freebase.com/view/en/william_penn", "targetValue": "(list (description \"william penn not favored by william of orange\"))", "utterance": "what age did william penn get married?"},
{"url": "http://www.freebase.com/view/en/mozilla_firefox", "targetValue": "(list (description XUL) (description XBL) (description JavaScript) (description C++) (description \"Cascading Style Sheets\"))", "utterance": "what was firefox programmed in?"},
{"url": "http://www.freebase.com/view/en/new_zealand", "targetValue": "(list (description \"Parliamentary system\") (description \"Unitary state\") (description \"Constitutional monarchy\"))", "utterance": "what government does new zealand have?"},
{"url": "http://www.freebase.com/view/en/panama", "targetValue": "(list (description \"Costa Rica\") (description Colombia))", "utterance": "where is isthmus of panama located on the map?"},
{"url": "http://www.freebase.com/view/en/republic_of_ireland", "targetValue": "(list (description Dublin))", "utterance": "what is the capital of republic of ireland?"},
{"url": "http://www.freebase.com/view/en/kristen_stewart", "targetValue": "(list (description \"New Moon\") (description Eclipse) (description \"The Runaways\") (description \"Snow White and the Huntsman\") (description Twilight) (description \"The Twilight Saga: Breaking Dawn - Part 1\"))", "utterance": "what has kristen stewart acted in?"},
{"url": "http://www.freebase.com/view/en/josef_mengele", "targetValue": "(list (description Physician))", "utterance": "what did dr josef mengele do?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Modern Standard Arabic\"))", "utterance": "what kind of language does egypt speak?"},
{"url": "http://www.freebase.com/view/en/hawaii", "targetValue": "(list (description \"Daniel Inouye\") (description \"Spark Matsunaga\") (description \"Hiram Fong\") (description \"Brian Schatz\") (description \"Daniel Kahikina Akaka\") (description \"Oren E. Long\") (description \"Mazie Hirono\"))", "utterance": "who are the senators of hawaii 2012?"},
{"url": "http://www.freebase.com/view/en/north_korea", "targetValue": "(list (description \"Single-party state\") (description \"Socialist state\") (description \"People's Republic\") (description Juche) (description \"Unitary state\"))", "utterance": "what form of government does north korea have?"},
{"url": "http://www.freebase.com/view/en/robert_kardashian", "targetValue": "(list (description \"University of San Diego\") (description \"University of San Diego School of Law\") (description \"University of Southern California\"))", "utterance": "where did robert kardashian go to college?"},
{"url": "http://www.freebase.com/view/en/chernobyl_disaster", "targetValue": "(list (description \"Nuclear accident\") (description \"Industrial disaster\"))", "utterance": "what happened at chernobyl?"},
{"url": "http://www.freebase.com/view/en/st_james_city", "targetValue": "(list (description \"Lee County\"))", "utterance": "what county is st james city fl in?"},
{"url": "http://www.freebase.com/view/en/akkadian", "targetValue": "(list (description Babylonia) (description Assyria))", "utterance": "what did the akkadian empire include?"},
{"url": "http://www.freebase.com/view/en/olympic_games", "targetValue": "(list (description \"Once every two years\"))", "utterance": "after how many years are the olympic games held?"},
{"url": "http://www.freebase.com/view/en/guyana", "targetValue": "(list (description \"Semi-presidential system\") (description Republic) (description \"Unitary state\"))", "utterance": "what system of government does guyana have?"},
{"url": "http://www.freebase.com/view/en/new_york_knicks", "targetValue": "(list (description \"1973 NBA Finals\"))", "utterance": "when was the last time the ny knicks won a playoff game?"},
{"url": "http://www.freebase.com/view/en/sergio_aguero", "targetValue": "(list (description \"Argentina national football team\") (description \"Manchester City F.C.\") (description \"Club Atl\u00e9tico Independiente\") (description \"Atl\u00e9tico Madrid\"))", "utterance": "what team did aguero play for?"},
{"url": "http://www.freebase.com/view/en/european_union", "targetValue": "(list (description \"Jerzy Buzek\"))", "utterance": "who is the president of the european union 2012?"},
{"url": "http://www.freebase.com/view/en/solemnity_of_saint_joseph", "targetValue": "(list (description \"March 19\"))", "utterance": "when is st joseph birthday?"},
{"url": "http://www.freebase.com/view/en/kenya_moore", "targetValue": "(list (description \"Miss USA 1993\"))", "utterance": "what year was kenya moore crowned miss usa?"},
{"url": "http://www.freebase.com/view/en/nigeria", "targetValue": "(list (description \"Federal republic\"))", "utterance": "what sort of government does nigeria have?"},
{"url": "http://www.freebase.com/view/en/ina_garten", "targetValue": "(list (description Brooklyn))", "utterance": "where does chef ina garten live?"},
{"url": "http://www.freebase.com/view/en/atlanta_braves", "targetValue": "(list (description \"1995 World Series\"))", "utterance": "when the atlanta braves won the world series?"},
{"url": "http://www.freebase.com/view/en/lamar_odom", "targetValue": "(list (description \"Los Angeles Clippers\"))", "utterance": "what is lamar odom doing now july 2012?"},
{"url": "http://www.freebase.com/view/en/iran", "targetValue": "(list (description \"Turkmen Language\") (description \"Pashto language\") (description \"Kurdish language\") (description \"Gilaki Language\") (description \"Assyrian Neo-Aramaic Language\") (description \"Azerbaijani language\") (description \"Armenian Language\") (description \"Persian Language\") (description \"Mazanderani Language\") (description \"Luri language\"))", "utterance": "what kind of language do they speak in iran?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Spanish Language\"))", "utterance": "what was the first language spoken in spain?"},
{"url": "http://www.freebase.com/view/en/scott_joplin", "targetValue": "(list (description Piano) (description \"Jazz piano\"))", "utterance": "what did scott joplin play?"},
{"url": "http://www.freebase.com/view/en/miley_cyrus", "targetValue": "(list (description \"Heritage Elementary School\"))", "utterance": "what school did miley cyrus?"},
{"url": "http://www.freebase.com/view/en/ernest_hemingway", "targetValue": "(list (description \"A Farewell to Arms\"))", "utterance": "which hemingway book to read?"},
{"url": "http://www.freebase.com/view/en/afghanistan", "targetValue": "(list (description \"Pashto language\"))", "utterance": "what language do most people speak in afghanistan?"},
{"url": "http://www.freebase.com/view/en/jamaica", "targetValue": "(list (description \"Portia Simpson-Miller\"))", "utterance": "who is the prime minister of jamaica west indies?"},
{"url": "http://www.freebase.com/view/en/paul_mccartney", "targetValue": "(list (description \"Backing vocalist\") (description bass) (description \"Lead vocalist\"))", "utterance": "what role did paul mccartney play in the beatles?"},
{"url": "http://www.freebase.com/view/en/juventus_fc", "targetValue": "(list (description \"1996 UEFA Champions League Final\"))", "utterance": "when did juventus win the champions league?"},
{"url": "http://www.freebase.com/view/en/university_of_oregon", "targetValue": "(list (description \"University of Oregon\"))", "utterance": "when does school start for the university of oregon?"},
{"url": "http://www.freebase.com/view/en/robin_roberts", "targetValue": "(list (description \"Lawrence E. Roberts\"))", "utterance": "who is robin roberts father?"},
{"url": "http://www.freebase.com/view/en/victoria", "targetValue": "(list (description Melbourne))", "utterance": "what is the capital of australia victoria state?"},
{"url": "http://www.freebase.com/view/en/french", "targetValue": "(list (description France))", "utterance": "where is french spoken most?"},
{"url": "http://www.freebase.com/view/en/reggie_bush", "targetValue": "(list (description \"New Orleans Saints\"))", "utterance": "what team is reggie bush on 2011?"},
{"url": "http://www.freebase.com/view/en/emily_osment", "targetValue": "(list (description \"Flintridge Preparatory School\"))", "utterance": "what highschool did emily osment go to?"},
{"url": "http://www.freebase.com/view/en/mexico", "targetValue": "(list (description \"Mexican peso\"))", "utterance": "what currency should i take to mexico?"},
{"url": "http://www.freebase.com/view/en/thor_heyerdahl", "targetValue": "(list (description \"Film Director\") (description Scientist) (description Cinematographer) (description Actor) (description \"Film Producer\"))", "utterance": "who is thor heyerdahl?"},
{"url": "http://www.freebase.com/view/en/leonardo_da_vinci", "targetValue": "(list (description Writer) (description \"Military Engineer\") (description Musician) (description Anatomist) (description Architect) (description Botanist) (description \"Civil engineer\") (description Inventor) (description Painter) (description Engineer))", "utterance": "what area of science did leonardo da vinci study?"},
{"url": "http://www.freebase.com/view/en/troy_aikman", "targetValue": "(list (description \"Dallas Cowboys\"))", "utterance": "where did troy aikman play football?"},
{"url": "http://www.freebase.com/view/en/cletus_hogg", "targetValue": "(list (description \"Jack Polick\"))", "utterance": "who played cletus hogg?"},
{"url": "http://www.freebase.com/view/en/fa_cup", "targetValue": "(list (description \"Manchester United F.C.\"))", "utterance": "who won fa cup 1976?"},
{"url": "http://www.freebase.com/view/en/robert_e_lee", "targetValue": "(list (description Pneumonia))", "utterance": "what did general robert e lee die from?"},
{"url": "http://www.freebase.com/view/en/henri_matisse", "targetValue": "(list (description Impressionism))", "utterance": "what style of art did henri matisse do?"},
{"url": "http://www.freebase.com/view/en/chuck_bass", "targetValue": "(list (description \"Ed Westwick\"))", "utterance": "who plays chuck bass in gossip girl?"},
{"url": "http://www.freebase.com/view/en/oceania", "targetValue": "(list (description \"Northern Mariana Islands\") (description \"Norfolk Island\") (description Guam) (description \"American Samoa\") (description \"New Caledonia\") (description \"Marshall Islands\") (description Kiribati) (description Nauru) (description Fiji) (description \"Cook Islands\"))", "utterance": "what countries have territories in oceania?"},
{"url": "http://www.freebase.com/view/en/st_louis_park", "targetValue": "(list (description \"Hennepin County\"))", "utterance": "what county is st. louis park in?"},
{"url": "http://www.freebase.com/view/en/south_africa", "targetValue": "(list (description Federation) (description Democracy) (description \"Dominant-party system\") (description \"Presidential system\") (description \"Parliamentary system\") (description \"Liberal democracy\") (description Republic) (description \"Parliamentary republic\"))", "utterance": "what is the political system of south africa?"},
{"url": "http://www.freebase.com/view/en/canberra", "targetValue": "(list (description \"Old Parliament House, Canberra\"))", "utterance": "when does parliament sit in canberra?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description \"Bavarian Language\") (description \"German Language\") (description \"Saxon, Upper Language\"))", "utterance": "what language group does germany belong to?"},
{"url": "http://www.freebase.com/view/en/tucson", "targetValue": "(list (description \"Mountain Time Zone\"))", "utterance": "what timezone is tucson arizona in right now?"},
{"url": "http://www.freebase.com/view/en/lucy_lawless", "targetValue": "(list (description \"New Zealand\"))", "utterance": "when was lucy lawless born?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Democratic Party\"))", "utterance": "which political party does barack obama represent?"},
{"url": "http://www.freebase.com/view/en/ghana", "targetValue": "(list (description \"West Africa\"))", "utterance": "where is the empire of ghana?"},
{"url": "http://www.freebase.com/view/en/jill_clayburgh", "targetValue": "(list (description \"B-cell chronic lymphocytic leukemia\"))", "utterance": "what kind of leukemia did jill clayburgh have?"},
{"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description \"Mein Kampf\"))", "utterance": "what is the name of the book hitler wrote in jail?"},
{"url": "http://www.freebase.com/view/en/sydney", "targetValue": "(list (description \"Sydney Opera House\"))", "utterance": "what is there to see in sydney australia?"},
{"url": "http://www.freebase.com/view/en/marilyn_monroe", "targetValue": "(list (description Brentwood))", "utterance": "where was marilyn monroe found dead?"},
{"url": "http://www.freebase.com/view/en/sierra_nevada", "targetValue": "(list (description Nevada) (description California))", "utterance": "what states does the sierra nevada run through?"},
{"url": "http://www.freebase.com/view/en/greek_language", "targetValue": "(list (description \"Greek Language\"))", "utterance": "what language is spoken in greek?"},
{"url": "http://www.freebase.com/view/en/monta_ellis", "targetValue": "(list (description \"Milwaukee Bucks\"))", "utterance": "what team did monta ellis get traded to?"},
{"url": "http://www.freebase.com/view/en/united_states_house_of_representatives", "targetValue": "(list (description \"Nancy Pelosi\"))", "utterance": "what is the name of the speaker of the house of representatives now 2011?"},
{"url": "http://www.freebase.com/view/en/stanley_hudson", "targetValue": "(list (description \"Leslie David Baker\"))", "utterance": "who plays stanley hudson?"},
{"url": "http://www.freebase.com/view/en/kelly_clarkson", "targetValue": "(list (description \"RCA Records\") (description \"Sony BMG Music Entertainment\") (description \"Sony Music Entertainment\"))", "utterance": "what record label is kelly clarkson signed with?"},
{"url": "http://www.freebase.com/view/en/tim_roth", "targetValue": "(list (description England))", "utterance": "where does tim roth come from?"},
{"url": "http://www.freebase.com/view/en/isaac_newton", "targetValue": "(list (description \"Reflecting telescope\"))", "utterance": "what kind of equipment did isaac newton use?"},
{"url": "http://www.freebase.com/view/en/vietnam", "targetValue": "(list (description \"Vietnamese dong\"))", "utterance": "what currency should you take to vietnam?"},
{"url": "http://www.freebase.com/view/en/roger_federer", "targetValue": "(list (description \"Mirka Federer\"))", "utterance": "who did roger federer married?"},
{"url": "http://www.freebase.com/view/en/costa_rica", "targetValue": "(list (description \"Costa Rican col\u00f3n\"))", "utterance": "what kind of money do i need in costa rica?"},
{"url": "http://www.freebase.com/view/en/cuba", "targetValue": "(list (description \"Fulgencio Batista\"))", "utterance": "what caused the embargo against cuba?"},
{"url": "http://www.freebase.com/view/en/belgium", "targetValue": "(list (description \"City of Brussels\"))", "utterance": "what is the name of the capital of belgium?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description \"Parliamentary system\") (description \"Unitary state\") (description \"Constitutional monarchy\"))", "utterance": "what kind of government does japan have now?"},
{"url": "http://www.freebase.com/view/en/claude_debussy", "targetValue": "(list (description \"Cello Sonata\") (description \"La chute de la maison Usher\") (description \"L'enfant prodigue\") (description \"Pr\u00e9lude \u00e0 l'apr\u00e8s-midi d'un faune\") (description Jeux) (description \"String Quartet\") (description \"Le martyre de Saint S\u00e9bastien\") (description \"Le diable dans le beffroi\") (description \"Rodrigue et Chim\u00e8ne\") (description \"Pell\u00e9as et M\u00e9lisande\"))", "utterance": "what pieces of music did claude debussy compose?"},
{"url": "http://www.freebase.com/view/en/selena_gomez", "targetValue": "(list (description Gianna))", "utterance": "who was selena gomez in barney and friends?"},
{"url": "http://www.freebase.com/view/en/stanley_tucci", "targetValue": "(list (description \"Art Conforti\") (description \"Karl Draconis\") (description \"Frank Mirelli\") (description \"Richard Cross\") (description \"Assemblyman Phillip Wingate\") (description \"Arthur Scolari\") (description \"Zack Lowman\") (description \"Steven Demarco\") (description \"Rick Pinzolo\") (description \"Frank Mosca\"))", "utterance": "who plays caesar flickerman in the hunger games?"},
{"url": "http://www.freebase.com/view/en/battle_of_gettysburg", "targetValue": "(list (description Gettysburg))", "utterance": "where did the gettysburg address?"},
{"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"Robert F. Kennedy\") (description \"Ted Kennedy\") (description \"Rosemary Kennedy\") (description \"Kathleen Cavendish\") (description \"Patricia Kennedy Lawford\") (description \"Jean Kennedy Smith\") (description \"Eunice Kennedy Shriver\") (description \"Joseph P. Kennedy, Jr.\"))", "utterance": "what was the name of jfk's brothers?"},
{"url": "http://www.freebase.com/view/en/tupac_shakur", "targetValue": "(list (description \"Death Row Records\") (description \"Amaru Entertainment\") (description \"Interscope Records\"))", "utterance": "who was tupac signed to?"},
{"url": "http://www.freebase.com/view/en/augustus", "targetValue": "(list (description \"Roman emperor\") (description Politician))", "utterance": "what was augustus caesar famous for?"},
{"url": "http://www.freebase.com/view/en/serena_williams", "targetValue": "(list (description \"Yetunde Price\"))", "utterance": "what kind of tennis racquet does serena williams use?"},
{"url": "http://www.freebase.com/view/en/colombia", "targetValue": "(list (description \"Wiwa language\") (description \"Uw Cuwa\") (description \"Andoque language\") (description \"Spanish Language\") (description \"Cams\u00e1 Language\") (description \"Cogui Language\") (description \"Guambiano Language\") (description \"P\u00e1ez language\") (description \"Arhuaco Language\"))", "utterance": "what language does colombia?"},
{"url": "http://www.freebase.com/view/en/schenectady", "targetValue": "(list (description 12325) (description 12305) (description 12304) (description 12307) (description 12306) (description 12301) (description 12303) (description 12302) (description 12345) (description 12308))", "utterance": "what is the zip code for schenectady new york?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Ronald Reagan\"))", "utterance": "who was president in 1988 in the united states?"},
{"url": "http://www.freebase.com/view/en/canada", "targetValue": "(list (description Alberta))", "utterance": "where can you find wind turbines in canada?"},
{"url": "http://www.freebase.com/view/en/google", "targetValue": "(list (description \"Larry Page\") (description \"Sergey Brin\"))", "utterance": "who owns google 2012?"},
{"url": "http://www.freebase.com/view/en/john_pemberton", "targetValue": "(list (description Coca-Cola))", "utterance": "what drink did john pemberton create?"},
{"url": "http://www.freebase.com/view/en/stanley_matthews", "targetValue": "(list (description Midfielder) (description \"Outside forward\"))", "utterance": "what position did stanley matthews play?"},
{"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian Labour Renewal Party\"))", "utterance": "what type of government does brazil have 2011?"},
{"url": "http://www.freebase.com/view/en/charles_edward_stuart", "targetValue": "(list (description \"Charles Edward Stuart\"))", "utterance": "what was bonnie prince charlie full name?"},
{"url": "http://www.freebase.com/view/en/stewie_griffin", "targetValue": "(list (description \"Seth MacFarlane\"))", "utterance": "who makes the voice of stewie griffin?"},
{"url": "http://www.freebase.com/view/en/angelina_jolie", "targetValue": "(list (description \"Jon Voight\") (description \"Marcheline Bertrand\"))", "utterance": "who is angelina jolie mom and dad?"},
{"url": "http://www.freebase.com/view/en/indiana", "targetValue": "(list (description \"Mitch Daniels\"))", "utterance": "who is the governor of indiana 2009?"},
{"url": "http://www.freebase.com/view/en/brad_pitt", "targetValue": "(list (description \"Angelina Jolie\") (description \"Robin Givens\") (description \"Jennifer Aniston\") (description \"Gwyneth Paltrow\") (description \"Juliette Lewis\") (description Sinitta) (description \"Thandie Newton\") (description \"Shalane McCall\") (description \"Jill Schoelen\"))", "utterance": "who brad pitt has dated?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Democratic Party\"))", "utterance": "what party does barack obama belong to?"},
{"url": "http://www.freebase.com/view/en/san_francisco", "targetValue": "(list (description 94109) (description 94108) (description 94102) (description 94101) (description 94103) (description 94111) (description 94105) (description 94104) (description 94107) (description 94110))", "utterance": "what is san francisco zip code?"},
{"url": "http://www.freebase.com/view/en/stephen_ireland", "targetValue": "(list (description \"Manchester City F.C.\") (description \"Newcastle United F.C.\") (description \"Aston Villa F.C.\"))", "utterance": "who has stephen ireland played for?"},
{"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description Cycling))", "utterance": "what do people in france like to do for fun?"},
{"url": "http://www.freebase.com/view/en/john_mayer", "targetValue": "(list (description \"Berklee College of Music\"))", "utterance": "where did john mayer go to college?"},
{"url": "http://www.freebase.com/view/en/brody_jenner", "targetValue": "(list (description \"Jayde Nicole\") (description \"Nicole Richie\") (description \"Lauren Katherine Conrad\"))", "utterance": "what celebrities has brody jenner dated?"},
{"url": "http://www.freebase.com/view/en/malaysia", "targetValue": "(list (description \"Malaysian ringgit\"))", "utterance": "what is malaysian currency?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description Pakistan) (description Kyrgyzstan) (description Myanmar) (description Bhutan) (description Afghanistan) (description Tajikistan) (description India) (description Mongolia) (description Laos) (description Kazakhstan))", "utterance": "who are china's neighbors?"},
{"url": "http://www.freebase.com/view/en/volkswagen", "targetValue": "(list (description \"Volkswagen Group\"))", "utterance": "who owns volkswagen car company?"},
{"url": "http://www.freebase.com/view/en/rome", "targetValue": "(list (description \"Roma Termini railway station\"))", "utterance": "which is the main train station in rome?"},
{"url": "http://www.freebase.com/view/en/steve_mcnair", "targetValue": "(list (description \"Ballistic trauma\"))", "utterance": "what did steve mcnair died from?"},
{"url": "http://www.freebase.com/view/en/california", "targetValue": "(list (description \"Jerry Brown\"))", "utterance": "who is the newly elected governor of california?"},
{"url": "http://www.freebase.com/view/en/roxanne_1987", "targetValue": "(list (description \"Daryl Hannah\"))", "utterance": "who plays roxanne in ghost rider?"},
{"url": "http://www.freebase.com/view/en/sony_ericsson", "targetValue": "(list (description London))", "utterance": "where is the sony ericsson company?"},
{"url": "http://www.freebase.com/view/en/dominican_republic", "targetValue": "(list (description \"Dominican peso\"))", "utterance": "what kind of currency does the dominican republic have?"},
{"url": "http://www.freebase.com/view/en/manchester_united_kingdom", "targetValue": "(list (description Urbis) (description \"Imperial War Museum North\") (description \"Wheel of Manchester\") (description \"Manchester Art Gallery\") (description \"Old Trafford\") (description \"Manchester Museum\") (description \"Whitworth Art Gallery\") (description \"Manchester Jewish Museum\") (description \"Manchester Cathedral\") (description \"Chinatown, Manchester\"))", "utterance": "what to do this weekend in manchester with kids?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description \"Italy women's national football team\") (description \"Italy women's national volleyball team\") (description \"Italy Fed Cup team\") (description \"Italy national cricket team\") (description \"Italy Davis Cup team\") (description \"Italy men's national volleyball team\") (description \"A1 Team Italy\") (description \"Italy women's national beach handball team\") (description \"Italy national futsal team\") (description \"Italy national football team\"))", "utterance": "what sport is popular in italy?"},
{"url": "http://www.freebase.com/view/en/google", "targetValue": "(list (description California))", "utterance": "where is the main headquarters of google?"},
{"url": "http://www.freebase.com/view/en/jesse_owens", "targetValue": "(list (description \"Ohio State University\"))", "utterance": "what was jesse owens education?"},
{"url": "http://www.freebase.com/view/en/carlos_santana", "targetValue": "(list (description Jalisco))", "utterance": "where does carlos santana live?"},
{"url": "http://www.freebase.com/view/en/john_carter_of_mars", "targetValue": "(list (description \"Adventure film\") (description \"Science Fiction\") (description \"Action film\") (description Fantasy))", "utterance": "what is the new movie john carter about?"},
{"url": "http://www.freebase.com/view/en/joseph_goebbels", "targetValue": "(list (description \"After Hitler's coup in 1933, Goebbels was named \"Reich Minister for Public Enlightenment and Propaganda\" and president of the newly-formed \"Chamber of Culture\", which gave him total control over Germany's media.\"))", "utterance": "what was goebbels role?"},
{"url": "http://www.freebase.com/view/en/north_american_free_trade_agreement", "targetValue": "(list (description Canada) (description \"United States of America\") (description Mexico))", "utterance": "what countries does nafta include?"},
{"url": "http://www.freebase.com/view/en/houston", "targetValue": "(list (description \"Montgomery County\"))", "utterance": "what county is houston tx in?"},
{"url": "http://www.freebase.com/view/en/seattle_seahawks", "targetValue": "(list (description \"CenturyLink Field\"))", "utterance": "where do the seattle seahawks play?"},
{"url": "http://www.freebase.com/view/en/michael_keaton", "targetValue": "(list (description \"Chick Hicks\"))", "utterance": "who does michael keaton play in cars?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description Pyrenees))", "utterance": "what are the mountains in northern spain?"},
{"url": "http://www.freebase.com/view/en/riviera", "targetValue": "(list (description \"Las Vegas\"))", "utterance": "where is the riviera casino?"},
{"url": "http://www.freebase.com/view/en/buddhism", "targetValue": "(list (description \"Amitabha Sutra\") (description \"Tibetan Buddhist canon\") (description Mah\u0101vastu) (description \u0100gama) (description \"Srimala Sutra\") (description \"Longchen Nyingthig\") (description \"Gang\u014dji Garan Engi\") (description \"Mahayana sutras\") (description \"Vimalakirti Sutra\") (description \"P\u0101li Canon\"))", "utterance": "what is the holy book of the buddhist religion?"},
{"url": "http://www.freebase.com/view/en/william_henry_harrison", "targetValue": "(list (description \"John Tyler\"))", "utterance": "who became president when henry harrison died?"},
{"url": "http://www.freebase.com/view/en/richard_arkwright", "targetValue": "(list (description England))", "utterance": "where did richard arkwright grow up?"},
{"url": "http://www.freebase.com/view/en/louis_sachar", "targetValue": "(list (description \"Dogs Don't Tell Jokes\") (description Holes) (description \"Someday Angeline\") (description \"Sideways Arithmetic From Wayside School\") (description \"Wayside School Gets A Little Stranger\") (description \"Sideways Stories From Wayside School\") (description \"Small Steps\") (description \"Stanley Yelnats' Survival Guide to Camp Green Lake\") (description \"Sixth Grade Secrets\") (description \"The Boy Who Lost His Face\"))", "utterance": "what other books did louis sachar write?"},
{"url": "http://www.freebase.com/view/en/roth_ira", "targetValue": "(list (description \"William V. Roth, Jr.\"))", "utterance": "when did roth ira originate?"},
{"url": "http://www.freebase.com/view/en/the_legend_of_zelda_series", "targetValue": "(list (description \"The Legend of Zelda: Ocarina of Time\"))", "utterance": "what is the best zelda game to start with?"},
{"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"James Earl Jones\"))", "utterance": "who does the voice for darth vader?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description Christianity))", "utterance": "what is the dominant religion in the us?"},
{"url": "http://www.freebase.com/view/en/thomas_malthus", "targetValue": "(list (description Mathematician) (description Demographer) (description Scientist) (description Economist))", "utterance": "what did thomas malthus do?"},
{"url": "http://www.freebase.com/view/en/newark_california", "targetValue": "(list (description 94560))", "utterance": "what is the zip code for newark california?"},
{"url": "http://www.freebase.com/view/en/tennesee", "targetValue": "(list (description Virginia))", "utterance": "what states share a border with tennessee?"},
{"url": "http://www.freebase.com/view/en/vancouver", "targetValue": "(list (description \"Slocum House\") (description \"Fort Vancouver\") (description \"Fort Vancouver Barracks Officers Row\") (description \"Fort Vancouver National Historic Site\") (description \"Vancouver National Historic Reserve Historic District\") (description \"Officers Row\") (description \"House of Providence\") (description \"Covington House\") (description \"Evergreen Hotel\") (description \"Hidden Houses\"))", "utterance": "what to see and do in vancouver washington?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description \"Vietnam War\"))", "utterance": "what war did the us lose the most soldiers?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Semi-presidential system\") (description \"Constitutional republic\") (description Republic) (description \"Unitary state\"))", "utterance": "what kind of government is egypt?"},
{"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description guitar) (description Piano) (description trumpet) (description Drums))", "utterance": "what musical instruments does justin bieber play?"},
{"url": "http://www.freebase.com/view/en/james_madison", "targetValue": "(list (description \"United States Representative\") (description \"United States Secretary of State\") (description \"President of the United States\"))", "utterance": "who is james madison and what did he do?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description \"Illinois State Senator\"))", "utterance": "what did obama do before he was elected president?"},
{"url": "http://www.freebase.com/view/en/john_lennon", "targetValue": "(list (description \"New York City\"))", "utterance": "where do john lennon die?"},
{"url": "http://www.freebase.com/view/en/edward_cullen", "targetValue": "(list (description \"Robert Pattinson\"))", "utterance": "who plays edward on deception?"},
{"url": "http://www.freebase.com/view/en/herbert_hoover", "targetValue": "(list (description \"President of the United States\"))", "utterance": "what was herbert hoover best known for?"},
{"url": "http://www.freebase.com/view/en/national_football_league", "targetValue": "(list (description \"New York Jets\") (description \"Carolina Panthers\") (description \"Denver Broncos\") (description \"Baltimore Ravens\") (description \"Detroit Lions\") (description \"Kansas City Chiefs\") (description \"Arizona Cardinals\") (description \"New York Giants\") (description \"Jacksonville Jaguars\") (description \"Oakland Raiders\"))", "utterance": "what games will be on nfl network this year?"},
{"url": "http://www.freebase.com/view/en/bangalore", "targetValue": "(list (description UTC+05:30))", "utterance": "what is the current time in bangalore india?"},
{"url": "http://www.freebase.com/view/en/greece", "targetValue": "(list (description \"Albanian language\") (description \"Greek Language\"))", "utterance": "what language do people from greece speak?"},
{"url": "http://www.freebase.com/view/en/philadelphia_phillies", "targetValue": "(list (description Philadelphia))", "utterance": "where is the phillies spring training stadium?"},
{"url": "http://www.freebase.com/view/en/matt_dallas", "targetValue": "(list (description \"The Story of Bonnie and Clyde\") (description \"Babysitter Wanted\") (description \"Hot Dudes with Kittens\") (description \"Beauty & the Briefcase\") (description \"In Between Days\") (description \"The Indian\") (description \"As Good as Dead\") (description \"Living the Dream\") (description \"Camp Slaughter\") (description \"Wyatt Earp's Revenge\"))", "utterance": "what movies does matt dallas play in?"},
{"url": "http://www.freebase.com/view/en/john_f_kennedy", "targetValue": "(list (description \"John F. Kennedy, Jr.\") (description \"Patrick Bouvier Kennedy\") (description \"Arabella Kennedy\") (description \"Caroline Kennedy\"))", "utterance": "who was john f kennedy's family?"},
{"url": "http://www.freebase.com/view/en/harley-davidson", "targetValue": "(list (description Milwaukee))", "utterance": "where is harley davidson corporate headquarters?"},
{"url": "http://www.freebase.com/view/en/pope_john_paul_ii", "targetValue": "(list (description 10/16/1978))", "utterance": "when was john paul ii?"},
{"url": "http://www.freebase.com/view/en/belgium", "targetValue": "(list (description \"Western Europe\"))", "utterance": "where is belgium germany?"},
{"url": "http://www.freebase.com/view/en/starbucks", "targetValue": "(list (description \"Howard Schultz\"))", "utterance": "where did starbucks get their logo?"},
{"url": "http://www.freebase.com/view/en/ottoman_empire", "targetValue": "(list (description Austria-Hungary) (description \"Kingdom of Bulgaria\") (description \"German Empire\"))", "utterance": "where was the ottoman empire based?"},
{"url": "http://www.freebase.com/view/en/osama_bin_laden", "targetValue": "(list (description Abbottabad))", "utterance": "where was bin laden found and killed?"},
{"url": "http://www.freebase.com/view/en/harry_potter", "targetValue": "(list (description \"Harry Potter and the Half-Blood Prince\") (description \"Harry Potter and the Deathly Hallows\") (description \"Harry Potter and the Goblet of Fire\") (description \"Harry Potter and the Philosopher's Stone\") (description \"Harry Potter and the Chamber of Secrets\") (description \"Harry Potter and the Order of the Phoenix\") (description \"Harry Potter and the Prisoner of Azkaban\"))", "utterance": "what are the names of harry potter movies in order?"},
{"url": "http://www.freebase.com/view/en/pamela_courson", "targetValue": "(list (description \"Heroin overdose\") (description \"Drug overdose\"))", "utterance": "what did pamela courson die from?"},
{"url": "http://www.freebase.com/view/en/jack_kevorkian", "targetValue": "(list (description \"Assisted suicide\"))", "utterance": "what did dr jack kevorkian do?"},
{"url": "http://www.freebase.com/view/en/bolivia", "targetValue": "(list (description Brazil))", "utterance": "what does bolivia border?"},
{"url": "http://www.freebase.com/view/en/stacey_slater", "targetValue": "(list (description \"Lacey Turner\"))", "utterance": "who plays stacey in the stacy's mom video?"},
{"url": "http://www.freebase.com/view/en/nolan_ryan", "targetValue": "(list (description \"California Angels\") (description \"New York Mets\"))", "utterance": "who does nolan ryan play for?"},
{"url": "http://www.freebase.com/view/en/sweden", "targetValue": "(list (description \"Swedish krona\"))", "utterance": "what is the currency of sweden in 2010?"},
{"url": "http://www.freebase.com/view/en/justin_bieber", "targetValue": "(list (description Canada))", "utterance": "what country does justin bieber come from?"},
{"url": "http://www.freebase.com/view/en/supreme_court_of_the_united_states", "targetValue": "(list (description \"Chief Justice of the United States\"))", "utterance": "what is the head judge of the supreme court called?"},
{"url": "http://www.freebase.com/view/en/frida_kahlo", "targetValue": "(list (description \"Diego Rivera\"))", "utterance": "who was frida kahlo influenced by?"},
{"url": "http://www.freebase.com/view/en/taylor_swift", "targetValue": "(list (description Reading))", "utterance": "where is taylor swift from?"},
{"url": "http://www.freebase.com/view/en/argentina", "targetValue": "(list (description Protestantism) (description Catholicism) (description Judaism))", "utterance": "what type of religion does argentina have?"},
{"url": "http://www.freebase.com/view/en/san_francisco_giants", "targetValue": "(list (description \"2012 World Series\"))", "utterance": "when is the last time the giants won the world series?"},
{"url": "http://www.freebase.com/view/en/china", "targetValue": "(list (description \"Chinese language\"))", "utterance": "what is the main language used in china?"},
{"url": "http://www.freebase.com/view/en/battle_of_waterloo", "targetValue": "(list (description Waterloo))", "utterance": "where did the battle of waterloo occur?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Spanish Language\"))", "utterance": "what spain brought to the new world?"},
{"url": "http://www.freebase.com/view/en/vladimir_lenin", "targetValue": "(list (description \"Nadezhda Krupskaya\"))", "utterance": "who did vladimir lenin marry?"},
{"url": "http://www.freebase.com/view/en/baltimore_ravens", "targetValue": "(list (description \"2000 NFL season\"))", "utterance": "what year did the baltimore ravens win superbowl?"},
{"url": "http://www.freebase.com/view/en/cristiano_ronaldo", "targetValue": "(list (description \"Real Madrid C.F.\"))", "utterance": "what team does cristiano ronaldo play for 2011?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description Sahara) (description \"Libyan Desert\"))", "utterance": "what are physical features of egypt?"},
{"url": "http://www.freebase.com/view/en/mark_twain", "targetValue": "(list (description \"Tom Sawyer Abroad\") (description \"Mark Twain's (Burlesque) Autobiography and First Romance\") (description \"A Connecticut Yankee in King Arthur's Court\") (description \"Pudd'nhead Wilson\") (description \"Autobiography of Mark Twain\") (description \"Tom Sawyer, Detective\") (description \"The Adventures of Tom Sawyer\") (description \"Personal Recollections of Joan of Arc\") (description \"The Prince and the Pauper\") (description \"Adventures of Huckleberry Finn\"))", "utterance": "what book is mark twain famous for?"},
{"url": "http://www.freebase.com/view/en/italy", "targetValue": "(list (description Euro))", "utterance": "what is money called in italy?"},
{"url": "http://www.freebase.com/view/en/france", "targetValue": "(list (description \"Constitutional republic\"))", "utterance": "what is the government of france for 2010?"},
{"url": "http://www.freebase.com/view/en/theodor_schwann", "targetValue": "(list (description \"Humboldt University of Berlin\"))", "utterance": "where did theodor schwann study?"},
{"url": "http://www.freebase.com/view/en/bruno_mars", "targetValue": "(list (description Honolulu))", "utterance": "how old is bruno mars and where is he from?"},
{"url": "http://www.freebase.com/view/en/virginia", "targetValue": "(list (description \"Mark Warner\"))", "utterance": "who are the virginia senators 2013?"},
{"url": "http://www.freebase.com/view/en/dr_seuss", "targetValue": "(list (description \"Theodor Robert Geisel\"))", "utterance": "what was dr seuss's real name?"},
{"url": "http://www.freebase.com/view/en/united_nations_security_council", "targetValue": "(list (description \"Verdict on Kashmir\"))", "utterance": "what countries are members of the security council?"},
{"url": "http://www.freebase.com/view/en/nordic_countries", "targetValue": "(list (description \"Northern Europe\"))", "utterance": "where are the nordic countries?"},
{"url": "http://www.freebase.com/view/en/ferdinand_magellan", "targetValue": "(list (description Portugal))", "utterance": "what country sponsored ferdinand magellan?"},
{"url": "http://www.freebase.com/view/en/vera-ellen", "targetValue": "(list (description Cancer))", "utterance": "what did vera ellen die from?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description Cairo))", "utterance": "what is the capital of modern day egypt?"},
{"url": "http://www.freebase.com/view/en/toronto", "targetValue": "(list (description Ontario))", "utterance": "what province is toronto in ( 7 letters )?"},
{"url": "http://www.freebase.com/view/en/united_states", "targetValue": "(list (description Mexico))", "utterance": "where do most illegal immigrants in the us come from?"},
{"url": "http://www.freebase.com/view/en/plaxico_burress", "targetValue": "(list (description \"New York Jets\"))", "utterance": "who will plaxico burress play for in 2011?"},
{"url": "http://www.freebase.com/view/en/brazil", "targetValue": "(list (description \"Brazilian real\"))", "utterance": "what is the currency of brazil now?"},
{"url": "http://www.freebase.com/view/en/andy_warhol", "targetValue": "(list (description \"Pop art\"))", "utterance": "what types of art did andy warhol do?"},
{"url": "http://www.freebase.com/view/en/florida", "targetValue": "(list (description Alabama) (description Georgia))", "utterance": "what other states border florida?"},
{"url": "http://www.freebase.com/view/en/mike_delfino", "targetValue": "(list (description \"Susan Delfino\"))", "utterance": "who does mike marry at the end of season 5 desperate housewives?"},
{"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Russian Orthodox Church\") (description Islam))", "utterance": "what are the predominant religions in russia?"},
{"url": "http://www.freebase.com/view/en/spanish", "targetValue": "(list (description Honduras) (description Uruguay) (description \"El Salvador\") (description Panama) (description \"Equatorial Guinea\") (description Andorra) (description Guatemala) (description \"Puerto Rico\") (description Paraguay) (description Belize))", "utterance": "what countries were part of the spanish empire?"},
{"url": "http://www.freebase.com/view/en/carolina_panthers", "targetValue": "(list (description \"Ron Rivera\"))", "utterance": "who will coach carolina panthers in 2013?"},
{"url": "http://www.freebase.com/view/en/louis_sachar", "targetValue": "(list (description \"East Meadow\"))", "utterance": "where did louis sachar grow up?"},
{"url": "http://www.freebase.com/view/en/marshall_eriksen", "targetValue": "(list (description \"Jason Segel\"))", "utterance": "who plays marshall eriksen?"},
{"url": "http://www.freebase.com/view/en/greece", "targetValue": "(list (description \"Ionian Islands\"))", "utterance": "what activities are there to do in greece?"},
{"url": "http://www.freebase.com/view/en/houston", "targetValue": "(list (description \"George R. Brown Convention Center\") (description \"Sam Houston Race Park\") (description \"Rothko Chapel\") (description \"Kemah Boardwalk\") (description \"Space Center Houston\") (description \"Downtown Aquarium, Houston\") (description \"Hanna\u2013Barbera Land\") (description \"Bayou Bend\") (description \"SplashTown Houston\") (description \"Houston Zoo\"))", "utterance": "what to do for fun in houston?"},
{"url": "http://www.freebase.com/view/en/otto_frank", "targetValue": "(list (description \"Heidelberg College\"))", "utterance": "where did otto frank go to college?"},
{"url": "http://www.freebase.com/view/en/jennifer_lawrence", "targetValue": "(list (description \"The Poker House\") (description \"The Hunger Games\") (description \"Garden Party\") (description \"The Burning Plain\") (description \"Like Crazy\") (description \"Winter\u2019s Bone\") (description \"The Beaver\") (description \"X-Men: First Class\") (description \"Devil You Know\") (description \"House at the End of the Street\"))", "utterance": "what else has jennifer lawrence played in?"},
{"url": "http://www.freebase.com/view/en/pennsylvania", "targetValue": "(list (description \"Tom Corbett\"))", "utterance": "who is the governor of pennsylvania state now?"},
{"url": "http://www.freebase.com/view/en/phoenicia", "targetValue": "(list (description Lebanon))", "utterance": "where is ancient phoenician?"},
{"url": "http://www.freebase.com/view/en/boston_celtics", "targetValue": "(list (description \"TD Bank Garden\"))", "utterance": "where does the celtics practice?"},
{"url": "http://www.freebase.com/view/en/george_washington", "targetValue": "(list (description Surveyor))", "utterance": "what did george washington do as a teenager?"},
{"url": "http://www.freebase.com/view/en/osama_bin_laden", "targetValue": "(list (description Abbottabad))", "utterance": "where bin laden got killed?"},
{"url": "http://www.freebase.com/view/en/toronto", "targetValue": "(list (description \"Ashbridges Bay Wastewater Treatment Plant\"))", "utterance": "where does toronto get its water from?"},
{"url": "http://www.freebase.com/view/en/bosnia_and_herzegovina", "targetValue": "(list (description \"Croatian language\") (description \"Bosnian language\") (description \"Serbian language\"))", "utterance": "what language do people from bosnia speak?"},
{"url": "http://www.freebase.com/view/en/hugo_chavez", "targetValue": "(list (description \"Daniel Florencio O'Leary School\") (description \"Universidad Sim\u00f3n Bol\u00edvar\") (description \"Experimental Security University\") (description \"Julian Pino School\") (description \"Military academy of Venezuela\"))", "utterance": "where did hugo chavez go to school?"},
{"url": "http://www.freebase.com/view/en/japan", "targetValue": "(list (description Canada) (description Sudan) (description Tanzania) (description \"United States of America\") (description Kiribati) (description \"New Zealand\"))", "utterance": "who does japan import from?"},
{"url": "http://www.freebase.com/view/en/sonia_gandhi", "targetValue": "(list (description \"Priyanka Vadra\"))", "utterance": "what is the name of sonia gandhi daughter?"},
{"url": "http://www.freebase.com/view/en/islam", "targetValue": "(list (description Allah))", "utterance": "who do islamic people pray to?"},
{"url": "http://www.freebase.com/view/en/mary_todd_lincoln", "targetValue": "(list (description Lexington) (description Springfield))", "utterance": "where was mary todd lincoln from?"},
{"url": "http://www.freebase.com/view/en/charles_darwin", "targetValue": "(list (description \"Down House\"))", "utterance": "where did charles darwin die?"},
{"url": "http://www.freebase.com/view/en/nick_cannon", "targetValue": "(list (description \"A Very School Gyrls Holla-Day\") (description Bobby) (description \"Day of the Dead\") (description \"Even Money\") (description \"Goal II: Living the Dream\") (description \"American Son\") (description Weapons) (description \"Ball Don't Lie\") (description \"The Killing Room\") (description \"Monster House\"))", "utterance": "what movies does nick cannon play in?"},
{"url": "http://www.freebase.com/view/en/san_francisco", "targetValue": "(list (description \"1906 San Francisco earthquake\"))", "utterance": "when did the big earthquake hit san francisco?"},
{"url": "http://www.freebase.com/view/en/george_vi_of_the_united_kingdom", "targetValue": "(list (description \"Queen Elizabeth The Queen Mother\"))", "utterance": "who was king george vi married to?"},
{"url": "http://www.freebase.com/view/en/jesus", "targetValue": "(list (description \"Church of the Holy Sepulchre\"))", "utterance": "where was jesus after he died on the cross?"},
{"url": "http://www.freebase.com/view/en/james_dyson", "targetValue": "(list (description Designer) (description \"Industrial designer\") (description Engineer) (description Inventor))", "utterance": "who is sir james dyson?"},
{"url": "http://www.freebase.com/view/en/darth_vader", "targetValue": "(list (description \"James Earl Jones\"))", "utterance": "who voiced darth vader in the original star wars movies?"},
{"url": "http://www.freebase.com/view/en/maya_angelou", "targetValue": "(list (description \"George Washington High School\"))", "utterance": "what high school did maya angelou go to?"},
{"url": "http://www.freebase.com/view/en/switzerland", "targetValue": "(list (description \"Trentino-Alto Adige/South Tyrol\") (description Italy) (description Austria) (description France) (description Liechtenstein) (description Germany) (description Haut-Rhin))", "utterance": "what 5 countries border switzerland?"},
{"url": "http://www.freebase.com/view/en/benito_mussolini", "targetValue": "(list (description Italy))", "utterance": "what country did benito mussolini govern?"},
{"url": "http://www.freebase.com/view/en/hosni_mubarak", "targetValue": "(list (description Politician))", "utterance": "where did mubarak get his wealth?"},
{"url": "http://www.freebase.com/view/en/communist_party_of_china", "targetValue": "(list (description \"Chen Duxiu\"))", "utterance": "who was the leader of the first communist party of china?"},
{"url": "http://www.freebase.com/view/en/miles_davis", "targetValue": "(list (description Pneumonia) (description Stroke) (description \"Respiratory failure\"))", "utterance": "what did miles davis died of?"},
{"url": "http://www.freebase.com/view/en/azle", "targetValue": "(list (description 76098) (description 76020))", "utterance": "what is the zip code for azle texas?"},
{"url": "http://www.freebase.com/view/en/sally_mclellan", "targetValue": "(list (description \"2008 Summer Olympics\") (description \"2012 Summer Olympics\"))", "utterance": "what date did sally pearson won gold?"},
{"url": "http://www.freebase.com/view/en/detroit_pistons", "targetValue": "(list (description \"2004 NBA Finals\"))", "utterance": "when did the detroit pistons last win the championship?"},
{"url": "http://www.freebase.com/view/en/philadelphia_flyers", "targetValue": "(list (description \"1974 Stanley Cup Finals\") (description \"1975 Stanley Cup Finals\"))", "utterance": "when did the philadelphia flyers win the cup?"},
{"url": "http://www.freebase.com/view/en/dallas_cowboys", "targetValue": "(list (description \"Felix Jones\"))", "utterance": "who is number 22 for the dallas cowboys?"},
{"url": "http://www.freebase.com/view/en/st_pauls", "targetValue": "(list (description \"Robeson County\"))", "utterance": "what county is st paul nc in?"},
{"url": "http://www.freebase.com/view/en/olympic_national_park", "targetValue": "(list (description \"Jefferson County\") (description Washington))", "utterance": "where is olympic national park wa?"},
{"url": "http://www.freebase.com/view/en/nat_turner", "targetValue": "(list (description Virginia))", "utterance": "where did nat turner 1831 rebellion occur?"},
{"url": "http://www.freebase.com/view/en/luke_skywalker", "targetValue": "(list (description \"Mark Hamill\"))", "utterance": "who would play luke skywalker?"},
{"url": "http://www.freebase.com/view/en/egypt", "targetValue": "(list (description \"Hosni Mubarak\"))", "utterance": "who won the presidential election in egypt 2012?"},
{"url": "http://www.freebase.com/view/en/turkish_language", "targetValue": "(list (description Turkey) (description \"Republic of Macedonia\") (description Austria) (description Cyprus) (description \"Republic of Kosovo\"))", "utterance": "where turkish people originate?"},
{"url": "http://www.freebase.com/view/en/barack_obama", "targetValue": "(list (description Hawaii))", "utterance": "what state is barack obama from?"},
{"url": "http://www.freebase.com/view/en/joe_montana", "targetValue": "(list (description \"Super Bowl XIX\"))", "utterance": "what years did joe montana win super bowl?"},
{"url": "http://www.freebase.com/view/en/minnesota_vikings", "targetValue": "(list (description \"Harrison Smith\") (description \"Devin Aromashodu\") (description \"Chris Kluwe\") (description \"Joe Webb\") (description \"Christian Ponder\") (description \"Josh Robinson\") (description \"Jarius Wright\") (description \"McLeod Bethel-Thompson\") (description \"Blair Walsh\") (description \"Stephen Burton\"))", "utterance": "who should the minnesota vikings draft?"},
{"url": "http://www.freebase.com/view/en/american_people_of_the_united_states", "targetValue": "(list (description \"Why Race Mattered in Barack Obama's Re-election\"))", "utterance": "what percent of americans have college degree?"},
{"url": "http://www.freebase.com/view/en/gary_paulsen", "targetValue": "(list (description \"Spur Award for Best Juvenile Fiction\") (description \"Dorothy Canfield Fisher Children's Book Award\") (description \"Regina Medal\") (description \"Anne V. Zarrow Award for Young Readers' Literature\") (description \"Spur Award for Best Juvenile Nonfiction\") (description \"Newbery Honor\"))", "utterance": "what awards gary paulsen won?"},
{"url": "http://www.freebase.com/view/en/cuba", "targetValue": "(list (description \"Ten Years' War\"))", "utterance": "what caused the cuban rebellion in 1868?"},
{"url": "http://www.freebase.com/view/en/alexander_graham_bell", "targetValue": "(list (description \"Beinn Bhreagh, Nova Scotia\"))", "utterance": "where did alexander graham bell die?"},
{"url": "http://www.freebase.com/view/en/golden_state_warriors", "targetValue": "(list (description \"1975 NBA Finals\"))", "utterance": "what year did the golden state warriors win their first nba championship?"},
{"url": "http://www.freebase.com/view/en/turkey", "targetValue": "(list (description \"Turkish lira\"))", "utterance": "what currency should i take to turkey?"},
{"url": "http://www.freebase.com/view/en/mexico", "targetValue": "(list (description \"Federal republic\"))", "utterance": "what type of government did mexico have?"},
{"url": "http://www.freebase.com/view/en/united_kingdom", "targetValue": "(list (description Scotland) (description England) (description Wales) (description \"Northern Ireland\"))", "utterance": "what countries are in the uk yahoo?"},
{"url": "http://www.freebase.com/view/en/baltimore_ravens", "targetValue": "(list (description \"Super Bowl XXXV\") (description \"Super Bowl XLVII\"))", "utterance": "what superbowl did the baltimore ravens win?"},
{"url": "http://www.freebase.com/view/en/russia", "targetValue": "(list (description \"Yiddish Language\") (description \"Chuvash Language\") (description \"Russian Language\") (description \"Tatar Language\") (description \"Ukrainian Language\"))", "utterance": "what is the language of russia s spoken?"},
{"url": "http://www.freebase.com/view/en/lauren_reed", "targetValue": "(list (description \"Melissa George\"))", "utterance": "who played lauren reed on alias?"},
{"url": "http://www.freebase.com/view/en/cambodia", "targetValue": "(list (description \"Norodom Sihamoni\"))", "utterance": "who is the king of cambodia now?"},
{"url": "http://www.freebase.com/view/en/serena_williams", "targetValue": "(list (description \"Richard Williams\") (description \"Oracene Price\"))", "utterance": "who are serena williams parents?"},
{"url": "http://www.freebase.com/view/en/isaac_newton", "targetValue": "(list (description \"The King's School, Grantham\") (description \"Trinity College, Cambridge\"))", "utterance": "what schools did sir isaac newton go to?"},
{"url": "http://www.freebase.com/view/en/huell_howser", "targetValue": "(list (description \"Prostate cancer\"))", "utterance": "what was the cause of death for huell howser?"},
{"url": "http://www.freebase.com/view/en/suzanne_collins", "targetValue": "(list (description \"Gregor and the Prophecy of Bane\") (description \"Gregor and the Marks of Secret\") (description \"FIRE PROOF\") (description \"Gregor and the Code of Claw\") (description \"The Underland Chronicles Book Three\") (description \"When Charlie McButton lost power\") (description \"Gregor and the Curse of the Warmbloods\") (description \"Catching Fire\") (description 12) (description \"Gregor the Overlander\"))", "utterance": "what books are written by suzanne collins?"},
{"url": "http://www.freebase.com/view/en/england", "targetValue": "(list (description Scotland))", "utterance": "what countries does england border?"},
{"url": "http://www.freebase.com/view/en/lionel_messi", "targetValue": "(list (description \"Argentina national football team\"))", "utterance": "what team did messi play for in 2010?"},
{"url": "http://www.freebase.com/view/en/greensburg_indiana", "targetValue": "(list (description \"North American Eastern Time Zone\"))", "utterance": "what time zone is greensburg indiana?"},
{"url": "http://www.freebase.com/view/en/fullmetal_alchemist", "targetValue": "(list (description \"FullMetal Alchemist\"))", "utterance": "what fma stands for?"},
{"url": "http://www.freebase.com/view/en/lord_voldemort", "targetValue": "(list (description \"Richard Bremmer\") (description \"Frank Dillane\") (description \"Ralph Fiennes\") (description \"Hero Fiennes-Tiffin\") (description \"Christian Coulson\"))", "utterance": "who plays voldemort?"},
{"url": "http://www.freebase.com/view/en/harper_lee", "targetValue": "(list (description \"Huntingdon College\") (description \"University of Oxford\") (description \"Monroe County High School\") (description \"University of Alabama School of Law\") (description \"University of Alabama\"))", "utterance": "what colleges did harper lee attend?"},
{"url": "http://www.freebase.com/view/en/ku_klux_klan", "targetValue": "(list (description \"Albert Pike\") (description \"David Duke\") (description \"William Joseph Simmons\"))", "utterance": "who founded the kkk?"},
{"url": "http://www.freebase.com/view/en/university_of_georgia", "targetValue": "(list (description \"Georgia Bulldogs basketball\"))", "utterance": "what is the university of georgia known for?"},
{"url": "http://www.freebase.com/view/en/john_adams", "targetValue": "(list (description \"Vice President of the United States\"))", "utterance": "what jobs did john adams have before he was president?"},
{"url": "http://www.freebase.com/view/en/mario_bros", "targetValue": "(list (description \"Zilog Z80\"))", "utterance": "what year did super mario bros 2 come out?"},
{"url": "http://www.freebase.com/view/en/andrew_johnson", "targetValue": "(list (description \"Democratic Party\") (description \"National Union Party\") (description \"Republican Party\"))", "utterance": "what political party did andrew johnson belong to?"},
{"url": "http://www.freebase.com/view/en/joseph", "targetValue": "(list (description Canaan))", "utterance": "where did joseph's family live?"},
{"url": "http://www.freebase.com/view/en/osama_bin_laden", "targetValue": "(list (description Abbottabad))", "utterance": "where was osama bin laden killed?"},
{"url": "http://www.freebase.com/view/en/greek_language", "targetValue": "(list (description Europe))", "utterance": "where were greek temples built?"},
{"url": "http://www.freebase.com/view/en/arabic_language", "targetValue": "(list (description Bahrain) (description \"Saudi Arabia\") (description Libya) (description Algeria) (description Egypt) (description Kuwait) (description Lebanon) (description Israel) (description Jordan) (description Iraq))", "utterance": "where are people who speak arabic from?"},
{"url": "http://www.freebase.com/view/en/elizabeth_ii_of_the_united_kingdom", "targetValue": "(list (description \"Queen Elizabeth The Queen Mother\"))", "utterance": "who was queen elizabeth ii mom?"},
{"url": "http://www.freebase.com/view/en/pablo_picasso", "targetValue": "(list (description Cubism) (description \"Analytic cubism\") (description \"African Period\") (description \"Picasso's Blue Period\") (description \"Italian modern and contemporary art\") (description \"Synthetic cubism\") (description \"Picasso's Rose Period\"))", "utterance": "what type of art did pablo picasso paint?"},
{"url": "http://www.freebase.com/view/en/ricky_martin", "targetValue": "(list (description Menudo))", "utterance": "who did ricky martin started his career with?"},
{"url": "http://www.freebase.com/view/en/ella_fitzgerald", "targetValue": "(list (description \"William Fitzgerald\") (description \"Temperance \"Tempie\" Fitzgerald\"))", "utterance": "what is ella fitzgerald parents name?"},
{"url": "http://www.freebase.com/view/en/anne_hathaway", "targetValue": "(list (description \"Gerald Hathaway\") (description \"Kate McCauley Hathaway\"))", "utterance": "who is anne hathaway parents?"},
{"url": "http://www.freebase.com/view/en/don_draper", "targetValue": "(list (description \"Betty Draper\"))", "utterance": "who does don draper gets engaged to?"},
{"url": "http://www.freebase.com/view/en/van_halen", "targetValue": "(list (description \"Van Halen\"))", "utterance": "what was van halen first album?"},
{"url": "http://www.freebase.com/view/en/spain", "targetValue": "(list (description \"Parliamentary system\") (description \"Unitary state\") (description \"Constitutional monarchy\") (description \"Multi-party system\"))", "utterance": "what political system did spain have?"},
{"url": "http://www.freebase.com/view/en/republican_party", "targetValue": "(list (description \"Zachariah Chandler\"))", "utterance": "what led to the split of the republican party in 1912?"},
{"url": "http://www.freebase.com/view/en/toronto", "targetValue": "(list (description \"Edwards Gardens\") (description \"Black Creek Pioneer Village\") (description \"Distillery District\") (description \"CN Tower\") (description \"Art Gallery of Ontario\") (description \"Chinatown, Toronto\") (description \"BMO Field\") (description \"Bata Shoe Museum\") (description \"Air Canada Centre\") (description \"Cabbagetown, Toronto\"))", "utterance": "what to see in toronto top 10?"},
{"url": "http://www.freebase.com/view/en/supreme_court_of_the_united_states", "targetValue": "(list (description \"Hayburn's Case\") (description \"Hylton v. United States\") (description \"Brown v. Board of Education\") (description \"Hollingsworth v. Virginia\") (description \"California v. Greenwood\") (description \"Hague v. Committee for Industrial Organization\") (description \"Kohl v United States\") (description \"Ray v. Blair\") (description \"Loving v. Virginia\") (description \"Roe v. Wade\"))", "utterance": "what are the supreme court cases?"},
{"url": "http://www.freebase.com/view/en/pennsylvania_state_university", "targetValue": "(list (description \"University Park\"))", "utterance": "what is penn state's main campus?"},
{"url": "http://www.freebase.com/view/en/bangkok", "targetValue": "(list (description September))", "utterance": "when is the rainy season in bangkok thailand?"},
{"url": "http://www.freebase.com/view/en/israeli-palestinian_conflict", "targetValue": "(list (description \"1936\u201339 Arab revolt in Palestine\"))", "utterance": "where did the israel palestine conflict start?"},
{"url": "http://www.freebase.com/view/en/alaska", "targetValue": "(list (description \"United States of America\"))", "utterance": "what country does alaska belong to?"},
{"url": "http://www.freebase.com/view/en/kansas_city", "targetValue": "(list (description \"Platte County\"))", "utterance": "where is kansas city?"},
{"url": "http://www.freebase.com/view/en/pink_floyd", "targetValue": "(list (description \"The Piper at the Gates of Dawn\"))", "utterance": "what was pink floyd's first album?"},
{"url": "http://www.freebase.com/view/en/granville_woods", "targetValue": "(list (description \"Loretta Woods\"))", "utterance": "who did granville t. woods married?"},
{"url": "http://www.freebase.com/view/en/thomas_jefferson", "targetValue": "(list (description Unitarianism))", "utterance": "what type of government did thomas jefferson prefer?"},
{"url": "http://www.freebase.com/view/en/sioux", "targetValue": "(list (description \"Sioux language\") (description \"French Language\") (description \"English Language\"))", "utterance": "what language did the sioux indians speak?"},
{"url": "http://www.freebase.com/view/en/el_salvador", "targetValue": "(list (description \"William Torres Alegria\") (description \"Ana Sol Gutierrez\") (description \"Julio Enrique Mart\u00ednez\") (description \"Andr\u00e9s Eduardo Men\u00e9ndez\") (description \"Erwin Raphael McManus\") (description \"Willian Renderos Iraheta\") (description \"\u00d3scar Navarro\") (description \"Ruben Cedillos\") (description \"Roberto Carlos Martinez\") (description \"Raul Antonio Garcia\"))", "utterance": "what are some famous people from el salvador?"},
{"url": "http://www.freebase.com/view/en/brett_gardner", "targetValue": "(list (description \"New York Yankees\"))", "utterance": "who did brett gardner play for in 2008?"},
{"url": "http://www.freebase.com/view/en/dwight_schrute", "targetValue": "(list (description \"Rainn Wilson\"))", "utterance": "who plays dwight in the office?"},
{"url": "http://www.freebase.com/view/en/riley_finn", "targetValue": "(list (description \"Marc Blucas\"))", "utterance": "who plays riley on buffy the vampire slayer?"},
{"url": "http://www.freebase.com/view/en/san_diego", "targetValue": "(list (description \"San Diego County\"))", "utterance": "what county is san diego ca?"},
{"url": "http://www.freebase.com/view/en/miami_dolphins", "targetValue": "(list (description \"Pat Devlin\"))", "utterance": "who is the miami dolphins quarterback?"},
{"url": "http://www.freebase.com/view/en/yoruba", "targetValue": "(list (description \"African people\"))", "utterance": "where did the yoruba originated from?"},
{"url": "http://www.freebase.com/view/en/anne_frank", "targetValue": "(list (description \"Montessori Lyceum Amsterdam\"))", "utterance": "where did anne frank go to school?"},
{"url": "http://www.freebase.com/view/en/monica_1980", "targetValue": "(list (description \"Shannon Brown\"))", "utterance": "what basketball player is married to monica?"},
{"url": "http://www.freebase.com/view/en/adolf_hitler", "targetValue": "(list (description Gunshot) (description Suicide))", "utterance": "what did hitler use to kill himself?"},
{"url": "http://www.freebase.com/view/en/germany", "targetValue": "(list (description \"Bavarian Language\") (description \"German Language\") (description \"Saxon, Upper Language\"))", "utterance": "what do people speak in germany?"},
{"url": "http://www.freebase.com/view/en/denver_broncos", "targetValue": "(list (description \"Super Bowl XXXIII\"))", "utterance": "when is the last time the denver broncos won the superbowl?"},
{"url": "http://www.freebase.com/view/en/julius_caesar", "targetValue": "(list (description \"Theatre of Pompey\"))", "utterance": "where was caesar when he was stabbed?"},
{"url": "http://www.freebase.com/view/en/bessie_smith", "targetValue": "(list (description Blues) (description Jazz))", "utterance": "what style of music did bessie smith perform?"},
{"url": "http://www.freebase.com/view/en/jackie_robinson", "targetValue": "(list (description \"Montreal Royals\") (description \"Kansas City Monarchs\") (description \"Los Angeles Bulldogs\") (description \"Brooklyn Dodgers\") (description \"UCLA Bruins football\"))", "utterance": "what team did jackie robinson?"},
{"url": "http://www.freebase.com/view/en/chicago", "targetValue": "(list (description \"Central Time Zone\"))", "utterance": "what time zone is chicago in right now?"},
{"url": "http://www.freebase.com/view/en/dominican_republic", "targetValue": "(list (description Hispaniola))", "utterance": "what two countries make up the dominican republic?"},
{"url": "http://www.freebase.com/view/en/ronald_reagan", "targetValue": "(list (description \"George H. W. Bush\"))", "utterance": "who was the vice president under ronald reagan?"},
{"url": "http://www.freebase.com/view/en/chicago_white_sox", "targetValue": "(list (description \"U.S. Cellular Field\"))", "utterance": "where do the chicago white sox play home games?"},
{"url": "http://www.freebase.com/view/en/jeff_conaway", "targetValue": "(list (description \"Kenickie Murdoch\"))", "utterance": "what part did jeff conaway play in grease?"},
{"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description \"A Dissertation on Liberty and Necessity, Pleasure and Pain\") (description \"A letter from Mr. Franklin to Mr. Peter Collinson, F.R.S. concerning the effect of lightning ; A letter of Benjamin Franklin, Esq. to Mr. Peter Collinson, F.R.S. concerning an electrical kite\") (description \"A letter of advice to a young man concerning marriage\") (description \"A Letter By Dr. Franklin To The Royal Academy Of Brussels\") (description \"Apology for printers\") (description \"A parable\") (description \"\"The sayings of Poor Richard\"\") (description \"A letter from B. Franklin to a young man\") (description Address) (description \"America's Big Ben\"))", "utterance": "what book did benjamin franklin published?"},
{"url": "http://www.freebase.com/view/en/barbados", "targetValue": "(list (description \"Barbadian dollar\"))", "utterance": "what currency to take to barbados?"},
{"url": "http://www.freebase.com/view/en/stanley_cup", "targetValue": "(list (description \"Frederick Stanley, 16th Earl of Derby\"))", "utterance": "where did they get the name stanley cup?"},
{"url": "http://www.freebase.com/view/en/toronto", "targetValue": "(list (description \"CN Tower\"))", "utterance": "what is the space needle in toronto?"},
{"url": "http://www.freebase.com/view/en/syracuse_new_york", "targetValue": "(list (description 13207) (description 13206) (description 13205) (description 13204) (description 13203) (description 13202) (description 13201) (description 13212) (description 13209) (description 13208))", "utterance": "what is the zip code of syracuse ny?"},
{"url": "http://www.freebase.com/view/en/tennessee_williams", "targetValue": "(list (description \"Washington University in St. Louis\") (description \"University of Missouri\u2013Columbia\") (description \"University of Iowa\") (description \"The New School\"))", "utterance": "where did tennessee williams go to college?"},
{"url": "http://www.freebase.com/view/en/new_york", "targetValue": "(list (description \"Flushing Airport\") (description \"Mitchel Air Force Base\") (description \"Downtown Manhattan Heliport\") (description \"LaGuardia Airport\") (description \"John F. Kennedy International Airport\") (description \"New York Skyports Inc. Seaplane Base\") (description \"East 34th Street Heliport\"))", "utterance": "what is the name of airport in new york?"},
{"url": "http://www.freebase.com/view/en/victoria_of_the_united_kingdom", "targetValue": "(list (description \"Albert, Prince Consort\"))", "utterance": "who was queen victoria's husband?"},
{"url": "http://www.freebase.com/view/en/benjamin_franklin", "targetValue": "(list (description \"James Franklin Printing Shop\") (description \"United States Postal Service\") (description \"Josiah Franklin\"))", "utterance": "where did benjamin franklin work?"},
{"url": "http://www.freebase.com/view/en/barbara_bush", "targetValue": "(list (description \"First Lady\"))", "utterance": "what does barbara bush do for work?"},
{"url": "http://www.freebase.com/view/en/jacob_latimore", "targetValue": "(list (description Singer) (description Actor))", "utterance": "who is jacob latimore?"},
{"url": "http://www.freebase.com/view/en/dunkirk", "targetValue": "(list (description \"Battle of Dunkirk\"))", "utterance": "what happened to dunkirk during ww2?"},
{"url": "http://www.freebase.com/view/en/scottie_pippen", "targetValue": "(list (description Basketball))", "utterance": "what was scottie pippen good at?"},
{"url": "http://www.freebase.com/view/en/donna_noble", "targetValue": "(list (description \"Catherine Tate\"))", "utterance": "who played donna on west wing?"},
{"url": "http://www.freebase.com/view/en/serena_williams", "targetValue": "(list (description \"2010 Australian Open\") (description \"2012 Wimbledon Championships\") (description \"2012 US Open\") (description \"2010 Mutua Madrile\u00f1a Madrid Open\") (description \"2011 Rogers Cup\") (description \"2010 Wimbledon Championships\") (description \"2009 Australian Open\") (description \"2010 French Open\"))", "utterance": "what are serena williams achievements?"},
{"url": "http://www.freebase.com/view/en/meg_griffin", "targetValue": "(list (description \"Lacey Chabert\"))", "utterance": "who played meg in season 1 of family guy?"},
{"url": "http://www.freebase.com/view/en/dallas_cowboys", "targetValue": "(list (description \"Super Bowl XXX\"))", "utterance": "when was the last time the dallas cowboys won the superbowl?"},
{"url": "http://www.freebase.com/view/en/napoleon_i_of_france", "targetValue": "(list (description \"After graduating from military school in 1785, Napoleon became a Second-Lieutenant of Artillery in the regiment of La Fere, garrisoned at Valence, in southern France where he studied military tactics and strategy and the philosophical works of Voltaire and Rousseau.\"))", "utterance": "what did napoleon bonaparte do as emperor?"},
{"url": "http://www.freebase.com/view/en/ireland", "targetValue": "(list (description Zarathustra))", "utterance": "where do ireland play rugby union?"},
{"url": "http://www.freebase.com/view/en/lee_harvey_oswald", "targetValue": "(list (description \"Jack Ruby\"))", "utterance": "who killed lee harvey oswald shot?"},
{"url": "http://www.freebase.com/view/en/new_york_knicks", "targetValue": "(list (description \"1973 NBA Finals\"))", "utterance": "when was the last time knicks won the championship?"},