-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathxquad.en.json
13345 lines (13345 loc) · 595 KB
/
xquad.en.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
{
"data": [
{
"paragraphs": [
{
"context": "The Panthers defense gave up just 308 points, ranking sixth in the league, while also leading the NFL in interceptions with 24 and boasting four Pro Bowl selections. Pro Bowl defensive tackle Kawann Short led the team in sacks with 11, while also forcing three fumbles and recovering two. Fellow lineman Mario Addison added 6\u00bd sacks. The Panthers line also featured veteran defensive end Jared Allen, a 5-time pro bowler who was the NFL's active career sack leader with 136, along with defensive end Kony Ealy, who had 5 sacks in just 9 starts. Behind them, two of the Panthers three starting linebackers were also selected to play in the Pro Bowl: Thomas Davis and Luke Kuechly. Davis compiled 5\u00bd sacks, four forced fumbles, and four interceptions, while Kuechly led the team in tackles (118) forced two fumbles, and intercepted four passes of his own. Carolina's secondary featured Pro Bowl safety Kurt Coleman, who led the team with a career high seven interceptions, while also racking up 88 tackles and Pro Bowl cornerback Josh Norman, who developed into a shutdown corner during the season and had four interceptions, two of which were returned for touchdowns.",
"qas": [
{
"answers": [
{
"answer_start": 34,
"text": "308"
}
],
"id": "56beb4343aeaaa14008c925b",
"question": "How many points did the Panthers defense surrender?"
},
{
"answers": [
{
"answer_start": 470,
"text": "136"
}
],
"id": "56beb4343aeaaa14008c925c",
"question": "How many career sacks did Jared Allen have?"
},
{
"answers": [
{
"answer_start": 789,
"text": "118"
}
],
"id": "56beb4343aeaaa14008c925d",
"question": "How many tackles did Luke Kuechly register?"
},
{
"answers": [
{
"answer_start": 140,
"text": "four"
}
],
"id": "56beb4343aeaaa14008c925e",
"question": "How many balls did Josh Norman intercept?"
},
{
"answers": [
{
"answer_start": 192,
"text": "Kawann Short"
}
],
"id": "56beb4343aeaaa14008c925f",
"question": "Who registered the most sacks on the team this season?"
},
{
"answers": [
{
"answer_start": 124,
"text": "24"
}
],
"id": "56d6f3500d65d21400198290",
"question": "How many interceptions are the Panthers defense credited with in 2015?"
},
{
"answers": [
{
"answer_start": 192,
"text": "Kawann Short"
}
],
"id": "56d6f3500d65d21400198291",
"question": "Who led the Panthers in sacks?"
},
{
"answers": [
{
"answer_start": 140,
"text": "four"
}
],
"id": "56d6f3500d65d21400198292",
"question": "How many Panthers defense players were selected for the Pro Bowl?"
},
{
"answers": [
{
"answer_start": 140,
"text": "four"
}
],
"id": "56d6f3500d65d21400198293",
"question": "How many forced fumbles did Thomas Davis have?"
},
{
"answers": [
{
"answer_start": 900,
"text": "Kurt Coleman"
}
],
"id": "56d6f3500d65d21400198294",
"question": "Which player had the most interceptions for the season?"
},
{
"answers": [
{
"answer_start": 124,
"text": "24"
}
],
"id": "56d9992fdc89441400fdb59c",
"question": "How many 2015 season interceptions did the Panthers' defense get?"
},
{
"answers": [
{
"answer_start": 500,
"text": "Kony Ealy"
}
],
"id": "56d9992fdc89441400fdb59e",
"question": "Who had five sacks in nine games as a Carolina Panthers starter?"
},
{
"answers": [
{
"answer_start": 666,
"text": "Luke Kuechly."
}
],
"id": "56d9992fdc89441400fdb59f",
"question": "Who was the Panthers' tackle leader for 2015?"
},
{
"answers": [
{
"answer_start": 284,
"text": "two."
}
],
"id": "56d9992fdc89441400fdb5a0",
"question": "How many interceptions did Josh Norman score touchdowns with in 2015?"
}
]
},
{
"context": "The Broncos defeated the Pittsburgh Steelers in the divisional round, 23\u201316, by scoring 11 points in the final three minutes of the game. They then beat the defending Super Bowl XLIX champion New England Patriots in the AFC Championship Game, 20\u201318, by intercepting a pass on New England's 2-point conversion attempt with 17 seconds left on the clock. Despite Manning's problems with interceptions during the season, he didn't throw any in their two playoff games.",
"qas": [
{
"answers": [
{
"answer_start": 25,
"text": "Pittsburgh Steelers"
}
],
"id": "56beb7953aeaaa14008c92ab",
"question": "Who lost to the Broncos in the divisional round?"
},
{
"answers": [
{
"answer_start": 88,
"text": "11"
}
],
"id": "56beb7953aeaaa14008c92ac",
"question": "How many points did the Broncos score in the last three minutes of the game versus Pittsburgh?"
},
{
"answers": [
{
"answer_start": 192,
"text": "New England Patriots"
}
],
"id": "56beb7953aeaaa14008c92ad",
"question": "Who won Super Bowl XLIX?"
},
{
"answers": [
{
"answer_start": 243,
"text": "20\u201318"
}
],
"id": "56beb7953aeaaa14008c92ae",
"question": "What was the final score of the AFC Championship Game?"
},
{
"answers": [
{
"answer_start": 322,
"text": "17 seconds"
}
],
"id": "56beb7953aeaaa14008c92af",
"question": "How much time remained on the clock when the Broncos made the interception that clinched the AFC Championship Game?"
},
{
"answers": [
{
"answer_start": 4,
"text": "Broncos"
}
],
"id": "56bf36b93aeaaa14008c9561",
"question": "What team was the divisional round winner between the Broncos and Steelers?"
},
{
"answers": [
{
"answer_start": 70,
"text": "23\u201316"
}
],
"id": "56bf36b93aeaaa14008c9562",
"question": "What was the final score of the game between the Broncos and Steelers?"
},
{
"answers": [
{
"answer_start": 192,
"text": "New England Patriots"
}
],
"id": "56bf36b93aeaaa14008c9563",
"question": "Who won Super Bowl XLIX?"
},
{
"answers": [
{
"answer_start": 322,
"text": "17"
}
],
"id": "56bf36b93aeaaa14008c9564",
"question": "How many seconds were left in the game when the Broncos intercepted the pass that won the game?"
},
{
"answers": [
{
"answer_start": 360,
"text": "Manning"
}
],
"id": "56bf36b93aeaaa14008c9565",
"question": "During the Bronco's playoff games, who did not throw at all?"
},
{
"answers": [
{
"answer_start": 25,
"text": "Pittsburgh Steelers"
}
],
"id": "56d7018a0d65d214001982c2",
"question": "Who did the Broncos beat in the divisional game?"
},
{
"answers": [
{
"answer_start": 88,
"text": "11"
}
],
"id": "56d7018a0d65d214001982c3",
"question": "How many points did the Broncos score in the final three minutes of the Pittsburgh game?"
},
{
"answers": [
{
"answer_start": 192,
"text": "New England Patriots"
}
],
"id": "56d7018a0d65d214001982c5",
"question": "Who did the Broncos defeat in the AFC Championship game?"
},
{
"answers": [
{
"answer_start": 25,
"text": "Pittsburgh Steelers"
}
],
"id": "56d99f99dc89441400fdb628",
"question": "Who did the Broncos beat to win their division in 2015?"
},
{
"answers": [
{
"answer_start": 192,
"text": "New England Patriots"
}
],
"id": "56d99f99dc89441400fdb629",
"question": "Who did the Broncos beat tp become the AFC champions?"
},
{
"answers": [
{
"answer_start": 322,
"text": "17"
}
],
"id": "56d99f99dc89441400fdb62c",
"question": "How many seconds were left in the game when the Patriots failed their 2-point conversion?"
}
]
},
{
"context": "Peyton Manning became the first quarterback ever to lead two different teams to multiple Super Bowls. He is also the oldest quarterback ever to play in a Super Bowl at age 39. The past record was held by John Elway, who led the Broncos to victory in Super Bowl XXXIII at age 38 and is currently Denver's Executive Vice President of Football Operations and General Manager.",
"qas": [
{
"answers": [
{
"answer_start": 172,
"text": "39"
}
],
"id": "56beb86b3aeaaa14008c92bd",
"question": "How old was Peyton Manning when he played in Super Bowl 50?"
},
{
"answers": [
{
"answer_start": 204,
"text": "John Elway"
}
],
"id": "56beb86b3aeaaa14008c92be",
"question": "Who previously held the record for being the oldest quarterback to play in a Super Bowl?"
},
{
"answers": [
{
"answer_start": 275,
"text": "38"
}
],
"id": "56beb86b3aeaaa14008c92bf",
"question": "How old was John Elway when he played in Super Bowl XXXIII?"
},
{
"answers": [
{
"answer_start": 304,
"text": "Executive Vice President of Football Operations and General Manager"
}
],
"id": "56beb86b3aeaaa14008c92c0",
"question": "What role does John Elway currently have in the Broncos franchise?"
},
{
"answers": [
{
"answer_start": 228,
"text": "Broncos"
}
],
"id": "56beb86b3aeaaa14008c92c1",
"question": "Who did John Elway play for in Super Bowl XXXIII?"
},
{
"answers": [
{
"answer_start": 228,
"text": "Broncos"
}
],
"id": "56bf3fd53aeaaa14008c9591",
"question": "What team was the winner of Super Bowl XXXIII?"
},
{
"answers": [
{
"answer_start": 204,
"text": "John Elway"
}
],
"id": "56bf3fd53aeaaa14008c9592",
"question": "Who is the General Manager for the Broncos?"
},
{
"answers": [
{
"answer_start": 275,
"text": "38"
}
],
"id": "56bf3fd53aeaaa14008c9593",
"question": "How old was Elway during his Super Bowl XXXIII win?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Peyton Manning"
}
],
"id": "56bf3fd53aeaaa14008c9594",
"question": "Who has the record of being the oldest quarter back in any Super Bowl game?"
},
{
"answers": [
{
"answer_start": 57,
"text": "two"
}
],
"id": "56bf3fd53aeaaa14008c9595",
"question": "How many teams has Manning played for that reached the Super Bowl, while he was on their team?"
},
{
"answers": [
{
"answer_start": 57,
"text": "two"
}
],
"id": "56d704430d65d214001982de",
"question": "Peyton Manning took how many different teams to the Super Bowl?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Peyton Manning"
}
],
"id": "56d704430d65d214001982e0",
"question": "Who is the oldest quarterback to play in a Super Bowl?"
},
{
"answers": [
{
"answer_start": 204,
"text": "John Elway"
}
],
"id": "56d704430d65d214001982e1",
"question": "Prior to Manning, who was the oldest quarterback to play in a Super Bowl?"
},
{
"answers": [
{
"answer_start": 250,
"text": "Super Bowl XXXIII"
}
],
"id": "56d704430d65d214001982e2",
"question": "Which Super Bowl did Elway win at 38 years old?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Peyton Manning"
}
],
"id": "56d9a0eadc89441400fdb63e",
"question": "Who was the first quarterback to take two teams to more than one Super Bowl?"
},
{
"answers": [
{
"answer_start": 172,
"text": "39"
}
],
"id": "56d9a0eadc89441400fdb63f",
"question": "How old was Manning when he played Super Bowl 50?"
},
{
"answers": [
{
"answer_start": 204,
"text": "John Elway"
}
],
"id": "56d9a0eadc89441400fdb640",
"question": "What is the name of the quarterback who was 38 in Super Bowl XXXIII?"
}
]
},
{
"context": "Six-time Grammy winner and Academy Award nominee Lady Gaga performed the national anthem, while Academy Award winner Marlee Matlin provided American Sign Language (ASL) translation.",
"qas": [
{
"answers": [
{
"answer_start": 0,
"text": "Six"
}
],
"id": "56bec6ac3aeaaa14008c93fd",
"question": "How many Grammys has Lady Gaga won?"
},
{
"answers": [
{
"answer_start": 69,
"text": "the national anthem"
}
],
"id": "56bec6ac3aeaaa14008c93fe",
"question": "What did Lady Gaga sing?"
},
{
"answers": [
{
"answer_start": 27,
"text": "Academy Award"
}
],
"id": "56bec6ac3aeaaa14008c93ff",
"question": "What award has Marlee Matlin won?"
},
{
"answers": [
{
"answer_start": 69,
"text": "the national anthem"
}
],
"id": "56bec6ac3aeaaa14008c9400",
"question": "What did Marlee Matlin translate?"
},
{
"answers": [
{
"answer_start": 140,
"text": "American Sign Language"
}
],
"id": "56bec6ac3aeaaa14008c9401",
"question": "Into what language did Marlee Matlin translate the national anthem?"
},
{
"answers": [
{
"answer_start": 49,
"text": "Lady Gaga"
}
],
"id": "56d20650e7d4791d00902614",
"question": "Who sang the national anthem?"
},
{
"answers": [
{
"answer_start": 117,
"text": "Marlee Matlin"
}
],
"id": "56d20650e7d4791d00902615",
"question": "What actress did the ASL translation for the game?"
},
{
"answers": [
{
"answer_start": 49,
"text": "Lady Gaga"
}
],
"id": "56d7253b0d65d214001983d4",
"question": "Who did the National Anthem at Super Bowl 50?"
},
{
"answers": [
{
"answer_start": 117,
"text": "Marlee Matlin"
}
],
"id": "56d7253b0d65d214001983d5",
"question": "What actor did sign language for the National Anthem at Superbowl 50?"
},
{
"answers": [
{
"answer_start": 49,
"text": "Lady Gaga"
}
],
"id": "56d9c455dc89441400fdb7c4",
"question": "Who did the Super Bowl 50 National Anthem?"
},
{
"answers": [
{
"answer_start": 0,
"text": "Six"
}
],
"id": "56d9c455dc89441400fdb7c5",
"question": "How many Grammy Award's does the text say Lady Gaga has won?"
},
{
"answers": [
{
"answer_start": 117,
"text": "Marlee Matlin"
}
],
"id": "56d9c455dc89441400fdb7c6",
"question": "Who did the sign language of the National Anthem at Super Bowl 50?"
}
]
},
{
"context": "With 4:51 left in regulation, Carolina got the ball on their own 24-yard line with a chance to mount a game-winning drive, and soon faced 3rd-and-9. On the next play, Miller stripped the ball away from Newton, and after several players dove for it, it took a long bounce backwards and was recovered by Ward, who returned it five yards to the Panthers 4-yard line. Although several players dove into the pile to attempt to recover it, Newton did not and his lack of aggression later earned him heavy criticism. Meanwhile, Denver's offense was kept out of the end zone for three plays, but a holding penalty on cornerback Josh Norman gave the Broncos a new set of downs. Then Anderson scored on a 2-yard touchdown run and Manning completed a pass to Bennie Fowler for a 2-point conversion, giving Denver a 24\u201310 lead with 3:08 left and essentially putting the game away. Carolina had two more drives, but failed to get a first down on each one.",
"qas": [
{
"answers": [
{
"answer_start": 65,
"text": "24"
}
],
"id": "56beca913aeaaa14008c946d",
"question": "On what yard line did Carolina begin with 4:51 left in the game?"
},
{
"answers": [
{
"answer_start": 202,
"text": "Newton"
}
],
"id": "56beca913aeaaa14008c946e",
"question": "Who fumbled the ball on 3rd-and-9?"
},
{
"answers": [
{
"answer_start": 620,
"text": "Josh Norman"
}
],
"id": "56beca913aeaaa14008c946f",
"question": "What Panther defender was called for holding on third down?"
},
{
"answers": [
{
"answer_start": 674,
"text": "Anderson"
}
],
"id": "56beca913aeaaa14008c9470",
"question": "What player punched the ball in from the 2?"
},
{
"answers": [
{
"answer_start": 748,
"text": "Bennie Fowler"
}
],
"id": "56beca913aeaaa14008c9471",
"question": "Who was the receiver on the successful 2-point conversion?"
},
{
"answers": [
{
"answer_start": 167,
"text": "Miller"
}
],
"id": "56d726b60d65d214001983ea",
"question": "Who stripped the ball from Newton on a 3rd and nine?"
},
{
"answers": [
{
"answer_start": 302,
"text": "Ward"
}
],
"id": "56d726b60d65d214001983eb",
"question": "Who recovered the strip ball?"
},
{
"answers": [
{
"answer_start": 202,
"text": "Newton"
}
],
"id": "56d726b60d65d214001983ec",
"question": "Which player was criticized for not jumping into the pile to recover the ball?"
},
{
"answers": [
{
"answer_start": 620,
"text": "Josh Norman"
}
],
"id": "56d726b60d65d214001983ed",
"question": "Which Panthers player got a penalty, which gave the Broncos a new set of downs?"
},
{
"answers": [
{
"answer_start": 820,
"text": "3:08"
}
],
"id": "56d726b60d65d214001983ee",
"question": "How much time was left in the game when Denver took the score to 24-10?"
},
{
"answers": [
{
"answer_start": 5,
"text": "4:51"
}
],
"id": "56d9cb47dc89441400fdb832",
"question": "What was the time on the clock when Carolina got the ball to their 24-yard line in the fourth quarter?"
},
{
"answers": [
{
"answer_start": 167,
"text": "Miller"
}
],
"id": "56d9cb47dc89441400fdb833",
"question": "What was the last name of the player who took the ball away from Newton late in the fourth quarter?"
},
{
"answers": [
{
"answer_start": 302,
"text": "Ward"
}
],
"id": "56d9cb47dc89441400fdb834",
"question": "What is the last name of the player who finally recovered the ball Newton lost in the fourth quarter?"
},
{
"answers": [
{
"answer_start": 571,
"text": "three"
}
],
"id": "56d9cb47dc89441400fdb835",
"question": "How many plays was Denver kept out of the end zone after getting the ball from Newton?"
},
{
"answers": [
{
"answer_start": 674,
"text": "Anderson"
}
],
"id": "56d9cb47dc89441400fdb836",
"question": "What is the last name of the player who scored a 2-yard touchdown in the fourth quarter?"
}
]
}
],
"title": "Super_Bowl_50"
},
{
"paragraphs": [
{
"context": "Nearby, in Ogr\u00f3d Saski (the Saxon Garden), the Summer Theatre was in operation from 1870 to 1939, and in the inter-war period, the theatre complex also included Momus, Warsaw's first literary cabaret, and Leon Schiller's musical theatre Melodram. The Wojciech Bogus\u0142awski Theatre (1922\u201326), was the best example of \"Polish monumental theatre\". From the mid-1930s, the Great Theatre building housed the Upati Institute of Dramatic Arts \u2013 the first state-run academy of dramatic art, with an acting department and a stage directing department.",
"qas": [
{
"answers": [
{
"answer_start": 11,
"text": "Ogr\u00f3d Saski"
}
],
"id": "57339c16d058e614000b5ec5",
"question": "What is the Saxon Garden in Polish?"
},
{
"answers": [
{
"answer_start": 28,
"text": "Saxon Garden"
}
],
"id": "57339c16d058e614000b5ec6",
"question": "Where was the Summer Theatre located?"
},
{
"answers": [
{
"answer_start": 84,
"text": "1870 to 1939"
}
],
"id": "57339c16d058e614000b5ec7",
"question": "How long was the Summer Theatre in operation?"
},
{
"answers": [
{
"answer_start": 161,
"text": "Momus"
}
],
"id": "57339c16d058e614000b5ec8",
"question": "What was Warsaw's first literary cabaret?"
},
{
"answers": [
{
"answer_start": 251,
"text": "Wojciech Bogus\u0142awski Theatre"
}
],
"id": "57339c16d058e614000b5ec9",
"question": "What theatre was the best example of \"Polish monumental theatre\"?"
}
]
},
{
"context": "Their local rivals, Polonia Warsaw, have significantly fewer supporters, yet they managed to win Ekstraklasa Championship in 2000. They also won the country\u2019s championship in 1946, and won the cup twice as well. Polonia's home venue is located at Konwiktorska Street, a ten-minute walk north from the Old Town. Polonia was relegated from the country's top flight in 2013 because of their disastrous financial situation. They are now playing in the 4th league (5th tier in Poland) -the bottom professional league in the National \u2013 Polish Football Association (PZPN) structure.",
"qas": [
{
"answers": [
{
"answer_start": 20,
"text": "Polonia Warsaw"
}
],
"id": "5733a32bd058e614000b5f32",
"question": "Who won the Ekstraklasa Championship in 2000?"
},
{
"answers": [
{
"answer_start": 175,
"text": "1946"
}
],
"id": "5733a32bd058e614000b5f33",
"question": "When did Polonia Warsaw win the country's championship prior to 2000?"
},
{
"answers": [
{
"answer_start": 197,
"text": "twice"
}
],
"id": "5733a32bd058e614000b5f34",
"question": "How many times has Polonia won the cup?"
},
{
"answers": [
{
"answer_start": 247,
"text": "Konwiktorska Street"
}
],
"id": "5733a32bd058e614000b5f35",
"question": "Where is Polonia's home venue located?"
},
{
"answers": [
{
"answer_start": 388,
"text": "disastrous financial situation"
}
],
"id": "5733a32bd058e614000b5f36",
"question": "Why was Polonia relegated from the country's top flight in 2013?"
}
]
},
{
"context": "Throughout its existence, Warsaw has been a multi-cultural city. According to the 1901 census, out of 711,988 inhabitants 56.2% were Catholics, 35.7% Jews, 5% Greek orthodox Christians and 2.8% Protestants. Eight years later, in 1909, there were 281,754 Jews (36.9%), 18,189 Protestants (2.4%) and 2,818 Mariavites (0.4%). This led to construction of hundreds of places of religious worship in all parts of the town. Most of them were destroyed in the aftermath of the Warsaw Uprising of 1944. After the war, the new communist authorities of Poland discouraged church construction and only a small number were rebuilt.",
"qas": [
{
"answers": [
{
"answer_start": 44,
"text": "multi-cultural"
}
],
"id": "57338007d058e614000b5bda",
"question": "What type of city has Warsaw been for as long as it's been a city?"
},
{
"answers": [
{
"answer_start": 102,
"text": "711,988"
}
],
"id": "57338007d058e614000b5bdb",
"question": "What was Warsaw's population in 1901?"
},
{
"answers": [
{
"answer_start": 122,
"text": "56.2%"
}
],
"id": "57338007d058e614000b5bdc",
"question": "Of Warsaw's inhabitants in 1901, what percentage was Catholic?"
},
{
"answers": [
{
"answer_start": 189,
"text": "2.8%"
}
],
"id": "57338007d058e614000b5bdd",
"question": "What percentage of Warsaw's population was Protestant in 1901?"
},
{
"answers": [
{
"answer_start": 488,
"text": "1944"
}
],
"id": "57338007d058e614000b5bde",
"question": "When were most of the places of religious worship destroyed in Warsaw?"
}
]
},
{
"context": "The basic unit of territorial division in Poland is a commune (gmina). A city is also a commune \u2013 but with the city charter. Both cities and communes are governed by a mayor \u2013 but in the communes the mayor is vogt (w\u00f3jt in Polish), however in the cities \u2013 burmistrz. Some bigger cities obtain the entitlements, i.e. tasks and privileges, which are possessed by the units of the second level of the territorial division \u2013 counties or powiats. An example of such entitlement is a car registration: a gmina cannot register cars, this is a powiat's task (i.e. a registration number depends on what powiat a car had been registered, not gmina). In this case we say about city county or powiat grodzki. Such cities are for example Lublin, Krak\u00f3w, Gda\u0144sk, Pozna\u0144. In Warsaw, its districts additionally have some of powiat's entitlements \u2013 like already mentioned car registration. For example, the district Wola has its own evidence and the district Ursyn\u00f3w \u2013 its own (and the cars from Wola have another type of registration number than these from Ursyn\u00f3w). But for instance the districts in Krak\u00f3w do not have entitlements of powiat, so the registration numbers in Krak\u00f3w are of the same type for all districts.",
"qas": [
{
"answers": [
{
"answer_start": 54,
"text": "commune"
}
],
"id": "573380e0d058e614000b5be9",
"question": "What is the basic unit of territorial division in Poland?"
},
{
"answers": [
{
"answer_start": 421,
"text": "counties or powiats"
}
],
"id": "573380e0d058e614000b5bea",
"question": "What is the second level of territorial division in Poland?"
},
{
"answers": [
{
"answer_start": 1085,
"text": "Krak\u00f3w"
}
],
"id": "573380e0d058e614000b5beb",
"question": "In what districts are the registration numbers for cars all of the same type?"
}
]
},
{
"context": "Warsaw's first stock exchange was established in 1817 and continued trading until World War II. It was re-established in April 1991, following the end of the post-war communist control of the country and the reintroduction of a free-market economy. Today, the Warsaw Stock Exchange (WSE) is, according to many indicators, the largest market in the region, with 374 companies listed and total capitalization of 162 584 mln EUR as of 31 August 2009. From 1991 until 2000, the stock exchange was, ironically, located in the building previously used as the headquarters of the Polish United Workers' Party (PZPR).",
"qas": [
{
"answers": [
{
"answer_start": 49,
"text": "1817"
}
],
"id": "5733834ed058e614000b5c26",
"question": "When was Warsaw's first stock exchange established?"
},
{
"answers": [
{
"answer_start": 82,
"text": "World War II"
}
],
"id": "5733834ed058e614000b5c27",
"question": "What brought Warsaw's stock exchange to a stop?"
},
{
"answers": [
{