-
Notifications
You must be signed in to change notification settings - Fork 2
/
quail_1.3_challenge_randomized.xml
executable file
·8940 lines (8940 loc) · 258 KB
/
quail_1.3_challenge_randomized.xml
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>
<text domain="fiction" id="f171">
<metadata>
<author>
Aaron Dunlap
</author>
<title>
Mind + body
</title>
<url>
http://manybooks.net/pages/dunlapaother08mind_and_body/0.html
</url>
</metadata>
<text_body>
The biggest thorn in the paw of my grand plan to stop going to school was that my mom would probably notice that I wasn't going to school.
It wasn't an issue, however. When I got home my mom was running around the house shuttling clothes from closets and drawers to open suitcases.
"Are we going somewhere?" I asked, setting my car keys on the kitchen table.
She stopped in place and stood up, looking at me for a moment.
"I am," she started. "I've been talking to Aunt Cathy on the phone and I don't think she's doing very well, with the divorce and then your father. I'm going to spend a few days out there with her until she's feeling better."
Cathy is my dad's sister and I always suspected her to be a bit batty. She didn't come from Delaware for my dad's, her brother's, funeral; said she wouldn't be able to drive herself, and nobody could pick her up.
My mom continued, "Would that be alright? I mean, will you be okay by yourself for a while?"
She must have noticed that I was handling things better than I had been at first. My dad died in January, it was now March. Seems like enough time to me.
"I'll be fine," I said. "Nothing major going on, just school. Are you leaving tonight or tomorrow?"
Nothing major.
She left early the next morning, before I would normally leave for school. Before she left she told me not to throw any wild teenage drug parties. I told her I wouldn't know how if I wanted to. She left, I went back to bed.
It's a marvelous feeling, to sleep right through the start of the school day. Skipping school is one thing, playing sick is one thing, but just not going to school is another feeling entirely. It felt like freedom. The kind of freedom that will cost you later, but at the time seems worth it.
</text_body>
<questions>
<q id="0" type="Belief_states">
What does that narrator think of Cathy?
<a id="0" correct="True">
That she is a little nuts.
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
That she is really nice.
</a>
<a id="3" correct="False">
That she is mean.
</a>
</q>
<q id="1" type="Temporal_order">
The narrator's dad died:
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
On the same day as Cathy's divorce
</a>
<a id="2" correct="False">
Before Cathy got divorced
</a>
<a id="3" correct="True">
After Cathy got divorced
</a>
</q>
<q id="2" type="Entity_properties">
Where does Aunt Cathy live?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
She lives on the west coast.
</a>
<a id="2" correct="False">
She lives in the midwest.
</a>
<a id="3" correct="True">
She lives on the east coast.
</a>
</q>
<q id="3" type="Event_duration">
How long did it probably take for the narrator's mom to pack?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
more than a day
</a>
<a id="2" correct="True">
less than a day
</a>
<a id="3" correct="False">
a few days
</a>
</q>
<q id="4" type="Unanswerable">
What did the narrator do in the evening of the day their mother left?
<a id="0">
cleaning the kitchen
</a>
<a id="1">
putting things in their places after the mother's packing
</a>
<a id="2" correct="True">
not enough information
</a>
<a id="3">
a teenage drug party
</a>
</q>
<q id="5" type="Belief_states">
What does the narrator's mom think about how the narrator is handling the death of their father?
<a id="0" correct="False">
The mother thinks he is angry
</a>
<a id="1" correct="False">
The mother thinks he feels marvelous
</a>
<a id="2" correct="True">
The mother thinks he is getting better
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="6" type="Subsequent_state">
After the story ends, the narrator probably:
<a id="0" correct="True">
enjoys his day
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
calls Aunt Cathy
</a>
<a id="3" correct="False">
joins his mother
</a>
</q>
<q id="7" type="Temporal_order">
When did the narrator skip school?
<a id="0" correct="True">
After his mom went to Delaware.
</a>
<a id="1" correct="False">
soon after his father's funeral.
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
Before his mom went to Delaware.
</a>
</q>
<q id="8" type="Causality">
Why did the narrator's mom leave the next morning?
<a id="0" correct="True">
To help Aunt Cathy
</a>
<a id="1" correct="False">
To go to the school
</a>
<a id="2" correct="False">
because her husband died
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="9" type="Entity_properties">
How did the narrator probably handle his father's death?
<a id="0" correct="False">
He is not doing so well.
</a>
<a id="1" correct="True">
He had a rough time at first but now is doing better.
</a>
<a id="2" correct="False">
It didn't bother him at all.
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="10" type="Character_identity">
Who went away the next morning?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
The narrator.
</a>
<a id="2" correct="True">
The narrator's mother.
</a>
<a id="3" correct="False">
Cathy.
</a>
</q>
<q id="11" type="Event_duration">
For how long did the narrator probably sleep after his mother left?
<a id="0" correct="False">
they slept for over five hours more
</a>
<a id="1" correct="False">
they didn't sleep
</a>
<a id="2" correct="True">
they slept for a few hours more
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="12" type="Character_identity">
Who thought that the narrator was feeling better?
<a id="0" correct="False">
Aunt Cathy
</a>
<a id="1" correct="True">
The narrator's mom
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
The narrator's dad
</a>
</q>
<q id="13" type="Unanswerable">
How long will it probably take to drive to Aunt Cathy's?
<a id="0">
Eight hours.
</a>
<a id="1">
Four hours.
</a>
<a id="2">
Twelve hours.
</a>
<a id="3" correct="True">
not enough information
</a>
</q>
<q id="14" type="Subsequent_state">
After the story ends, the narrator probably:
<a id="0" correct="True">
Continues to skip school
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
Goes to Delaware
</a>
<a id="3" correct="False">
Throws a party
</a>
</q>
<q id="15" type="Factual">
Why did Cathy not come when the narrator's father died?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="True">
she probably didn't care that much
</a>
<a id="2" correct="False">
she lost her car's keys
</a>
<a id="3" correct="False">
her car broke
</a>
</q>
<q id="16" type="Unanswerable">
Why did the narrator plan to skip school?
<a id="0">
because they were doing drugs
</a>
<a id="1" correct="True">
not enough information
</a>
<a id="2">
because they were depressed
</a>
<a id="3">
because they wanted some freedom
</a>
</q>
<q id="17" type="Factual">
What did the narrator do the day his mom left?
<a id="0" correct="False">
Went to Delaware
</a>
<a id="1" correct="True">
Nothing
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
Packed their clothes
</a>
</q>
<q id="18" type="Entity_properties">
What is probably true about the narrator's mom?
<a id="0" correct="False">
She doesn't care if her son goes to school
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="True">
She cares about her sister-in-law's well-being
</a>
<a id="3" correct="False">
She hates Delaware
</a>
</q>
<q id="19" type="Causality">
Why is the narrator's mom going to Delaware?
<a id="0" correct="True">
To visit Aunt Cathy because she could use company.
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
Because Delaware is beautiful in March.
</a>
<a id="3" correct="False">
To visit Aunt Cathy and have a wild teenage party.
</a>
</q>
<q id="20" type="Unanswerable">
What will happen in a few hours?
<a id="0">
The narrator will decide to go to school after all.
</a>
<a id="1" correct="True">
not enough information
</a>
<a id="2">
The narrator will throw a wild party.
</a>
<a id="3">
The narrator's school will call.
</a>
</q>
</questions>
</text>
<text domain="fiction" id="f172">
<metadata>
<author>
Tom Reynolds
</author>
<title>
More blood, more sweat, and another cup of tea
</title>
<url>
http://manybooks.net/pages/reynoldstother09more_blood_more_sweat_another_cup_of_tea/0.html
</url>
</metadata>
<text_body>
Two a.m. and we are standing on the side of the road waiting for the fire service to take the top off the car in front of us. The wind whistles across the flats making us all shiver despite our fleeces and our jackets.
Two cars have been involved in a high-speed road traffic accident (RTA), the parked car that was hit has been shunted forward leaving ten-yard-long skid marks. The cars aren't too damaged but the seats inside have shifted around, trapping the occupants.
There are seven ambulances here, four fire trucks, half a dozen police and three ambulance officers with clipboards. There are eight patients, all but one need cutting from the cars and collaring and boarding. The only woman involved is 'walking wounded'.
The reason that it is taking so long for our car to get its lid removed by the fire service is because of the position of one of the patients inside. He looks rather unwell and the crew looking after him really would like to get to him sooner rather than later.
Our ambulance was fourth on scene. When I arrived I spoke to a stationmate to see what he wanted us to do, who he wanted us to look after. Normally he is the station clown, now he's all serious and professional, no fake beards or silly glasses.
Everyone gets checked over, all the ambulance crews are calm, it's serious but it doesn't look like anyone is about to die; more a case of being careful moving the patients 'just in case'.
The roof comes off the car and with the help of another crew and some firefighters we get our patient out safely and strapped to a board. He is freezing cold. He is not wearing warm clothing so the delay in getting him out and the terrible weather have us concerned for his body temperature.
We are in a new ambulance so the heater works. Turning it up to full we are soon sweating as we assess the patient and prepare for transport.
</text_body>
<questions>
<q id="0" type="Causality">
Why is it difficult to get the roof off the car?
<a id="0" correct="False">
Because the car is on fire
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="True">
Because of the people that are in it
</a>
<a id="3" correct="False">
The fire service people are incompetent
</a>
</q>
<q id="1" type="Character_identity">
Who is not dressed for the weather?
<a id="0" correct="True">
Patient
</a>
<a id="1" correct="False">
Doctor
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
Firefighter
</a>
</q>
<q id="2" type="Subsequent_state">
Where is the person strapped to a board taken at the end of the story?
<a id="0" correct="False">
firefighters station
</a>
<a id="1" correct="True">
Hospital
</a>
<a id="2" correct="False">
Back into the car involved in RTA
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="3" type="Factual">
How many women patients were in the accident?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
eight
</a>
<a id="2" correct="False">
seven
</a>
<a id="3" correct="True">
one
</a>
</q>
<q id="4" type="Temporal_order">
When do the paramedics feel that it's too hot?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
before leaving the station.
</a>
<a id="2" correct="True">
while they assess the patient
</a>
<a id="3" correct="False">
when they arrive to the RTA spot
</a>
</q>
<q id="5" type="Subsequent_state">
Soon after the end of this story, patient will probably
<a id="0" correct="True">
Call their insurance company.
</a>
<a id="1" correct="False">
Go for a drive.
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
Die.
</a>
</q>
<q id="6" type="Temporal_order">
When did the narrator arrive to the scene?
<a id="0" correct="False">
before the police the Cop
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="True">
After 3 other ambulances
</a>
<a id="3" correct="False">
Before the Fire truck
</a>
</q>
<q id="7" type="Event_duration">
How long did it probably take the crew to assess the patient?
<a id="0" correct="False">
about an hour
</a>
<a id="1" correct="True">
less than an hour
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
more than an hour
</a>
</q>
<q id="8" type="Causality">
Why is the patient cold?
<a id="0" correct="False">
Because he is dressed appropriately
</a>
<a id="1" correct="True">
Because he is not dressed appropriately
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
Because he was in a car accident.
</a>
</q>
<q id="9" type="Unanswerable">
How many children does the patient have
<a id="0">
zero
</a>
<a id="1">
seven
</a>
<a id="2">
one
</a>
<a id="3" correct="True">
not enough information
</a>
</q>
<q id="10" type="Entity_properties">
What is the stationmate the most likely to do outside of work?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
Sit in his room alone
</a>
<a id="2" correct="False">
Go to the library
</a>
<a id="3" correct="True">
Tell jokes
</a>
</q>
<q id="11" type="Character_identity">
Who usually clowns around?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
The crew
</a>
<a id="2" correct="False">
The patient strapped to the board.
</a>
<a id="3" correct="True">
The narrator's stationmate.
</a>
</q>
<q id="12" type="Unanswerable">
What arrived first to the scene?
<a id="0">
An ambulance.
</a>
<a id="1">
A police car.
</a>
<a id="2">
A fire truck.
</a>
<a id="3" correct="True">
not enough information
</a>
</q>
<q id="13" type="Belief_states">
What does the narrator think of the situation?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="True">
That it is not life threatening.
</a>
<a id="2" correct="False">
That it is hopeless.
</a>
<a id="3" correct="False">
That it is life or death.
</a>
</q>
<q id="14" type="Entity_properties">
What does the stationmate probably tell the crew to do?
<a id="0" correct="True">
To take care of the people with the worst injuries
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
to remove the lid from the car
</a>
<a id="3" correct="False">
to wear fake beards and silly glasses
</a>
</q>
<q id="15" type="Factual">
What time of day was the accident?
<a id="0" correct="False">
In the late morning.
</a>
<a id="1" correct="True">
late at night
</a>
<a id="2" correct="False">
In the afternoon.
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="16" type="Event_duration">
When did the accident probably occur?
<a id="0" correct="False">
A long time ago
</a>
<a id="1" correct="False">
less than 5 minutes ago
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="True">
A short time ago
</a>
</q>
<q id="17" type="Belief_states">
What does the narrator think of his stationmate?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
He wears fake glasses
</a>
<a id="2" correct="True">
He is the station clown
</a>
<a id="3" correct="False">
He has a silly beard
</a>
</q>
</questions>
</text>
<text domain="fiction" id="f173">
<metadata>
<author>
Tom Reynolds
</author>
<title>
More blood, more sweat, and another cup of tea
</title>
<url>
http://manybooks.net/pages/reynoldstother09more_blood_more_sweat_another_cup_of_tea/0.html
</url>
</metadata>
<text_body>
The staffing of ambulances at the moment is ... to put it bluntly ... poor.
Working on the fast response unit (FRU - a car that is designed to get to the sickest patients quickly) means that I often get to an emergency call within minutes of it being made. Unfortunately, with so few ambulances on the road, the patient and I are often left staring at each other for long periods of time; in a couple of cases up to an hour.
I was sent to a young man having an asthma attack. It was late at night, and he had been queuing to get into a nightclub when he had started to feel his breathing getting tight, the sign of an asthma attack, so had headed to a taxi office in order to go home. Unfortunatel, his asthma progressed and so an ambulance was called. What he got was me, on my own, in a car.
After dealing with the drunken group of teenage girls that had taken time out of waiting for a cab to start loudly 'caring' for my patient, I started my assessment. It was a cold night so I sat the young man in the taxi office and listened to his chest. I could hear a nice loud wheezing from his lungs so I started him on the first dose of our asthma medication. I got his details and checked his vital signs, and waited for the ambulance to turn up.
It takes between five and ten minutes for the asthma medication to finish, and by the end of it there was still no ambulance.
I listened to his chest again, still an audible wheeze, so I gave him a second dose of the medication. So there he was, sitting in a cab office at three in the morning with a mask over his face, 'smoke' pouring from it, and all around us were intoxicated people getting cabs home.
It was not very dignified.
</text_body>
<questions>
<q id="0" type="Entity_properties">
How is the young man probably feeling?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
He is calm and relaxed.
</a>
<a id="2" correct="True">
He is scared.
</a>
<a id="3" correct="False">
He is excited.
</a>
</q>
<q id="1" type="Causality">
How FRU responded to the problem?
<a id="0" correct="True">
starting the patient on asthma medication
</a>
<a id="1" correct="False">
giving the patient a taxi ride to the hospital
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
dealing with the drunken group of teenage girls
</a>
</q>
<q id="2" type="Event_duration">
How long did it probably take for the ambulance to come?
<a id="0" correct="False">
several hours
</a>
<a id="1" correct="False">
over an hour
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="True">
less than an hour
</a>
</q>
<q id="3" type="Unanswerable">
How many miles away is the hospital?
<a id="0">
Six
</a>
<a id="1" correct="True">
not enough information
</a>
<a id="2">
Fifteen
</a>
<a id="3">
Five
</a>
</q>
<q id="4" type="Factual">
Where the events of the story take place?
<a id="0" correct="False">
Near the night club
</a>
<a id="1" correct="True">
near the Taxi office
</a>
<a id="2" correct="False">
In the car
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="5" type="Character_identity">
Who had been in line at a nightclub before the asthma accident?
<a id="0" correct="True">
The young man.
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
The emergency worker.
</a>
<a id="3" correct="False">
That cab driver.
</a>
</q>
<q id="6" type="Event_duration">
How long did the emergency worker probably care for the young man?
<a id="0" correct="False">
until he got to the hospital
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
All night.
</a>
<a id="3" correct="True">
until the ambulance arrived
</a>
</q>
<q id="7" type="Unanswerable">
Will the sick person be able to pay for the attention during this incident?
<a id="0" correct="True">
not enough information
</a>
<a id="1">
Yes, he knows he has asthma so he has Health Insurance.
</a>
<a id="2">
Probably he will scrape enough money together
</a>
<a id="3">
NO, he is very poor so he does not have Health Insurance even though he has asthma.
</a>
</q>
<q id="8" type="Belief_states">
What did the FRU person think?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
That people shouldn't queue to get into nighclubs
</a>
<a id="2" correct="False">
That people shouldn't ever get drunk
</a>
<a id="3" correct="True">
That there should be more ambulances
</a>
</q>
<q id="9" type="Belief_states">
What does the emergency worker think about the lack of ambulances?
<a id="0" correct="False">
It is not a problem.
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="True">
It is a problem.
</a>
<a id="3" correct="False">
It is good for traffic that there are few ambulances on the road.
</a>
</q>
<q id="10" type="Causality">
Why was the young man wheezing?
<a id="0" correct="False">
Because of the exhaust from the taxi.
</a>
<a id="1" correct="True">
Because he was sick.
</a>
<a id="2" correct="False">
Because of the loud music from the club.
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="11" type="Temporal_order">
When did the patient receive a second dose of asthma medication?
<a id="0" correct="True">
after heading to the taxi office
</a>
<a id="1" correct="False">
after ambulance arrived
</a>
<a id="2" correct="False">
ten minutes after he got to the nightclub
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="12" type="Temporal_order">
When did the man have an asthma attack?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
After the narrator arrived.
</a>
<a id="2" correct="True">
After getting in line at the club.
</a>
<a id="3" correct="False">
After meeting the teenage girls.
</a>
</q>
<q id="13" type="Subsequent_state">
What will probably happen to the young man next?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="True">
He will get into an ambulance and go to the hospital.
</a>
<a id="2" correct="False">
He will die.
</a>
<a id="3" correct="False">
The teenage girls will give him a ride to the hospital.
</a>
</q>
<q id="14" type="Subsequent_state">
In the end of this story, the patient
<a id="0" correct="False">
will die
</a>
<a id="1" correct="True">
will survive
</a>
<a id="2" correct="False">
will have a heart attack
</a>
<a id="3" correct="False">
not enough information
</a>
</q>
<q id="15" type="Factual">
Where was the young man waiting in line at?
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="False">
A hospital.
</a>
<a id="2" correct="True">
A nightclub.
</a>
<a id="3" correct="False">
A taxi station.
</a>
</q>
<q id="16" type="Character_identity">
Who had trouble breathing?
<a id="0" correct="True">
A young man
</a>
<a id="1" correct="False">
not enough information
</a>
<a id="2" correct="False">
A teenage girl
</a>
<a id="3" correct="False">
the narrator
</a>
</q>
<q id="17" type="Entity_properties">
What should asthma patients avoid doing the most?
<a id="0" correct="False">
nightclubs
</a>
<a id="1" correct="True">
smoking
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
drinking
</a>
</q>
</questions>
</text>
<text domain="fiction" id="f174">
<metadata>
<author>
Tom Reynolds
</author>
<title>
More blood, more sweat, and another cup of tea
</title>
<url>
http://manybooks.net/pages/reynoldstother09more_blood_more_sweat_another_cup_of_tea/0.html
</url>
</metadata>
<text_body>
I think I'm going to be leaving my job soon.
I went to a six-month-old baby with possible meningitis. The baby had the right sort of rash (although it was only on the back of the knee and, after checking, nowhere else). It had a temperature, but was one of the happiest, most alert children I've ever had the pleasure of meeting. It just didn't seem as if it had meningitis, and trust me, I've seen a fair few children and adults with it so I have a pretty good idea what it looks like.
Then, as in the past, I was left waiting for an ambulance.
For around 45 minutes.
There was no way I was going to be able to transport the patient in my car. It's just not equipped to carry such a small child. We don't have baby seats and as the family didn't have a car they didn't have one either.
So the family ended up phoning a friend to take them to the hospital. The ambulance turned up just as they were getting into their friend's car.
All I had going through my head was the potential newspaper headline 'No Ambulance For Baby Dying Of Killer Bug!'
Later that night I went to a woman who was having an extremely painful miscarriage. There is nothing I can do for that on scene, the patient needs to be in hospital. Thankfully the ambulance wasn't too far behind me, but if I had been waiting on scene then it would have been a very awkward and distressing wait (again, because of the pain, it would have been impossible to transport her in my car).
More and more I'm looking at my watch as an ambulance fails to arrive. It's only a matter of time before I have someone die in front of me while waiting for an ambulance.
So, I'm seriously considering leaving the FRU and going back to work on an ambulance. That way I can pick up sick people, and take them to where they need to be: a hospital.
</text_body>
<questions>
<q id="0" type="Event_duration">
The ambulances probably arrive:
<a id="0" correct="True">
Much later than they are needed.
</a>
<a id="1" correct="False">
Earlier than expected
</a>
<a id="2" correct="False">
not enough information
</a>
<a id="3" correct="False">
as soon as they are needed on the scene for emergencies
</a>
</q>
<q id="1" type="Unanswerable">
Who was the woman's husband?
<a id="0" correct="True">
not enough information
</a>
<a id="1">
one of the patients at the hospital
</a>
<a id="2">
The FRU person
</a>
<a id="3">
The ambulance driver
</a>
</q>
<q id="2" type="Event_duration">
The ambulance coming for the woman with a miscarriage probably arrived:
<a id="0" correct="False">
not enough information
</a>
<a id="1" correct="True">
about ten minutes after the writer
</a>
<a id="2" correct="False">
about fifteen minutes before the writer
</a>