-
Notifications
You must be signed in to change notification settings - Fork 2
/
tool_irb_form_2.html
1206 lines (1115 loc) · 107 KB
/
tool_irb_form_2.html
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
<!doctype html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Evaluation of Automatic Story Generation Systems</title>
<link rel="stylesheet" href="https://code.jquery.com/ui/1.12.1/themes/base/jquery-ui.css">
<script src="https://code.jquery.com/jquery-1.12.4.js"></script>
<script src="https://code.jquery.com/ui/1.12.1/jquery-ui.js"></script>
<script>
function is_touch_device() {
return 'ontouchstart' in window // works on most browsers
|| navigator.maxTouchPoints; // works on IE10/11 and Surface
};
$( document ).ready(function() {
if(is_touch_device()){
$( function() {
$( "input:radio" ).checkboxradio({
icon: false
});
} );
$( function() {
$( document ).tooltip({
show: {
delay: 0
}
});
} );
$( function() {
$( "textarea.resizable" ).resizable({
handles: "se",
containment: "#questions",
minHeight: 40,
minWidth: 200
});
});
$('input:text, input:submit').addClass("ui-button ui-widget ui-widget-content ui-corner-all");
} else {
$( "#tooltips_note" ).remove();
}
$('input:radio').change(function() {
var formData = JSON.stringify($("#questions").serializeArray());
console.log(formData);
$.ajax({
type: "POST",
url: "/json",
data: formData,
dataType: "json",
contentType : "application/json"
});
});
$('textarea').blur(function() {
var formData = JSON.stringify($("#questions").serializeArray());
console.log(formData);
$.ajax({
type: "POST",
url: "/json",
data: formData,
dataType: "json",
contentType : "application/json"
});
});
});
</script>
<style type="text/css">
body { font-family: Arial,Helvetica,sans-serif; font-size: 1em; width: 50em; margin-left: auto; margin-right: auto;}
fieldset { margin-bottom: 1em;}
legend.continuation-title {font-size:1.5em;}
.ui-tooltip {background-color: #F0E68C;}
em, fieldset.rating label, label.rating {text-decoration-color: #9C911D; text-decoration-line: underline;}
em, fieldset.rating label, label.rating {-webkit-text-decoration: #9C911D underline wavy;}
li {border-bottom: 2px dashed #F0E68C;}
p.initial, p.continuation {padding: 0.5em;}
.initial { background-color: #AEBEE3;}
.continuation { background-color: #D0B2E3;}
p.continuation {margin-top: -1em;}
h2 small {font-style: italic;}
.ui-resizable-se { bottom: 17px;}
textarea.resizable {margin-top: 0.25em;}
</style>
</head>
<body>
<form action="/form2" method="POST" id="questions">
<h1>Evaluation of Automatic Story Generation Systems</h1>
<p>In this page we will show you several short story snippets.
We will show you multiple variations of each story. The different variations share a common initial setup (<span class="initial">highlighted in blue</span>) but vary in that each has a different continuation (<span class="continuation">highlighted in purple</span>).
We ask you to read each of them and rate each of the continuations in terms of how well they follows the initial setup and your overall satisfaction with the text.</p>
<p id="tooltips_note">Note that throughout this page, you will find pieces of <em title="This is an example of the additional explanations you may find throughout this page.">text in italics</em>. Feel free to hover your mouse cursor on them to obtain additional explanations.</p>
<p>When you are finished, please click the <strong>Submit</strong> button at the bottom of the page to save your answers.</p>
<input type="hidden" name="sources" value="">
<h2>Story 1 - Variation 1</h2>
<p class="initial">Once there lived a rich merchant with two beautiful daughters. The merchant sent them to marry the kingdom's prince.</p>
<p class="continuation">The younger sister was jealous of her older sister. When her older sister was sleeping, she cut her eyes. She then left her sister to die.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r1-1" id="r1-1-1"><label class="rating" for="r1-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r1-1" id="r1-1-2"><label class="rating" for="r1-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r1-1" id="r1-1-3"><label class="rating" for="r1-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r1-1" id="r1-1-4"><label class="rating" for="r1-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r1-1" id="r1-1-5"><label class="rating" for="r1-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r1-1" id="r1-1-6"><label class="rating" for="r1-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q1-1-1" id="q1-1-1-y"><label for="q1-1-1-y">Yes</label>
<input type="radio" name="q1-1-1" id="q1-1-1-n"><label for="q1-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q1-1-2" id="q1-1-2-y"><label for="q1-1-2-y">Yes</label>
<input type="radio" name="q1-1-2" id="q1-1-2-n"><label for="q1-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q1-1-3" id="q1-1-3-y"><label for="q1-1-3-y">Yes</label>
<input type="radio" name="q1-1-3" id="q1-1-3-n"><label for="q1-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q1-1-4" id="q1-1-4-y"><label for="q1-1-4-y">Yes</label>
<input type="radio" name="q1-1-4" id="q1-1-4-n"><label for="q1-1-4-n">No</label>
<h2>Story 1 - Variation 2</h2>
<p class="initial">Once there lived a rich merchant with two beautiful daughters. The merchant sent them to marry the kingdom's prince.</p>
<p class="continuation">The maidservant was jealous. The maidservant stole the merchant's daughter clothes and left her to be eaten by the wolves.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r1-2" id="r1-2-1"><label class="rating" for="r1-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r1-2" id="r1-2-2"><label class="rating" for="r1-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r1-2" id="r1-2-3"><label class="rating" for="r1-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r1-2" id="r1-2-4"><label class="rating" for="r1-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r1-2" id="r1-2-5"><label class="rating" for="r1-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r1-2" id="r1-2-6"><label class="rating" for="r1-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q1-2-1" id="q1-2-1-y"><label for="q1-2-1-y">Yes</label>
<input type="radio" name="q1-2-1" id="q1-2-1-n"><label for="q1-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q1-2-2" id="q1-2-2-y"><label for="q1-2-2-y">Yes</label>
<input type="radio" name="q1-2-2" id="q1-2-2-n"><label for="q1-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q1-2-3" id="q1-2-3-y"><label for="q1-2-3-y">Yes</label>
<input type="radio" name="q1-2-3" id="q1-2-3-n"><label for="q1-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q1-2-4" id="q1-2-4-y"><label for="q1-2-4-y">Yes</label>
<input type="radio" name="q1-2-4" id="q1-2-4-n"><label for="q1-2-4-n">No</label>
<h2>Story 1 - Variation 3</h2>
<p class="initial">Once there lived a rich merchant with two beautiful daughters. The merchant sent them to marry the kingdom's prince.</p>
<p class="continuation">She was jealous. She stole her older sister's clothes and left her older sister to be eaten by the wolves.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r1-3" id="r1-3-1"><label class="rating" for="r1-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r1-3" id="r1-3-2"><label class="rating" for="r1-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r1-3" id="r1-3-3"><label class="rating" for="r1-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r1-3" id="r1-3-4"><label class="rating" for="r1-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r1-3" id="r1-3-5"><label class="rating" for="r1-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r1-3" id="r1-3-6"><label class="rating" for="r1-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q1-3-1" id="q1-3-1-y"><label for="q1-3-1-y">Yes</label>
<input type="radio" name="q1-3-1" id="q1-3-1-n"><label for="q1-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q1-3-2" id="q1-3-2-y"><label for="q1-3-2-y">Yes</label>
<input type="radio" name="q1-3-2" id="q1-3-2-n"><label for="q1-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q1-3-3" id="q1-3-3-y"><label for="q1-3-3-y">Yes</label>
<input type="radio" name="q1-3-3" id="q1-3-3-n"><label for="q1-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q1-3-4" id="q1-3-4-y"><label for="q1-3-4-y">Yes</label>
<input type="radio" name="q1-3-4" id="q1-3-4-n"><label for="q1-3-4-n">No</label>
<h2>Story 1 - Variation 4</h2>
<p class="initial">Once there lived a rich merchant with two beautiful daughters. The merchant sent them to marry the kingdom's prince.</p>
<p class="continuation">The father kept his daughter had to the forest. The girl became a bull ate the father didn't take it into a bear.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r1-4" id="r1-4-1"><label class="rating" for="r1-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r1-4" id="r1-4-2"><label class="rating" for="r1-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r1-4" id="r1-4-3"><label class="rating" for="r1-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r1-4" id="r1-4-4"><label class="rating" for="r1-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r1-4" id="r1-4-5"><label class="rating" for="r1-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r1-4" id="r1-4-6"><label class="rating" for="r1-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q1-4-1" id="q1-4-1-y"><label for="q1-4-1-y">Yes</label>
<input type="radio" name="q1-4-1" id="q1-4-1-n"><label for="q1-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q1-4-2" id="q1-4-2-y"><label for="q1-4-2-y">Yes</label>
<input type="radio" name="q1-4-2" id="q1-4-2-n"><label for="q1-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q1-4-3" id="q1-4-3-y"><label for="q1-4-3-y">Yes</label>
<input type="radio" name="q1-4-3" id="q1-4-3-n"><label for="q1-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q1-4-4" id="q1-4-4-y"><label for="q1-4-4-y">Yes</label>
<input type="radio" name="q1-4-4" id="q1-4-4-n"><label for="q1-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 2 - Variation 1</h2>
<p class="initial">A woman was once kidnapped by a bear. The woman gave birth to a bearlet who was half-boy and half-bear. Eventually, the woman was able to escape and took the boy with her.</p>
<p class="continuation">When they got back home, the woman's husband could not accept the bearlet. He had a plan to get rid of the bearlet. He told the bearlet that he would only let him stay if he got rid of the water spirits in the lake. The bearlet left not knowing what to do.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r2-1" id="r2-1-1"><label class="rating" for="r2-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r2-1" id="r2-1-2"><label class="rating" for="r2-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r2-1" id="r2-1-3"><label class="rating" for="r2-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r2-1" id="r2-1-4"><label class="rating" for="r2-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r2-1" id="r2-1-5"><label class="rating" for="r2-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r2-1" id="r2-1-6"><label class="rating" for="r2-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q2-1-1" id="q2-1-1-y"><label for="q2-1-1-y">Yes</label>
<input type="radio" name="q2-1-1" id="q2-1-1-n"><label for="q2-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q2-1-2" id="q2-1-2-y"><label for="q2-1-2-y">Yes</label>
<input type="radio" name="q2-1-2" id="q2-1-2-n"><label for="q2-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q2-1-3" id="q2-1-3-y"><label for="q2-1-3-y">Yes</label>
<input type="radio" name="q2-1-3" id="q2-1-3-n"><label for="q2-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q2-1-4" id="q2-1-4-y"><label for="q2-1-4-y">Yes</label>
<input type="radio" name="q2-1-4" id="q2-1-4-n"><label for="q2-1-4-n">No</label>
<h2>Story 2 - Variation 2</h2>
<p class="initial">A woman was once kidnapped by a bear. The woman gave birth to a bearlet who was half-boy and half-bear. Eventually, the woman was able to escape and took the boy with her.</p>
<p class="continuation">The maidservant stole the merchant's daughter clothes and left her to be eaten by the wolves. A beautiful daughter challenged a maidservant to see who could scream the loudest. A maidservant and a beautiful daughter took turns yelling and screaming. A maidservant asked a beautiful daughter to close his eyes. Then, a maidservant smacked a beautiful daughter with a stick.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r2-2" id="r2-2-1"><label class="rating" for="r2-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r2-2" id="r2-2-2"><label class="rating" for="r2-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r2-2" id="r2-2-3"><label class="rating" for="r2-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r2-2" id="r2-2-4"><label class="rating" for="r2-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r2-2" id="r2-2-5"><label class="rating" for="r2-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r2-2" id="r2-2-6"><label class="rating" for="r2-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q2-2-1" id="q2-2-1-y"><label for="q2-2-1-y">Yes</label>
<input type="radio" name="q2-2-1" id="q2-2-1-n"><label for="q2-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q2-2-2" id="q2-2-2-y"><label for="q2-2-2-y">Yes</label>
<input type="radio" name="q2-2-2" id="q2-2-2-n"><label for="q2-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q2-2-3" id="q2-2-3-y"><label for="q2-2-3-y">Yes</label>
<input type="radio" name="q2-2-3" id="q2-2-3-n"><label for="q2-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q2-2-4" id="q2-2-4-y"><label for="q2-2-4-y">Yes</label>
<input type="radio" name="q2-2-4" id="q2-2-4-n"><label for="q2-2-4-n">No</label>
<h2>Story 2 - Variation 3</h2>
<p class="initial">A woman was once kidnapped by a bear. The woman gave birth to a bearlet who was half-boy and half-bear. Eventually, the woman was able to escape and took the boy with her.</p>
<p class="continuation">He had a plan to get rid of the bearlet. He told the bearlet that he would only let him stay if he got rid of the water spirits in the lake. The bearlet left not knowing what to do. A bear ambushed a bearlet but a bearlet was faster than him. A bear saw he could not win and asked a bearlet for forgiveness.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r2-3" id="r2-3-1"><label class="rating" for="r2-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r2-3" id="r2-3-2"><label class="rating" for="r2-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r2-3" id="r2-3-3"><label class="rating" for="r2-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r2-3" id="r2-3-4"><label class="rating" for="r2-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r2-3" id="r2-3-5"><label class="rating" for="r2-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r2-3" id="r2-3-6"><label class="rating" for="r2-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q2-3-1" id="q2-3-1-y"><label for="q2-3-1-y">Yes</label>
<input type="radio" name="q2-3-1" id="q2-3-1-n"><label for="q2-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q2-3-2" id="q2-3-2-y"><label for="q2-3-2-y">Yes</label>
<input type="radio" name="q2-3-2" id="q2-3-2-n"><label for="q2-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q2-3-3" id="q2-3-3-y"><label for="q2-3-3-y">Yes</label>
<input type="radio" name="q2-3-3" id="q2-3-3-n"><label for="q2-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q2-3-4" id="q2-3-4-y"><label for="q2-3-4-y">Yes</label>
<input type="radio" name="q2-3-4" id="q2-3-4-n"><label for="q2-3-4-n">No</label>
<h2>Story 2 - Variation 4</h2>
<p class="initial">A woman was once kidnapped by a bear. The woman gave birth to a bearlet who was half-boy and half-bear. Eventually, the woman was able to escape and took the boy with her.</p>
<p class="continuation">From home, the devil started tormenting the princess of a dragon set their house on. A nearby witch smelled the milk of bread and buried him.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r2-4" id="r2-4-1"><label class="rating" for="r2-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r2-4" id="r2-4-2"><label class="rating" for="r2-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r2-4" id="r2-4-3"><label class="rating" for="r2-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r2-4" id="r2-4-4"><label class="rating" for="r2-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r2-4" id="r2-4-5"><label class="rating" for="r2-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r2-4" id="r2-4-6"><label class="rating" for="r2-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q2-4-1" id="q2-4-1-y"><label for="q2-4-1-y">Yes</label>
<input type="radio" name="q2-4-1" id="q2-4-1-n"><label for="q2-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q2-4-2" id="q2-4-2-y"><label for="q2-4-2-y">Yes</label>
<input type="radio" name="q2-4-2" id="q2-4-2-n"><label for="q2-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q2-4-3" id="q2-4-3-y"><label for="q2-4-3-y">Yes</label>
<input type="radio" name="q2-4-3" id="q2-4-3-n"><label for="q2-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q2-4-4" id="q2-4-4-y"><label for="q2-4-4-y">Yes</label>
<input type="radio" name="q2-4-4" id="q2-4-4-n"><label for="q2-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 3 - Variation 1</h2>
<p class="initial">A soldier was given leave from his company. He had only a piece of bread, a knapsack and a fiddle. He was happy and left playing the fiddle. A nearby devil heard the fiddle. The devil approached the soldier and asked him to teach him how to play in exchange for a favor. The soldier taught the devil how to play but did not ask the devil for any favors. They parted ways.</p>
<p class="continuation">After some time, the devil was tormenting the princess of the kingdom. The king issued a call asking for help. The soldier answered the call and interviewed with the king. He assured the king he would be able to free the princess from her torments.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r3-1" id="r3-1-1"><label class="rating" for="r3-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r3-1" id="r3-1-2"><label class="rating" for="r3-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r3-1" id="r3-1-3"><label class="rating" for="r3-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r3-1" id="r3-1-4"><label class="rating" for="r3-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r3-1" id="r3-1-5"><label class="rating" for="r3-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r3-1" id="r3-1-6"><label class="rating" for="r3-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q3-1-1" id="q3-1-1-y"><label for="q3-1-1-y">Yes</label>
<input type="radio" name="q3-1-1" id="q3-1-1-n"><label for="q3-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q3-1-2" id="q3-1-2-y"><label for="q3-1-2-y">Yes</label>
<input type="radio" name="q3-1-2" id="q3-1-2-n"><label for="q3-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q3-1-3" id="q3-1-3-y"><label for="q3-1-3-y">Yes</label>
<input type="radio" name="q3-1-3" id="q3-1-3-n"><label for="q3-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q3-1-4" id="q3-1-4-y"><label for="q3-1-4-y">Yes</label>
<input type="radio" name="q3-1-4" id="q3-1-4-n"><label for="q3-1-4-n">No</label>
<h2>Story 3 - Variation 2</h2>
<p class="initial">A soldier was given leave from his company. He had only a piece of bread, a knapsack and a fiddle. He was happy and left playing the fiddle. A nearby devil heard the fiddle. The devil approached the soldier and asked him to teach him how to play in exchange for a favor. The soldier taught the devil how to play but did not ask the devil for any favors. They parted ways.</p>
<p class="continuation">A soldier came the next day but could not find A soldier. A soldier cursed A soldier and transformed him into a cat. Years passed and everyday the mother would sing to A soldier and tell him about his story.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r3-2" id="r3-2-1"><label class="rating" for="r3-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r3-2" id="r3-2-2"><label class="rating" for="r3-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r3-2" id="r3-2-3"><label class="rating" for="r3-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r3-2" id="r3-2-4"><label class="rating" for="r3-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r3-2" id="r3-2-5"><label class="rating" for="r3-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r3-2" id="r3-2-6"><label class="rating" for="r3-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q3-2-1" id="q3-2-1-y"><label for="q3-2-1-y">Yes</label>
<input type="radio" name="q3-2-1" id="q3-2-1-n"><label for="q3-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q3-2-2" id="q3-2-2-y"><label for="q3-2-2-y">Yes</label>
<input type="radio" name="q3-2-2" id="q3-2-2-n"><label for="q3-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q3-2-3" id="q3-2-3-y"><label for="q3-2-3-y">Yes</label>
<input type="radio" name="q3-2-3" id="q3-2-3-n"><label for="q3-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q3-2-4" id="q3-2-4-y"><label for="q3-2-4-y">Yes</label>
<input type="radio" name="q3-2-4" id="q3-2-4-n"><label for="q3-2-4-n">No</label>
<h2>Story 3 - Variation 3</h2>
<p class="initial">A soldier was given leave from his company. He had only a piece of bread, a knapsack and a fiddle. He was happy and left playing the fiddle. A nearby devil heard the fiddle. The devil approached the soldier and asked him to teach him how to play in exchange for a favor. The soldier taught the devil how to play but did not ask the devil for any favors. They parted ways.</p>
<p class="continuation">A soldier came the next day but could not find the boy. A soldier cursed the boy and transformed him into a cat. Years passed and A nearby devil would sing to the cat and tell him about his story.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r3-3" id="r3-3-1"><label class="rating" for="r3-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r3-3" id="r3-3-2"><label class="rating" for="r3-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r3-3" id="r3-3-3"><label class="rating" for="r3-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r3-3" id="r3-3-4"><label class="rating" for="r3-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r3-3" id="r3-3-5"><label class="rating" for="r3-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r3-3" id="r3-3-6"><label class="rating" for="r3-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q3-3-1" id="q3-3-1-y"><label for="q3-3-1-y">Yes</label>
<input type="radio" name="q3-3-1" id="q3-3-1-n"><label for="q3-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q3-3-2" id="q3-3-2-y"><label for="q3-3-2-y">Yes</label>
<input type="radio" name="q3-3-2" id="q3-3-2-n"><label for="q3-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q3-3-3" id="q3-3-3-y"><label for="q3-3-3-y">Yes</label>
<input type="radio" name="q3-3-3" id="q3-3-3-n"><label for="q3-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q3-3-4" id="q3-3-4-y"><label for="q3-3-4-y">Yes</label>
<input type="radio" name="q3-3-4" id="q3-3-4-n"><label for="q3-3-4-n">No</label>
<h2>Story 3 - Variation 4</h2>
<p class="initial">A soldier was given leave from his company. He had only a piece of bread, a knapsack and a fiddle. He was happy and left playing the fiddle. A nearby devil heard the fiddle. The devil approached the soldier and asked him to teach him how to play in exchange for a favor. The soldier taught the devil how to play but did not ask the devil for any favors. They parted ways.</p>
<p class="continuation">Baba Yaga saw them and tried it on fire but then the baby brother and the crops and when he devised a bad winter. The father did not accept the kid to meet with three heads saw them and buried him.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r3-4" id="r3-4-1"><label class="rating" for="r3-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r3-4" id="r3-4-2"><label class="rating" for="r3-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r3-4" id="r3-4-3"><label class="rating" for="r3-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r3-4" id="r3-4-4"><label class="rating" for="r3-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r3-4" id="r3-4-5"><label class="rating" for="r3-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r3-4" id="r3-4-6"><label class="rating" for="r3-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q3-4-1" id="q3-4-1-y"><label for="q3-4-1-y">Yes</label>
<input type="radio" name="q3-4-1" id="q3-4-1-n"><label for="q3-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q3-4-2" id="q3-4-2-y"><label for="q3-4-2-y">Yes</label>
<input type="radio" name="q3-4-2" id="q3-4-2-n"><label for="q3-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q3-4-3" id="q3-4-3-y"><label for="q3-4-3-y">Yes</label>
<input type="radio" name="q3-4-3" id="q3-4-3-n"><label for="q3-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q3-4-4" id="q3-4-4-y"><label for="q3-4-4-y">Yes</label>
<input type="radio" name="q3-4-4" id="q3-4-4-n"><label for="q3-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 4 - Variation 1</h2>
<p class="initial">Once upon a time there was a happy queen with a son and a daughter. In the kingdom lived a witch that was jealous of their happiness. The witch devised a plan to ruin their family. The witch visited them. She gave the prince a ring and told him that he would be happy as long as he married a girl who the ring would fit.</p>
<p class="continuation">Years passed but the boy could not find a girl who the ring would fit. One day, his sister saw the ring and tried it on. The ring fit perfectly and she couldn't take it off. He immediately asked her to marry him. The girl panicked and escaped the palace.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r4-1" id="r4-1-1"><label class="rating" for="r4-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r4-1" id="r4-1-2"><label class="rating" for="r4-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r4-1" id="r4-1-3"><label class="rating" for="r4-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r4-1" id="r4-1-4"><label class="rating" for="r4-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r4-1" id="r4-1-5"><label class="rating" for="r4-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r4-1" id="r4-1-6"><label class="rating" for="r4-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q4-1-1" id="q4-1-1-y"><label for="q4-1-1-y">Yes</label>
<input type="radio" name="q4-1-1" id="q4-1-1-n"><label for="q4-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q4-1-2" id="q4-1-2-y"><label for="q4-1-2-y">Yes</label>
<input type="radio" name="q4-1-2" id="q4-1-2-n"><label for="q4-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q4-1-3" id="q4-1-3-y"><label for="q4-1-3-y">Yes</label>
<input type="radio" name="q4-1-3" id="q4-1-3-n"><label for="q4-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q4-1-4" id="q4-1-4-y"><label for="q4-1-4-y">Yes</label>
<input type="radio" name="q4-1-4" id="q4-1-4-n"><label for="q4-1-4-n">No</label>
<h2>Story 4 - Variation 2</h2>
<p class="initial">Once upon a time there was a happy queen with a son and a daughter. In the kingdom lived a witch that was jealous of their happiness. The witch devised a plan to ruin their family. The witch visited them. She gave the prince a ring and told him that he would be happy as long as he married a girl who the ring would fit.</p>
<p class="continuation">The soldier accepted the king's orders and prepared to leave. The king issued a call for help. The king responded to the call. The king told The king he would make The king a nobleman is The king could rescue a bride.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r4-2" id="r4-2-1"><label class="rating" for="r4-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r4-2" id="r4-2-2"><label class="rating" for="r4-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r4-2" id="r4-2-3"><label class="rating" for="r4-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r4-2" id="r4-2-4"><label class="rating" for="r4-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r4-2" id="r4-2-5"><label class="rating" for="r4-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r4-2" id="r4-2-6"><label class="rating" for="r4-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q4-2-1" id="q4-2-1-y"><label for="q4-2-1-y">Yes</label>
<input type="radio" name="q4-2-1" id="q4-2-1-n"><label for="q4-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q4-2-2" id="q4-2-2-y"><label for="q4-2-2-y">Yes</label>
<input type="radio" name="q4-2-2" id="q4-2-2-n"><label for="q4-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q4-2-3" id="q4-2-3-y"><label for="q4-2-3-y">Yes</label>
<input type="radio" name="q4-2-3" id="q4-2-3-n"><label for="q4-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q4-2-4" id="q4-2-4-y"><label for="q4-2-4-y">Yes</label>
<input type="radio" name="q4-2-4" id="q4-2-4-n"><label for="q4-2-4-n">No</label>
<h2>Story 4 - Variation 3</h2>
<p class="initial">Once upon a time there was a happy queen with a son and a daughter. In the kingdom lived a witch that was jealous of their happiness. The witch devised a plan to ruin their family. The witch visited them. She gave the prince a ring and told him that he would be happy as long as he married a girl who the ring would fit.</p>
<p class="continuation">Their father threatened to marry them if he would not find a bride. The girl was terrified. She decided to try to find a bride for her brother.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r4-3" id="r4-3-1"><label class="rating" for="r4-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r4-3" id="r4-3-2"><label class="rating" for="r4-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r4-3" id="r4-3-3"><label class="rating" for="r4-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r4-3" id="r4-3-4"><label class="rating" for="r4-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r4-3" id="r4-3-5"><label class="rating" for="r4-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r4-3" id="r4-3-6"><label class="rating" for="r4-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q4-3-1" id="q4-3-1-y"><label for="q4-3-1-y">Yes</label>
<input type="radio" name="q4-3-1" id="q4-3-1-n"><label for="q4-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q4-3-2" id="q4-3-2-y"><label for="q4-3-2-y">Yes</label>
<input type="radio" name="q4-3-2" id="q4-3-2-n"><label for="q4-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q4-3-3" id="q4-3-3-y"><label for="q4-3-3-y">Yes</label>
<input type="radio" name="q4-3-3" id="q4-3-3-n"><label for="q4-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q4-3-4" id="q4-3-4-y"><label for="q4-3-4-y">Yes</label>
<input type="radio" name="q4-3-4" id="q4-3-4-n"><label for="q4-3-4-n">No</label>
<h2>Story 4 - Variation 4</h2>
<p class="initial">Once upon a time there was a happy queen with a son and a daughter. In the kingdom lived a witch that was jealous of their happiness. The witch devised a plan to ruin their family. The witch visited them. She gave the prince a ring and told him that he would be happy as long as he married a girl who the ring would fit.</p>
<p class="continuation">Once kidnapped princess had to get rid of her stepsister despised Alenka was no food. The stepmother.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r4-4" id="r4-4-1"><label class="rating" for="r4-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r4-4" id="r4-4-2"><label class="rating" for="r4-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r4-4" id="r4-4-3"><label class="rating" for="r4-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r4-4" id="r4-4-4"><label class="rating" for="r4-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r4-4" id="r4-4-5"><label class="rating" for="r4-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r4-4" id="r4-4-6"><label class="rating" for="r4-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q4-4-1" id="q4-4-1-y"><label for="q4-4-1-y">Yes</label>
<input type="radio" name="q4-4-1" id="q4-4-1-n"><label for="q4-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q4-4-2" id="q4-4-2-y"><label for="q4-4-2-y">Yes</label>
<input type="radio" name="q4-4-2" id="q4-4-2-n"><label for="q4-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q4-4-3" id="q4-4-3-y"><label for="q4-4-3-y">Yes</label>
<input type="radio" name="q4-4-3" id="q4-4-3-n"><label for="q4-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q4-4-4" id="q4-4-4-y"><label for="q4-4-4-y">Yes</label>
<input type="radio" name="q4-4-4" id="q4-4-4-n"><label for="q4-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 5 - Variation 1</h2>
<p class="initial">A poor mother lived in a little house with her two sons. There was famine and she could barely feed her sons. One day a hungry snake walked nearby. The snake looked through the window and saw the younger son unattended.</p>
<p class="continuation">The snake crawled in and took the younger son with her.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r5-1" id="r5-1-1"><label class="rating" for="r5-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r5-1" id="r5-1-2"><label class="rating" for="r5-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r5-1" id="r5-1-3"><label class="rating" for="r5-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r5-1" id="r5-1-4"><label class="rating" for="r5-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r5-1" id="r5-1-5"><label class="rating" for="r5-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r5-1" id="r5-1-6"><label class="rating" for="r5-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q5-1-1" id="q5-1-1-y"><label for="q5-1-1-y">Yes</label>
<input type="radio" name="q5-1-1" id="q5-1-1-n"><label for="q5-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q5-1-2" id="q5-1-2-y"><label for="q5-1-2-y">Yes</label>
<input type="radio" name="q5-1-2" id="q5-1-2-n"><label for="q5-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q5-1-3" id="q5-1-3-y"><label for="q5-1-3-y">Yes</label>
<input type="radio" name="q5-1-3" id="q5-1-3-n"><label for="q5-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q5-1-4" id="q5-1-4-y"><label for="q5-1-4-y">Yes</label>
<input type="radio" name="q5-1-4" id="q5-1-4-n"><label for="q5-1-4-n">No</label>
<h2>Story 5 - Variation 2</h2>
<p class="initial">A poor mother lived in a little house with her two sons. There was famine and she could barely feed her sons. One day a hungry snake walked nearby. The snake looked through the window and saw the younger son unattended.</p>
<p class="continuation">Her brother could not find a bride. Their father threatened to marry them if he would not find a bride. The girl was terrified.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r5-2" id="r5-2-1"><label class="rating" for="r5-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r5-2" id="r5-2-2"><label class="rating" for="r5-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r5-2" id="r5-2-3"><label class="rating" for="r5-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r5-2" id="r5-2-4"><label class="rating" for="r5-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r5-2" id="r5-2-5"><label class="rating" for="r5-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r5-2" id="r5-2-6"><label class="rating" for="r5-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q5-2-1" id="q5-2-1-y"><label for="q5-2-1-y">Yes</label>
<input type="radio" name="q5-2-1" id="q5-2-1-n"><label for="q5-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q5-2-2" id="q5-2-2-y"><label for="q5-2-2-y">Yes</label>
<input type="radio" name="q5-2-2" id="q5-2-2-n"><label for="q5-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q5-2-3" id="q5-2-3-y"><label for="q5-2-3-y">Yes</label>
<input type="radio" name="q5-2-3" id="q5-2-3-n"><label for="q5-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q5-2-4" id="q5-2-4-y"><label for="q5-2-4-y">Yes</label>
<input type="radio" name="q5-2-4" id="q5-2-4-n"><label for="q5-2-4-n">No</label>
<h2>Story 5 - Variation 3</h2>
<p class="initial">A poor mother lived in a little house with her two sons. There was famine and she could barely feed her sons. One day a hungry snake walked nearby. The snake looked through the window and saw the younger son unattended.</p>
<p class="continuation">The mother saw her younger son missing. She asked her older son to go look for his younger brother. The older brother was very responsible and agreed. He left the house and went into the woods.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r5-3" id="r5-3-1"><label class="rating" for="r5-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r5-3" id="r5-3-2"><label class="rating" for="r5-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r5-3" id="r5-3-3"><label class="rating" for="r5-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r5-3" id="r5-3-4"><label class="rating" for="r5-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r5-3" id="r5-3-5"><label class="rating" for="r5-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r5-3" id="r5-3-6"><label class="rating" for="r5-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q5-3-1" id="q5-3-1-y"><label for="q5-3-1-y">Yes</label>
<input type="radio" name="q5-3-1" id="q5-3-1-n"><label for="q5-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q5-3-2" id="q5-3-2-y"><label for="q5-3-2-y">Yes</label>
<input type="radio" name="q5-3-2" id="q5-3-2-n"><label for="q5-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q5-3-3" id="q5-3-3-y"><label for="q5-3-3-y">Yes</label>
<input type="radio" name="q5-3-3" id="q5-3-3-n"><label for="q5-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q5-3-4" id="q5-3-4-y"><label for="q5-3-4-y">Yes</label>
<input type="radio" name="q5-3-4" id="q5-3-4-n"><label for="q5-3-4-n">No</label>
<h2>Story 5 - Variation 4</h2>
<p class="initial">A poor mother lived in a little house with her two sons. There was famine and she could barely feed her sons. One day a hungry snake walked nearby. The snake looked through the window and saw the younger son unattended.</p>
<p class="continuation">A dragon kidnapped by the cow grew up he immediately asked her father and threw him. The girl once kidnapped the father and stepmother and escaped the baby brother unattended and threw him into the bull came to eat Vasili.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r5-4" id="r5-4-1"><label class="rating" for="r5-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r5-4" id="r5-4-2"><label class="rating" for="r5-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r5-4" id="r5-4-3"><label class="rating" for="r5-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r5-4" id="r5-4-4"><label class="rating" for="r5-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r5-4" id="r5-4-5"><label class="rating" for="r5-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r5-4" id="r5-4-6"><label class="rating" for="r5-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q5-4-1" id="q5-4-1-y"><label for="q5-4-1-y">Yes</label>
<input type="radio" name="q5-4-1" id="q5-4-1-n"><label for="q5-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q5-4-2" id="q5-4-2-y"><label for="q5-4-2-y">Yes</label>
<input type="radio" name="q5-4-2" id="q5-4-2-n"><label for="q5-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q5-4-3" id="q5-4-3-y"><label for="q5-4-3-y">Yes</label>
<input type="radio" name="q5-4-3" id="q5-4-3-n"><label for="q5-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q5-4-4" id="q5-4-4-y"><label for="q5-4-4-y">Yes</label>
<input type="radio" name="q5-4-4" id="q5-4-4-n"><label for="q5-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 6 - Variation 1</h2>
<p class="initial">An old couple lived in a hut with their adopted son. The boy had a magical bird that could control the weather. They used the bird's predictions to make it rain on their crops and were always prosperous. A jealous neighbor learned about the bird. The neighbor told the boy he needed to borrow the bird. But the boy wouldn't let him take it.</p>
<p class="continuation">The neighbor took the bird and locked it into a cage. A mouse nearby saw everything.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r6-1" id="r6-1-1"><label class="rating" for="r6-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r6-1" id="r6-1-2"><label class="rating" for="r6-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r6-1" id="r6-1-3"><label class="rating" for="r6-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r6-1" id="r6-1-4"><label class="rating" for="r6-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r6-1" id="r6-1-5"><label class="rating" for="r6-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r6-1" id="r6-1-6"><label class="rating" for="r6-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q6-1-1" id="q6-1-1-y"><label for="q6-1-1-y">Yes</label>
<input type="radio" name="q6-1-1" id="q6-1-1-n"><label for="q6-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q6-1-2" id="q6-1-2-y"><label for="q6-1-2-y">Yes</label>
<input type="radio" name="q6-1-2" id="q6-1-2-n"><label for="q6-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q6-1-3" id="q6-1-3-y"><label for="q6-1-3-y">Yes</label>
<input type="radio" name="q6-1-3" id="q6-1-3-n"><label for="q6-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q6-1-4" id="q6-1-4-y"><label for="q6-1-4-y">Yes</label>
<input type="radio" name="q6-1-4" id="q6-1-4-n"><label for="q6-1-4-n">No</label>
<h2>Story 6 - Variation 2</h2>
<p class="initial">An old couple lived in a hut with their adopted son. The boy had a magical bird that could control the weather. They used the bird's predictions to make it rain on their crops and were always prosperous. A jealous neighbor learned about the bird. The neighbor told the boy he needed to borrow the bird. But the boy wouldn't let him take it.</p>
<p class="continuation">The mouse came the next day but could not find the mouse. The mouse cursed the mouse and transformed him into a cat.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r6-2" id="r6-2-1"><label class="rating" for="r6-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r6-2" id="r6-2-2"><label class="rating" for="r6-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r6-2" id="r6-2-3"><label class="rating" for="r6-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r6-2" id="r6-2-4"><label class="rating" for="r6-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r6-2" id="r6-2-5"><label class="rating" for="r6-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r6-2" id="r6-2-6"><label class="rating" for="r6-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q6-2-1" id="q6-2-1-y"><label for="q6-2-1-y">Yes</label>
<input type="radio" name="q6-2-1" id="q6-2-1-n"><label for="q6-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q6-2-2" id="q6-2-2-y"><label for="q6-2-2-y">Yes</label>
<input type="radio" name="q6-2-2" id="q6-2-2-n"><label for="q6-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q6-2-3" id="q6-2-3-y"><label for="q6-2-3-y">Yes</label>
<input type="radio" name="q6-2-3" id="q6-2-3-n"><label for="q6-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q6-2-4" id="q6-2-4-y"><label for="q6-2-4-y">Yes</label>
<input type="radio" name="q6-2-4" id="q6-2-4-n"><label for="q6-2-4-n">No</label>
<h2>Story 6 - Variation 3</h2>
<p class="initial">An old couple lived in a hut with their adopted son. The boy had a magical bird that could control the weather. They used the bird's predictions to make it rain on their crops and were always prosperous. A jealous neighbor learned about the bird. The neighbor told the boy he needed to borrow the bird. But the boy wouldn't let him take it.</p>
<p class="continuation">A jealous neighbor came the next day but could not find the mouse. A jealous neighbor cursed the mouse and transformed him into a cat.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r6-3" id="r6-3-1"><label class="rating" for="r6-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r6-3" id="r6-3-2"><label class="rating" for="r6-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r6-3" id="r6-3-3"><label class="rating" for="r6-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r6-3" id="r6-3-4"><label class="rating" for="r6-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r6-3" id="r6-3-5"><label class="rating" for="r6-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r6-3" id="r6-3-6"><label class="rating" for="r6-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q6-3-1" id="q6-3-1-y"><label for="q6-3-1-y">Yes</label>
<input type="radio" name="q6-3-1" id="q6-3-1-n"><label for="q6-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q6-3-2" id="q6-3-2-y"><label for="q6-3-2-y">Yes</label>
<input type="radio" name="q6-3-2" id="q6-3-2-n"><label for="q6-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q6-3-3" id="q6-3-3-y"><label for="q6-3-3-y">Yes</label>
<input type="radio" name="q6-3-3" id="q6-3-3-n"><label for="q6-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q6-3-4" id="q6-3-4-y"><label for="q6-3-4-y">Yes</label>
<input type="radio" name="q6-3-4" id="q6-3-4-n"><label for="q6-3-4-n">No</label>
<h2>Story 6 - Variation 4</h2>
<p class="initial">An old couple lived in a hut with their adopted son. The boy had a magical bird that could control the weather. They used the bird's predictions to make it rain on their crops and were always prosperous. A jealous neighbor learned about the bird. The neighbor told the boy he needed to borrow the bird. But the boy wouldn't let him take it.</p>
<p class="continuation">The witch grabbed the family’s house and their fields. A wicked neighbor took over the bull came to eat every single child if his town.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r6-4" id="r6-4-1"><label class="rating" for="r6-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r6-4" id="r6-4-2"><label class="rating" for="r6-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r6-4" id="r6-4-3"><label class="rating" for="r6-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r6-4" id="r6-4-4"><label class="rating" for="r6-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r6-4" id="r6-4-5"><label class="rating" for="r6-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r6-4" id="r6-4-6"><label class="rating" for="r6-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q6-4-1" id="q6-4-1-y"><label for="q6-4-1-y">Yes</label>
<input type="radio" name="q6-4-1" id="q6-4-1-n"><label for="q6-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q6-4-2" id="q6-4-2-y"><label for="q6-4-2-y">Yes</label>
<input type="radio" name="q6-4-2" id="q6-4-2-n"><label for="q6-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q6-4-3" id="q6-4-3-y"><label for="q6-4-3-y">Yes</label>
<input type="radio" name="q6-4-3" id="q6-4-3-n"><label for="q6-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q6-4-4" id="q6-4-4-y"><label for="q6-4-4-y">Yes</label>
<input type="radio" name="q6-4-4" id="q6-4-4-n"><label for="q6-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 7 - Variation 1</h2>
<p class="initial">Once upon a time, in a land, far, far away. There lived a girl with her baby brother and her mother. One day, the mother went to the market. The mother told the girl to watch her brother. The girl started playing and soon forgot what her mother had asked her.</p>
<p class="continuation">A nearby witch smelled the baby brother and took him away.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r7-1" id="r7-1-1"><label class="rating" for="r7-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r7-1" id="r7-1-2"><label class="rating" for="r7-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r7-1" id="r7-1-3"><label class="rating" for="r7-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r7-1" id="r7-1-4"><label class="rating" for="r7-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r7-1" id="r7-1-5"><label class="rating" for="r7-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r7-1" id="r7-1-6"><label class="rating" for="r7-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q7-1-1" id="q7-1-1-y"><label for="q7-1-1-y">Yes</label>
<input type="radio" name="q7-1-1" id="q7-1-1-n"><label for="q7-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q7-1-2" id="q7-1-2-y"><label for="q7-1-2-y">Yes</label>
<input type="radio" name="q7-1-2" id="q7-1-2-n"><label for="q7-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q7-1-3" id="q7-1-3-y"><label for="q7-1-3-y">Yes</label>
<input type="radio" name="q7-1-3" id="q7-1-3-n"><label for="q7-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q7-1-4" id="q7-1-4-y"><label for="q7-1-4-y">Yes</label>
<input type="radio" name="q7-1-4" id="q7-1-4-n"><label for="q7-1-4-n">No</label>
<h2>Story 7 - Variation 2</h2>
<p class="initial">Once upon a time, in a land, far, far away. There lived a girl with her baby brother and her mother. One day, the mother went to the market. The mother told the girl to watch her brother. The girl started playing and soon forgot what her mother had asked her.</p>
<p class="continuation">After a while, the girl came back and realized her baby brother was missing. The girl suspected the witch may be behind.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r7-2" id="r7-2-1"><label class="rating" for="r7-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r7-2" id="r7-2-2"><label class="rating" for="r7-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r7-2" id="r7-2-3"><label class="rating" for="r7-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r7-2" id="r7-2-4"><label class="rating" for="r7-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r7-2" id="r7-2-5"><label class="rating" for="r7-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r7-2" id="r7-2-6"><label class="rating" for="r7-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q7-2-1" id="q7-2-1-y"><label for="q7-2-1-y">Yes</label>
<input type="radio" name="q7-2-1" id="q7-2-1-n"><label for="q7-2-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q7-2-2" id="q7-2-2-y"><label for="q7-2-2-y">Yes</label>
<input type="radio" name="q7-2-2" id="q7-2-2-n"><label for="q7-2-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q7-2-3" id="q7-2-3-y"><label for="q7-2-3-y">Yes</label>
<input type="radio" name="q7-2-3" id="q7-2-3-n"><label for="q7-2-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q7-2-4" id="q7-2-4-y"><label for="q7-2-4-y">Yes</label>
<input type="radio" name="q7-2-4" id="q7-2-4-n"><label for="q7-2-4-n">No</label>
<h2>Story 7 - Variation 3</h2>
<p class="initial">Once upon a time, in a land, far, far away. There lived a girl with her baby brother and her mother. One day, the mother went to the market. The mother told the girl to watch her brother. The girl started playing and soon forgot what her mother had asked her.</p>
<p class="continuation">The witch came the next day but could not find the girl. The witch cursed the girl and transformed him into a cat.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r7-3" id="r7-3-1"><label class="rating" for="r7-3-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r7-3" id="r7-3-2"><label class="rating" for="r7-3-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r7-3" id="r7-3-3"><label class="rating" for="r7-3-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r7-3" id="r7-3-4"><label class="rating" for="r7-3-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r7-3" id="r7-3-5"><label class="rating" for="r7-3-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r7-3" id="r7-3-6"><label class="rating" for="r7-3-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q7-3-1" id="q7-3-1-y"><label for="q7-3-1-y">Yes</label>
<input type="radio" name="q7-3-1" id="q7-3-1-n"><label for="q7-3-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q7-3-2" id="q7-3-2-y"><label for="q7-3-2-y">Yes</label>
<input type="radio" name="q7-3-2" id="q7-3-2-n"><label for="q7-3-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q7-3-3" id="q7-3-3-y"><label for="q7-3-3-y">Yes</label>
<input type="radio" name="q7-3-3" id="q7-3-3-n"><label for="q7-3-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q7-3-4" id="q7-3-4-y"><label for="q7-3-4-y">Yes</label>
<input type="radio" name="q7-3-4" id="q7-3-4-n"><label for="q7-3-4-n">No</label>
<h2>Story 7 - Variation 4</h2>
<p class="initial">Once upon a time, in a land, far, far away. There lived a girl with her baby brother and her mother. One day, the mother went to the market. The mother told the girl to watch her brother. The girl started playing and soon forgot what her mother had asked her.</p>
<p class="continuation">From home, the old mother hid the merchant's daughter had been ruined and her father kept his daughter Alenka.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r7-4" id="r7-4-1"><label class="rating" for="r7-4-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r7-4" id="r7-4-2"><label class="rating" for="r7-4-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r7-4" id="r7-4-3"><label class="rating" for="r7-4-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r7-4" id="r7-4-4"><label class="rating" for="r7-4-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r7-4" id="r7-4-5"><label class="rating" for="r7-4-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r7-4" id="r7-4-6"><label class="rating" for="r7-4-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q7-4-1" id="q7-4-1-y"><label for="q7-4-1-y">Yes</label>
<input type="radio" name="q7-4-1" id="q7-4-1-n"><label for="q7-4-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q7-4-2" id="q7-4-2-y"><label for="q7-4-2-y">Yes</label>
<input type="radio" name="q7-4-2" id="q7-4-2-n"><label for="q7-4-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q7-4-3" id="q7-4-3-y"><label for="q7-4-3-y">Yes</label>
<input type="radio" name="q7-4-3" id="q7-4-3-n"><label for="q7-4-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q7-4-4" id="q7-4-4-y"><label for="q7-4-4-y">Yes</label>
<input type="radio" name="q7-4-4" id="q7-4-4-n"><label for="q7-4-4-n">No</label>
<input type="hidden" name="sources" value="">
<h2>Story 8 - Variation 1</h2>
<p class="initial">There once lived a poor and unlucky peasant.</p>
<p class="continuation">He never married and was very lonely.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r8-1" id="r8-1-1"><label class="rating" for="r8-1-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r8-1" id="r8-1-2"><label class="rating" for="r8-1-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r8-1" id="r8-1-3"><label class="rating" for="r8-1-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r8-1" id="r8-1-4"><label class="rating" for="r8-1-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r8-1" id="r8-1-5"><label class="rating" for="r8-1-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r8-1" id="r8-1-6"><label class="rating" for="r8-1-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q8-1-1" id="q8-1-1-y"><label for="q8-1-1-y">Yes</label>
<input type="radio" name="q8-1-1" id="q8-1-1-n"><label for="q8-1-1-n">No</label>
<br/>
Were the <em title="Persons or animals portrayed in the story.">characters</em> mentioned in the continuation coherent with the initial story setup?
<input type="radio" name="q8-1-2" id="q8-1-2-y"><label for="q8-1-2-y">Yes</label>
<input type="radio" name="q8-1-2" id="q8-1-2-n"><label for="q8-1-2-n">No</label>
<br/>
Was there any mismatch between the characters mentioned within the continuation?
<input type="radio" name="q8-1-3" id="q8-1-3-y"><label for="q8-1-3-y">Yes</label>
<input type="radio" name="q8-1-3" id="q8-1-3-n"><label for="q8-1-3-n">No</label>
<br/>
Were there other issues in the text such as missing or extraneous words or punctuation?
<input type="radio" name="q8-1-4" id="q8-1-4-y"><label for="q8-1-4-y">Yes</label>
<input type="radio" name="q8-1-4" id="q8-1-4-n"><label for="q8-1-4-n">No</label>
<h2>Story 8 - Variation 2</h2>
<p class="initial">There once lived a poor and unlucky peasant.</p>
<p class="continuation">He wanted revenge and ran after the dragon but got lost.</p>
How do you rate this story?
(<em title="The story makes no sense or there were major issues in the text that make it incomprehensible.">worst</em>)
<input type="radio" name="r8-2" id="r8-2-1"><label class="rating" for="r8-2-1" title="The story makes no sense or there were major issues in the text that make it incomprehensible.">1</label>
<input type="radio" name="r8-2" id="r8-2-2"><label class="rating" for="r8-2-2"title="The story makes little sense or issues in the text make it difficult to follow.">2</label>
<input type="radio" name="r8-2" id="r8-2-3"><label class="rating" for="r8-2-3"title="There were major issues with the story and text.">3</label>
<input type="radio" name="r8-2" id="r8-2-4"><label class="rating" for="r8-2-4"title="There were minor issues with the story and text.">4</label>
<input type="radio" name="r8-2" id="r8-2-5"><label class="rating" for="r8-2-5"title="The story makes sense but there were minor issues in the text.">5</label>
<input type="radio" name="r8-2" id="r8-2-6"><label class="rating" for="r8-2-6"title="The story was well written and enjoyable.">6</label>
(<em The story was well written and enjoyable.>best</em>)
<br/>
Did the <em title="The events described in the story.">plot</em> of this continuation follow reasonably from that of the initial setup?
<input type="radio" name="q8-2-1" id="q8-2-1-y"><label for="q8-2-1-y">Yes</label>
<input type="radio" name="q8-2-1" id="q8-2-1-n"><label for="q8-2-1-n">No</label>
<br/>