-
Notifications
You must be signed in to change notification settings - Fork 6
/
IBA_04_Alaska-Pepe_MG.conllu
7289 lines (7054 loc) · 458 KB
/
IBA_04_Alaska-Pepe_MG.conllu
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
# sent_id = IBA_04_Alaska-Pepe_MG__1
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = e get many tings wen I no dey like for many people body //
# text_en = There are a lot of things I don’t like about a lot of people.
# text_ortho = E get many tings wen I no dey like for many people body.
1 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 2 subj@expl _ AlignBegin=2740|AlignEnd=3140|Gloss=NOM.SG.3
2 get get VERB _ _ 0 root _ AlignBegin=3140|AlignEnd=3300|Gloss=get
3 many many ADJ _ _ 4 mod _ AlignBegin=3300|AlignEnd=3590|Gloss=many
4 tings tings NOUN _ Number=Plur 2 comp:obj@agent _ AlignBegin=3590|AlignEnd=3930|Gloss=thing.PL
5 wen wey SCONJ _ _ 4 mod@relcl _ AlignBegin=3930|AlignEnd=4140|Gloss=REL
6 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 7 subj _ AlignBegin=4140|AlignEnd=4230|Gloss=NOM.SG.1
7 no no AUX _ Polarity=Neg 5 comp:obj _ AlignBegin=4230|AlignEnd=4400|Gloss=NEG
8 dey dey AUX _ Aspect=Imp 7 comp:aux _ AlignBegin=4400|AlignEnd=4810|Gloss=IPFV
9 like like VERB _ _ 8 comp:aux _ AlignBegin=4810|AlignEnd=5120|Gloss=like
10 for for ADP _ _ 9 comp:obl _ AlignBegin=5120|AlignEnd=5400|Gloss=for
11 many many ADJ _ _ 13 mod _ AlignBegin=5400|AlignEnd=5630|Gloss=many
12 people people NOUN _ Number=Plur 13 mod _ AlignBegin=5630|AlignEnd=5900|Gloss=people.PL
13 body body NOUN _ _ 10 comp:obj _ AlignBegin=5900|AlignEnd=6200|Gloss=body
14 // // PUNCT _ _ 2 punct _ AlignBegin=6200|AlignEnd=6200|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__2
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # but to tell you dis kind of tings sey &//
# text_en = But to tell you this kind of thing that...
# text_ortho = But to tell you dis kind of tings sey...
1 # # PUNCT _ _ 3 punct _ AlignBegin=6200|AlignEnd=7880|Gloss=PUNCT
2 but but CCONJ _ _ 3 discourse _ AlignBegin=7880|AlignEnd=8119|Gloss=but
3 to to ADP _ _ 0 root@scrap _ AlignBegin=8119|AlignEnd=8280|Gloss=to
4 tell tell VERB _ _ 3 comp:obj _ AlignBegin=8280|AlignEnd=8440|Gloss=tell
5 you you PRON _ Case=Nom|Person=2|PronType=Prs 4 comp:obl _ AlignBegin=8440|AlignEnd=8650|Gloss=NOM.2
6 dis dis DET _ Number=Sing|PronType=Dem 7 det _ AlignBegin=8650|AlignEnd=8830|Gloss=SG.DEM
7 kind kind NOUN _ _ 4 comp:obl _ AlignBegin=8830|AlignEnd=9066|Gloss=kind
8 of of ADP _ _ 7 mod _ AlignBegin=9066|AlignEnd=9170|Gloss=of
9 tings tings NOUN _ Number=Plur 8 comp:obj _ AlignBegin=9170|AlignEnd=9580|Gloss=thing.PL
10 sey sey SCONJ _ _ 4 comp:obj$utter _ AlignBegin=9580|AlignEnd=9940|Gloss=COMP
11 &// &// PUNCT _ _ 3 punct _ AlignBegin=9940|AlignEnd=9940|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__3
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # except I wan call di person name //
# text_en = Except if I want to call the person by name.
# text_ortho = Except I wan call di person name.
1 # # PUNCT _ _ 4 punct _ AlignBegin=9940|AlignEnd=10440|Gloss=PUNCT
2 except except ADP _ _ 4 discourse _ AlignBegin=10440|AlignEnd=10870|Gloss=except
3 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=10870|AlignEnd=10960|Gloss=NOM.SG.1
4 wan want VERB _ _ 0 root _ AlignBegin=10960|AlignEnd=11130|Gloss=want
5 call call VERB _ _ 4 comp:obj$desire _ AlignBegin=11130|AlignEnd=11600|Gloss=call|Subject=Raising
6 di di DET _ Definite=Def|PronType=Art 8 det _ AlignBegin=11600|AlignEnd=11670|Gloss=DEF.ART
7 person person NOUN _ _ 8 mod _ AlignBegin=11670|AlignEnd=12040|Gloss=person
8 name name NOUN _ _ 5 comp:obj _ AlignBegin=12040|AlignEnd=12325|Gloss=name
9 // // PUNCT _ _ 4 punct _ AlignBegin=12325|AlignEnd=12325|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__4
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = but e no good make person dey call person name //
# text_en = But it's not good for someone to call a person by name.
# text_ortho = But e no good make person dey call person name.
1 but but CCONJ _ _ 3 discourse _ AlignBegin=12325|AlignEnd=12441|Gloss=but
2 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj@expl _ AlignBegin=12441|AlignEnd=12490|Gloss=NOM.SG.3
3 no no AUX _ Polarity=Neg 0 root _ AlignBegin=12490|AlignEnd=12640|Gloss=NEG
4 good good ADJ _ _ 3 comp:aux _ AlignBegin=12640|AlignEnd=12790|Gloss=good
5 make make AUX _ Mood=Opt 4 comp:obj@agent _ AlignBegin=12790|AlignEnd=13010|Gloss=SBJV
6 person person NOUN _ _ 7 subj _ AlignBegin=13010|AlignEnd=13290|Gloss=person
7 dey dey AUX _ Aspect=Imp 5 comp:aux _ AlignBegin=13290|AlignEnd=13360|Gloss=IPFV
8 call call VERB _ _ 7 comp:aux _ AlignBegin=13360|AlignEnd=13620|Gloss=call
9 person person NOUN _ _ 10 mod _ AlignBegin=13620|AlignEnd=14010|Gloss=person
10 name name NOUN _ _ 8 comp:obj _ AlignBegin=14010|AlignEnd=14200|Gloss=name
11 // // PUNCT _ _ 3 punct _ AlignBegin=14200|AlignEnd=14200|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__5
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # so I go tell you one story //
# text_en = So I will tell you a story.
# text_ortho = So I go tell you one story.
1 # # PUNCT _ _ 4 punct _ AlignBegin=14200|AlignEnd=14840|Gloss=PUNCT
2 so so ADV _ _ 4 discourse _ AlignBegin=14840|AlignEnd=15000|Gloss=so
3 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=15000|AlignEnd=15100|Gloss=NOM.SG.1
4 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=15100|AlignEnd=15200|Gloss=PROSP
5 tell tell VERB _ _ 4 comp:aux _ AlignBegin=15200|AlignEnd=15380|Gloss=tell
6 you you PRON _ Case=Nom|Person=2|PronType=Prs 5 comp:obl _ AlignBegin=15380|AlignEnd=15560|Gloss=NOM.2
7 one one DET _ Definite=Spec|PronType=Art 8 det _ AlignBegin=15560|AlignEnd=15680|Gloss=SPEC.ART
8 story story NOUN _ _ 5 comp:obj _ AlignBegin=15680|AlignEnd=16040|Gloss=story
9 // // PUNCT _ _ 4 punct _ AlignBegin=16040|AlignEnd=16040|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__6
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # dis story < de tell me when I dey primary school //
# text_en = This story, they told me when I was in primary school.
# text_ortho = Dis story, de tell me when I dey primary school.
1 # # PUNCT _ _ 6 punct _ AlignBegin=16040|AlignEnd=18040|Gloss=PUNCT
2 dis dis DET _ Number=Sing|PronType=Dem 3 det _ AlignBegin=18040|AlignEnd=18200|Gloss=SG.DEM
3 story story NOUN _ _ 6 dislocated _ AlignBegin=18200|AlignEnd=18520|Gloss=story
4 < < PUNCT _ _ 3 punct _ AlignBegin=18520|AlignEnd=18620|Gloss=PUNCT
5 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 6 subj _ AlignBegin=18520|AlignEnd=18620|Gloss=NOM.PL.3
6 tell tell VERB _ _ 0 root _ AlignBegin=18620|AlignEnd=18800|Gloss=tell
7 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 6 comp:obj _ AlignBegin=18800|AlignEnd=18970|Gloss=ACC.SG.1
8 when when ADV _ _ 6 mod$tempo _ AlignBegin=18970|AlignEnd=19120|Gloss=when.Q
9 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 10 subj _ AlignBegin=19120|AlignEnd=19210|Gloss=NOM.SG.1
10 dey dey VERB _ VerbType=Cop 8 comp:obj _ AlignBegin=19210|AlignEnd=19620|Gloss=be
11 primary primary ADJ _ _ 12 mod _ AlignBegin=19620|AlignEnd=20060|Gloss=primary
12 school school NOUN _ _ 10 comp:pred _ AlignBegin=20060|AlignEnd=20400|Gloss=school
13 // // PUNCT _ _ 6 punct _ AlignBegin=20400|AlignEnd=20400|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__7
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # and na Pidgin >+ de take tell me di story //
# text_en = And they told me the story in Pidgin.
# text_ortho = And na Pidgin de take tell me di story.
1 # # PUNCT _ _ 3 punct _ AlignBegin=20400|AlignEnd=21340|Gloss=PUNCT
2 and and CCONJ _ _ 3 discourse _ AlignBegin=21340|AlignEnd=21720|Gloss=and
3 na na PART _ PartType=Cop 0 root _ AlignBegin=21720|AlignEnd=21950|Gloss=be
4 Pidgin Pidgin PROPN _ _ 3 comp:pred _ AlignBegin=21950|AlignEnd=22220|Gloss=Pidgin
5 >+ >+ PUNCT _ _ 7 punct _ AlignBegin=22220|AlignEnd=22220|Gloss=PUNCT
6 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 7 subj _ AlignBegin=22220|AlignEnd=22290|Gloss=NOM.PL.3
7 take take VERB _ _ 3 comp:cleft _ AlignBegin=22290|AlignEnd=22360|Gloss=take
8 tell tell VERB _ _ 7 compound:svc _ AlignBegin=22360|AlignEnd=22560|Gloss=tell
9 me me PRON _ Case=Acc|Number=Sing|Person=1|PronType=Prs 8 comp:obl _ AlignBegin=22560|AlignEnd=22690|Gloss=ACC.SG.1
10 di di DET _ Definite=Def|PronType=Art 11 det _ AlignBegin=22690|AlignEnd=22790|Gloss=DEF.ART
11 story story NOUN _ _ 8 comp:obj _ AlignBegin=22790|AlignEnd=23160|Gloss=story
12 // // PUNCT _ _ 3 punct _ AlignBegin=23160|AlignEnd=23160|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__8
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # and I go try remember everyting wey happen for di story # as di guy take talk am //
# text_en = And I will try to remember everything that happened in the story as the guy said it.
# text_ortho = And I go try remember everyting wey happen for di story as di guy take talk am.
1 # # PUNCT _ _ 4 punct _ AlignBegin=23160|AlignEnd=24240|Gloss=PUNCT
2 and and CCONJ _ _ 4 discourse _ AlignBegin=24240|AlignEnd=24340|Gloss=and
3 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 4 subj _ AlignBegin=24340|AlignEnd=24450|Gloss=NOM.SG.1
4 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=24450|AlignEnd=24610|Gloss=PROSP
5 try try VERB _ _ 4 comp:aux _ AlignBegin=24610|AlignEnd=24840|Gloss=try
6 remember remember VERB _ _ 5 comp:obj$desire _ AlignBegin=24840|AlignEnd=25450|Gloss=remember|Subject=Raising
7 everyting everyting PRON _ _ 6 comp:obj _ AlignBegin=25450|AlignEnd=25970|Gloss=everything
8 wey wey SCONJ _ _ 7 mod@relcl _ AlignBegin=25970|AlignEnd=26140|Gloss=REL
9 happen happen VERB _ _ 8 comp:obj _ AlignBegin=26140|AlignEnd=26430|Gloss=happen
10 for for ADP _ _ 9 comp:obl _ AlignBegin=26430|AlignEnd=26630|Gloss=for
11 di di DET _ Definite=Def|PronType=Art 12 det _ AlignBegin=26630|AlignEnd=26720|Gloss=DEF.ART
12 story story NOUN _ _ 10 comp:obj _ AlignBegin=26720|AlignEnd=27200|Gloss=story
13 # # PUNCT _ _ 14 punct _ AlignBegin=27200|AlignEnd=27580|Gloss=PUNCT
14 as as ADP _ _ 9 mod$manner _ AlignBegin=27580|AlignEnd=27780|Gloss=as
15 di di DET _ Definite=Def|PronType=Art 16 det _ AlignBegin=27780|AlignEnd=27900|Gloss=DEF.ART
16 guy guy NOUN _ _ 17 subj _ AlignBegin=27900|AlignEnd=28100|Gloss=guy
17 take take VERB _ _ 14 comp:obj _ AlignBegin=28100|AlignEnd=28320|Gloss=take
18 talk talk VERB _ _ 17 compound:svc _ AlignBegin=28320|AlignEnd=28550|Gloss=talk
19 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 18 comp:obj _ AlignBegin=28550|AlignEnd=28734|Gloss=ACC.SG.3
20 // // PUNCT _ _ 4 punct _ AlignBegin=28734|AlignEnd=28734|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__9
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # but dat guy < e sabi talk story { well |r well } //
# text_en = But that guy, he knows how to tell stories really well.
# text_ortho = But dat guy, e sabi talk story well, well.
1 # # PUNCT _ _ 7 punct _ AlignBegin=28734|AlignEnd=29560|Gloss=PUNCT
2 but but CCONJ _ _ 7 discourse _ AlignBegin=29560|AlignEnd=29680|Gloss=but
3 dat dat DET _ Number=Sing 4 det _ AlignBegin=29680|AlignEnd=29870|Gloss=SG.DEM
4 guy guy NOUN _ _ 7 dislocated _ AlignBegin=29870|AlignEnd=30160|Gloss=guy
5 < < PUNCT _ _ 4 punct _ AlignBegin=30160|AlignEnd=30160|Gloss=PUNCT
6 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 7 subj _ AlignBegin=30160|AlignEnd=30230|Gloss=NOM.SG.3
7 sabi sabi VERB _ _ 0 root _ AlignBegin=30230|AlignEnd=30510|Gloss=know
8 talk talk VERB _ _ 7 comp:obj$know _ AlignBegin=30510|AlignEnd=30760|Gloss=talk|Subject=Raising
9 story story NOUN _ _ 8 comp:obj _ AlignBegin=30760|AlignEnd=31090|Gloss=story
10 { { PUNCT _ _ 11 punct _ AlignBegin=31090|AlignEnd=31090|Gloss=PUNCT
11 well well ADV _ _ 8 mod _ AlignBegin=31090|AlignEnd=31240|Gloss=well
12 |r |r PUNCT _ _ 13 punct _ AlignBegin=31240|AlignEnd=31240|Gloss=PUNCT
13 well well ADV _ _ 11 compound:redup _ AlignBegin=31240|AlignEnd=31520|Gloss=well
14 } } PUNCT _ _ 11 punct _ AlignBegin=31520|AlignEnd=31520|Gloss=PUNCT
15 // // PUNCT _ _ 7 punct _ AlignBegin=31490|AlignEnd=31520|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__10
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # dat guy < # I dey admire am when we dey primary school dat time //
# text_en = That guy, I admired him when we were in primary school at that time.
# text_ortho = Dat guy, I dey admire am when we dey primary school dat time.
1 # # PUNCT _ _ 7 punct _ AlignBegin=31520|AlignEnd=32620|Gloss=PUNCT
2 dat dat DET _ Number=Sing 3 det _ AlignBegin=32619|AlignEnd=32780|Gloss=SG.DEM
3 guy guy NOUN _ _ 7 dislocated _ AlignBegin=32780|AlignEnd=33099|Gloss=guy
4 < < PUNCT _ _ 3 punct _ AlignBegin=33099|AlignEnd=33099|Gloss=PUNCT
5 # # PUNCT _ _ 3 punct _ AlignBegin=33099|AlignEnd=33268|Gloss=PUNCT
6 I I PRON _ Case=Nom|Number=Sing|Person=1|PronType=Prs 7 subj _ AlignBegin=33268|AlignEnd=33390|Gloss=NOM.SG.1
7 dey dey AUX _ Aspect=Imp 0 root _ AlignBegin=33390|AlignEnd=33500|Gloss=IPFV
8 admire admire VERB _ _ 7 comp:aux _ AlignBegin=33500|AlignEnd=33900|Gloss=admire
9 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 8 comp:obj _ AlignBegin=33900|AlignEnd=34120|Gloss=ACC.SG.3
10 when when ADV _ _ 8 mod$tempo _ AlignBegin=34120|AlignEnd=34190|Gloss=when.Q
11 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 12 subj _ AlignBegin=34190|AlignEnd=34280|Gloss=NOM.PL.1
12 dey dey VERB _ VerbType=Cop 10 comp:obj _ AlignBegin=34280|AlignEnd=34440|Gloss=be
13 primary primary ADJ _ _ 14 mod _ AlignBegin=34440|AlignEnd=34790|Gloss=primary
14 school school NOUN _ _ 12 comp:pred _ AlignBegin=34790|AlignEnd=35020|Gloss=school
15 dat dat DET _ Number=Sing 16 det _ AlignBegin=35020|AlignEnd=35170|Gloss=SG.DEM
16 time time NOUN _ _ 12 mod _ AlignBegin=35170|AlignEnd=35460|Gloss=time
17 // // PUNCT _ _ 7 punct _ AlignBegin=35460|AlignEnd=35460|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__11
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # im say [ e wan tell us one story //= make all of us listen //] //
# text_en = He said he wanted to tell us a story, and all of us should listen.
# text_ortho = Im say e wan tell us one story, make all of us listen.
1 # # PUNCT _ _ 3 punct _ AlignBegin=35460|AlignEnd=37040|Gloss=PUNCT
2 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=37040|AlignEnd=37200|Gloss=NOM.SG.3
3 say say VERB _ _ 0 root _ AlignBegin=37200|AlignEnd=37390|Gloss=say
4 [ [ PUNCT _ _ 6 punct _ AlignBegin=37390|AlignEnd=37390|Gloss=PUNCT
5 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 6 subj _ AlignBegin=37390|AlignEnd=37470|Gloss=NOM.SG.3
6 wan want VERB _ _ 3 parataxis:obj$utter _ AlignBegin=37470|AlignEnd=37650|Gloss=want
7 tell tell VERB _ _ 6 comp:obj$desire _ AlignBegin=37650|AlignEnd=37810|Gloss=tell|Subject=Raising
8 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 7 comp:obl _ AlignBegin=37810|AlignEnd=37990|Gloss=ACC.PL.1
9 one one DET _ Definite=Spec|PronType=Art 10 det _ AlignBegin=37990|AlignEnd=38110|Gloss=SPEC.ART
10 story story NOUN _ _ 7 comp:obj _ AlignBegin=38110|AlignEnd=38420|Gloss=story
11 //= //= PUNCT _ _ 12 punct _ AlignBegin=38420|AlignEnd=38420|Gloss=PUNCT
12 make make AUX _ Mood=Opt 6 parataxis:conj _ AlignBegin=38420|AlignEnd=38610|Gloss=SBJV
13 all all PRON _ _ 16 subj _ AlignBegin=38610|AlignEnd=38700|Gloss=all
14 of of ADP _ _ 13 mod _ AlignBegin=38700|AlignEnd=38890|Gloss=of
15 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 14 comp:obj _ AlignBegin=38890|AlignEnd=39060|Gloss=ACC.PL.1
16 listen listen VERB _ _ 12 comp:aux _ AlignBegin=39060|AlignEnd=39380|Gloss=listen
17 //] //] PUNCT _ _ 6 punct _ AlignBegin=39380|AlignEnd=39380|Gloss=PUNCT
18 // // PUNCT _ _ 3 punct _ AlignBegin=39350|AlignEnd=39380|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__12
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # naim e con start //
# text_en = Then he started.
# text_ortho = Naim e con start.
1 # # PUNCT _ _ 4 punct _ AlignBegin=39380|AlignEnd=40660|Gloss=PUNCT
2 naim naim ADV _ _ 4 mod:periph _ AlignBegin=40660|AlignEnd=40820|Gloss=then
3 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 4 subj _ AlignBegin=40820|AlignEnd=40860|Gloss=NOM.SG.3
4 con con AUX _ Aspect=Cons 0 root _ AlignBegin=40860|AlignEnd=41000|Gloss=CONS
5 start start VERB _ _ 4 comp:aux _ AlignBegin=41000|AlignEnd=41440|Gloss=start
6 // // PUNCT _ _ 4 punct _ AlignBegin=41440|AlignEnd=41440|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__13
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # e con say [ { story |r story } //] //
# text_en = He said, "story, story."
# text_ortho = E con say story, story.
1 # # PUNCT _ _ 3 punct _ AlignBegin=41440|AlignEnd=41608|Gloss=PUNCT
2 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=41608|AlignEnd=41660|Gloss=NOM.SG.3
3 con con AUX _ Aspect=Cons 0 root _ AlignBegin=41660|AlignEnd=41790|Gloss=CONS
4 say say VERB _ _ 3 comp:aux _ AlignBegin=41790|AlignEnd=41980|Gloss=say
5 [ [ PUNCT _ _ 7 punct _ AlignBegin=41980|AlignEnd=41980|Gloss=PUNCT
6 { { PUNCT _ _ 7 punct _ AlignBegin=41950|AlignEnd=41980|Gloss=PUNCT
7 story story NOUN _ _ 4 parataxis:obj _ AlignBegin=41980|AlignEnd=42320|Gloss=story
8 |r |r PUNCT _ _ 9 punct _ AlignBegin=42320|AlignEnd=42320|Gloss=PUNCT
9 story story NOUN _ _ 7 compound:redup _ AlignBegin=42320|AlignEnd=42960|Gloss=story
10 } } PUNCT _ _ 7 punct _ AlignBegin=42960|AlignEnd=42960|Gloss=PUNCT
11 //] //] PUNCT _ _ 7 punct _ AlignBegin=42930|AlignEnd=42960|Gloss=PUNCT
12 // // PUNCT _ _ 3 punct _ AlignBegin=42930|AlignEnd=42960|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__14
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # we con say [ story !//] //
# text_en = Then we said, "story."
# text_ortho = We con say story!
1 # # PUNCT _ _ 3 punct _ AlignBegin=42960|AlignEnd=43540|Gloss=PUNCT
2 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 3 subj _ AlignBegin=43540|AlignEnd=43640|Gloss=NOM.PL.1
3 con con AUX _ Aspect=Cons 0 root _ AlignBegin=43640|AlignEnd=43810|Gloss=CONS
4 say say VERB _ _ 3 comp:aux _ AlignBegin=43810|AlignEnd=43990|Gloss=say
5 [ [ PUNCT _ _ 6 punct _ AlignBegin=43990|AlignEnd=44380|Gloss=PUNCT
6 story story NOUN _ _ 4 parataxis:obj _ AlignBegin=43990|AlignEnd=44410|Gloss=story
7 !//] !//] PUNCT _ _ 6 punct _ AlignBegin=44410|AlignEnd=44410|Gloss=PUNCT
8 // // PUNCT _ _ 3 punct _ AlignBegin=44380|AlignEnd=44410|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__15
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # { story |r story } !//
# text_en = "Story, story."
# text_ortho = Story, story!
1 # # PUNCT _ _ 3 punct _ AlignBegin=44410|AlignEnd=44600|Gloss=PUNCT
2 { { PUNCT _ _ 3 punct _ AlignBegin=44570|AlignEnd=44600|Gloss=PUNCT
3 story story NOUN _ _ 0 root _ AlignBegin=44600|AlignEnd=44910|Gloss=story
4 |r |r PUNCT _ _ 5 punct _ AlignBegin=44910|AlignEnd=44910|Gloss=PUNCT
5 story story NOUN _ _ 3 compound:redup _ AlignBegin=44910|AlignEnd=45600|Gloss=story
6 } } PUNCT _ _ 3 punct _ AlignBegin=45600|AlignEnd=45600|Gloss=PUNCT
7 !// !// PUNCT _ _ 3 punct _ AlignBegin=45570|AlignEnd=45600|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__16
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # story //
# text_en = "Story."
# text_ortho = Story.
1 # # PUNCT _ _ 2 punct _ AlignBegin=45600|AlignEnd=45979|Gloss=PUNCT
2 story story NOUN _ _ 0 root _ AlignBegin=45979|AlignEnd=46580|Gloss=story
3 // // PUNCT _ _ 2 punct _ AlignBegin=46580|AlignEnd=46580|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__17
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # e say [ di title of di story wen e wan tell us < # na di story of Alaska Pepper ] //
# text_en = He said that the name of the story that he wanted to tell was "The story of Alaska Pepper."
# text_ortho = E say di title of di story wen e wan tell us, na di story of Alaska Pepper.
1 # # PUNCT _ _ 3 punct _ AlignBegin=46580|AlignEnd=47420|Gloss=PUNCT
2 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=47420|AlignEnd=47470|Gloss=NOM.SG.3
3 say say VERB _ _ 0 root _ AlignBegin=47470|AlignEnd=47640|Gloss=say
4 [ [ PUNCT _ _ 17 punct _ AlignBegin=47640|AlignEnd=47640|Gloss=PUNCT
5 di di DET _ Definite=Def|PronType=Art 6 det _ AlignBegin=47640|AlignEnd=47730|Gloss=DEF.ART
6 title title NOUN _ _ 17 dislocated _ AlignBegin=47730|AlignEnd=48197|Gloss=title
7 of of ADP _ _ 6 mod _ AlignBegin=48197|AlignEnd=48300|Gloss=of
8 di di DET _ Definite=Def|PronType=Art 9 det _ AlignBegin=48300|AlignEnd=48370|Gloss=DEF.ART
9 story story NOUN _ _ 7 comp:obj _ AlignBegin=48370|AlignEnd=48700|Gloss=story
10 wen wey SCONJ _ _ 9 mod@relcl _ AlignBegin=48700|AlignEnd=48820|Gloss=REL
11 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 12 subj _ AlignBegin=48820|AlignEnd=48902|Gloss=NOM.SG.3
12 wan want VERB _ _ 10 comp:obj _ AlignBegin=48902|AlignEnd=49010|Gloss=want
13 tell tell VERB _ _ 12 comp:obj$desire _ AlignBegin=49010|AlignEnd=49260|Gloss=tell|Subject=Raising
14 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 13 comp:obj _ AlignBegin=49260|AlignEnd=49510|Gloss=ACC.PL.1
15 < < PUNCT _ _ 6 punct _ AlignBegin=49510|AlignEnd=49510|Gloss=PUNCT
16 # # PUNCT _ _ 17 punct _ AlignBegin=49510|AlignEnd=50020|Gloss=PUNCT
17 na na PART _ PartType=Cop 3 parataxis:obj$utter _ AlignBegin=50020|AlignEnd=50120|Gloss=be
18 di di DET _ Definite=Def|PronType=Art 19 det _ AlignBegin=50120|AlignEnd=50200|Gloss=DEF.ART
19 story story NOUN _ _ 17 comp:pred _ AlignBegin=50200|AlignEnd=50650|Gloss=story
20 of of ADP _ _ 19 mod _ AlignBegin=50650|AlignEnd=50850|Gloss=of
21 Alaska Alaska PROPN _ _ 20 comp:obj _ AlignBegin=50850|AlignEnd=51340|Gloss=Alaska
22 Pepper pepper NOUN _ _ 21 flat _ AlignBegin=51340|AlignEnd=51714|Gloss=pepper
23 ] ] PUNCT _ _ 17 punct _ AlignBegin=51714|AlignEnd=51714|Gloss=PUNCT
24 // // PUNCT _ _ 3 punct _ AlignBegin=51684|AlignEnd=51714|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__18
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # aha who be dis Alaska Pepper ?//
# text_en = Aha, so who is this Alaska Pepper?
# text_ortho = Aha who be dis Alaska Pepper?
1 # # PUNCT _ _ 3 punct _ AlignBegin=51714|AlignEnd=52897|Gloss=PUNCT
2 aha aha INTJ _ _ 3 discourse _ AlignBegin=52897|AlignEnd=53245|Gloss=ah
3 who who PRON _ PronType=Int 0 root _ AlignBegin=53245|AlignEnd=53345|Gloss=who.Q
4 be be VERB _ PartType=Cop 3 comp:cleft _ AlignBegin=53345|AlignEnd=53495|Gloss=be
5 dis dis DET _ Number=Sing|PronType=Dem 6 det _ AlignBegin=53495|AlignEnd=53715|Gloss=SG.DEM
6 Alaska Alaska PROPN _ _ 4 comp:pred _ AlignBegin=53715|AlignEnd=54115|Gloss=Alaska
7 Pepper pepper NOUN _ _ 6 flat _ AlignBegin=54115|AlignEnd=54467|Gloss=pepper
8 ?// ?// PUNCT _ _ 3 punct _ AlignBegin=54467|AlignEnd=54467|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__19
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # why e get name like Alaska Pepper ?//
# text_en = Why did he have a name like Alaska Pepper?
# text_ortho = Why e get name like Alaska Pepper?
1 # # PUNCT _ _ 2 punct _ AlignBegin=54467|AlignEnd=55580|Gloss=PUNCT
2 why why ADV _ PronType=Int 0 root _ AlignBegin=55580|AlignEnd=55910|Gloss=why.Q
3 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 4 subj _ AlignBegin=55910|AlignEnd=55990|Gloss=NOM.SG.3
4 get get VERB _ _ 2 comp:cleft _ AlignBegin=55990|AlignEnd=56310|Gloss=get
5 name name NOUN _ _ 4 comp:obj _ AlignBegin=56310|AlignEnd=56630|Gloss=name
6 like like ADP _ _ 5 mod _ AlignBegin=56630|AlignEnd=56850|Gloss=like
7 Alaska Alaska PROPN _ _ 6 comp:obj _ AlignBegin=56850|AlignEnd=57300|Gloss=Alaska
8 Pepper pepper NOUN _ _ 7 flat _ AlignBegin=57300|AlignEnd=57622|Gloss=pepper
9 ?// ?// PUNCT _ _ 2 punct _ AlignBegin=57622|AlignEnd=57622|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__20
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = Pepper even dey di name //
# text_en = "Pepper" is even in the name.
# text_ortho = Pepper even dey di name.
1 Pepper pepper NOUN _ _ 3 subj _ AlignBegin=57622|AlignEnd=57922|Gloss=pepper
2 even even ADV _ _ 3 mod _ AlignBegin=57922|AlignEnd=58172|Gloss=even
3 dey dey VERB _ VerbType=Cop 0 root _ AlignBegin=58172|AlignEnd=58282|Gloss=be
4 di di DET _ Definite=Def|PronType=Art 5 det _ AlignBegin=58282|AlignEnd=58432|Gloss=DEF.ART
5 name name NOUN _ _ 3 comp:pred _ AlignBegin=58432|AlignEnd=58660|Gloss=name
6 // // PUNCT _ _ 3 punct _ AlignBegin=58660|AlignEnd=58660|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__21
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # e say [ make we listen //= meh we keep quiet //= make e tell us dis story //] //
# text_en = He told us to listen, keep quiet, and let him tell us this story.
# text_ortho = E say make we listen, meh we keep quiet, make e tell us dis story.
1 # # PUNCT _ _ 3 punct _ AlignBegin=58660|AlignEnd=59840|Gloss=PUNCT
2 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 3 subj _ AlignBegin=59840|AlignEnd=59880|Gloss=NOM.SG.3
3 say say VERB _ _ 0 root _ AlignBegin=59880|AlignEnd=60040|Gloss=say
4 [ [ PUNCT _ _ 5 punct _ AlignBegin=60040|AlignEnd=60040|Gloss=PUNCT
5 make make AUX _ Mood=Opt 3 parataxis:obj$utter _ AlignBegin=60040|AlignEnd=60240|Gloss=SBJV
6 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 7 subj _ AlignBegin=60240|AlignEnd=60330|Gloss=NOM.PL.1
7 listen listen VERB _ _ 5 comp:aux _ AlignBegin=60330|AlignEnd=60630|Gloss=listen
8 //= //= PUNCT _ _ 9 punct _ AlignBegin=60630|AlignEnd=60630|Gloss=PUNCT
9 meh make AUX _ Mood=Opt 5 parataxis:conj _ AlignBegin=60630|AlignEnd=60710|Gloss=SBJV
10 we we PRON _ Case=Nom|Number=Plur|Person=1|PronType=Prs 11 subj _ AlignBegin=60710|AlignEnd=60820|Gloss=NOM.PL.1
11 keep keep VERB _ _ 9 comp:aux _ AlignBegin=60820|AlignEnd=61030|Gloss=keep
12 quiet quiet ADJ _ _ 11 comp:pred _ AlignBegin=61030|AlignEnd=61410|Gloss=quiet
13 //= //= PUNCT _ _ 14 punct _ AlignBegin=61410|AlignEnd=61410|Gloss=PUNCT
14 make make AUX _ Mood=Opt 11 parataxis:conj _ AlignBegin=61410|AlignEnd=61560|Gloss=SBJV
15 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 16 subj _ AlignBegin=61560|AlignEnd=61640|Gloss=NOM.SG.3
16 tell tell VERB _ _ 14 comp:aux _ AlignBegin=61640|AlignEnd=61820|Gloss=tell
17 us us PRON _ Case=Acc|Number=Plur|Person=1|PronType=Prs 16 comp:obl _ AlignBegin=61820|AlignEnd=61980|Gloss=ACC.PL.1
18 dis dis DET _ Number=Sing|PronType=Dem 19 det _ AlignBegin=61980|AlignEnd=62080|Gloss=SG.DEM
19 story story NOUN _ _ 16 comp:obj _ AlignBegin=62080|AlignEnd=62420|Gloss=story
20 //] //] PUNCT _ _ 5 punct _ AlignBegin=62420|AlignEnd=62420|Gloss=PUNCT
21 // // PUNCT _ _ 3 punct _ AlignBegin=62390|AlignEnd=62420|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__22
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # sey Alaska Pepper # na one small boy //
# text_en = Alaska Pepper was a little boy.
# text_ortho = Sey Alaska Pepper na one small boy.
1 # # PUNCT _ _ 6 punct _ AlignBegin=62420|AlignEnd=63700|Gloss=PUNCT
2 sey sey SCONJ _ _ 6 discourse _ AlignBegin=63700|AlignEnd=63870|Gloss=COMP
3 Alaska Alaska PROPN _ _ 6 subj _ AlignBegin=63870|AlignEnd=64290|Gloss=Alaska
4 Pepper pepper NOUN _ _ 3 flat _ AlignBegin=64290|AlignEnd=64724|Gloss=pepper
5 # # PUNCT _ _ 6 punct _ AlignBegin=64724|AlignEnd=65120|Gloss=PUNCT
6 na na PART _ PartType=Cop 0 root _ AlignBegin=65120|AlignEnd=65319|Gloss=be
7 one one DET _ Definite=Spec|PronType=Art 9 det _ AlignBegin=65319|AlignEnd=65519|Gloss=SPEC.ART
8 small small ADJ _ _ 9 mod _ AlignBegin=65519|AlignEnd=65830|Gloss=small
9 boy boy NOUN _ _ 6 comp:pred _ AlignBegin=65830|AlignEnd=66100|Gloss=boy
10 // // PUNCT _ _ 6 punct _ AlignBegin=66100|AlignEnd=66100|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__23
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # nobody like Alaska Pepper for di area where de dey stay //
# text_en = Nobody liked Alaska Pepper in the place where they were staying.
# text_ortho = Nobody like Alaska Pepper for di area where de dey stay.
1 # # PUNCT _ _ 3 punct _ AlignBegin=66100|AlignEnd=67260|Gloss=PUNCT
2 nobody nobody PRON _ _ 3 subj _ AlignBegin=67260|AlignEnd=67600|Gloss=nobody
3 like like VERB _ _ 0 root _ AlignBegin=67600|AlignEnd=67850|Gloss=like
4 Alaska Alaska PROPN _ _ 3 comp:obj _ AlignBegin=67850|AlignEnd=68240|Gloss=Alaska
5 Pepper pepper NOUN _ _ 4 flat _ AlignBegin=68240|AlignEnd=68490|Gloss=pepper
6 for for ADP _ _ 3 mod _ AlignBegin=68490|AlignEnd=68650|Gloss=for
7 di di DET _ Definite=Def|PronType=Art 8 det _ AlignBegin=68650|AlignEnd=68780|Gloss=DEF.ART
8 area area NOUN _ _ 6 comp:obj _ AlignBegin=68780|AlignEnd=69060|Gloss=area
9 where where ADV _ PronType=Int 8 mod _ AlignBegin=69060|AlignEnd=69210|Gloss=where.Q
10 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 11 subj _ AlignBegin=69210|AlignEnd=69290|Gloss=NOM.PL.3
11 dey dey AUX _ Aspect=Imp 9 mod@relcl _ AlignBegin=69290|AlignEnd=69390|Gloss=IPFV
12 stay stay VERB _ _ 11 comp:aux _ AlignBegin=69390|AlignEnd=69714|Gloss=stay
13 // // PUNCT _ _ 3 punct _ AlignBegin=69714|AlignEnd=69714|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__24
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # for dat area < Alaska Pepper dey always dey cause trouble //
# text_en = In that area, Alaska Pepper was always causing trouble.
# text_ortho = For dat area, Alaska Pepper dey always dey cause trouble.
1 # # PUNCT _ _ 8 punct _ AlignBegin=69714|AlignEnd=71020|Gloss=PUNCT
2 for for ADP _ _ 8 mod _ AlignBegin=71020|AlignEnd=71120|Gloss=for
3 dat dat DET _ Number=Sing 4 det _ AlignBegin=71120|AlignEnd=71310|Gloss=SG.DEM
4 area area NOUN _ _ 2 comp:obj _ AlignBegin=71310|AlignEnd=71640|Gloss=area
5 < < PUNCT _ _ 2 punct _ AlignBegin=71640|AlignEnd=71640|Gloss=PUNCT
6 Alaska Alaska PROPN _ _ 8 subj _ AlignBegin=71640|AlignEnd=72000|Gloss=Alaska
7 Pepper pepper NOUN _ _ 6 flat _ AlignBegin=72000|AlignEnd=72240|Gloss=pepper
8 dey dey VERB _ VerbType=Cop 0 root _ AlignBegin=72240|AlignEnd=72360|Gloss=be
9 always always ADV _ _ 10 mod _ AlignBegin=72360|AlignEnd=72650|Gloss=always
10 dey dey AUX _ Aspect=Imp 8 comp:pred _ AlignBegin=72650|AlignEnd=72730|Gloss=IPFV
11 cause cause VERB _ _ 10 comp:aux _ AlignBegin=72730|AlignEnd=73070|Gloss=cause
12 trouble trouble NOUN _ _ 11 comp:obj _ AlignBegin=73070|AlignEnd=73420|Gloss=trouble
13 // // PUNCT _ _ 8 punct _ AlignBegin=73420|AlignEnd=73420|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__25
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # anyting wey de do bad < # you go call Alaska Pepper name inside //
# text_en = If anything went wrong, you would call Alaska Pepper's name.
# text_ortho = Anyting wey de do bad, you go call Alaska Pepper name inside.
1 # # PUNCT _ _ 10 punct _ AlignBegin=73420|AlignEnd=74320|Gloss=PUNCT
2 anyting anyting PRON _ _ 10 dislocated _ AlignBegin=74320|AlignEnd=74980|Gloss=anything
3 wey wey SCONJ _ _ 2 mod@relcl _ AlignBegin=74980|AlignEnd=75110|Gloss=REL
4 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 5 subj _ AlignBegin=75110|AlignEnd=75200|Gloss=NOM.PL.3
5 do do VERB _ _ 3 comp:obj _ AlignBegin=75200|AlignEnd=75350|Gloss=do
6 bad bad ADJ _ _ 5 comp:obl _ AlignBegin=75350|AlignEnd=75795|Gloss=bad
7 < < PUNCT _ _ 2 punct _ AlignBegin=75795|AlignEnd=75795|Gloss=PUNCT
8 # # PUNCT _ _ 2 punct _ AlignBegin=75795|AlignEnd=76440|Gloss=PUNCT
9 you you PRON _ Case=Nom|Person=2|PronType=Prs 10 subj _ AlignBegin=76440|AlignEnd=76570|Gloss=NOM.2
10 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=76570|AlignEnd=76630|Gloss=PROSP
11 call call VERB _ _ 10 comp:aux _ AlignBegin=76630|AlignEnd=76830|Gloss=call
12 Alaska Alaska PROPN _ _ 14 mod _ AlignBegin=76830|AlignEnd=77210|Gloss=Alaska
13 Pepper pepper NOUN _ _ 12 flat _ AlignBegin=77210|AlignEnd=77470|Gloss=pepper
14 name name NOUN _ _ 11 comp:obj _ AlignBegin=77470|AlignEnd=77700|Gloss=name
15 inside inside ADP _ _ 11 compound:prt _ AlignBegin=77700|AlignEnd=78115|Gloss=inside
16 // // PUNCT _ _ 10 punct _ AlignBegin=78115|AlignEnd=78115|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__26
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # if you see { pot # for ground # |a pot wey e moko |a # pot wey e don dent } < # you know sey [ na Alaska Pepper >+ na im cause am ] //
# text_en = If you saw a pot on the ground, a pot that was dirty, a pot that was dented, you knew it was Alaska Pepper's fault.
# text_ortho = If you see pot for ground, pot wey e moko, pot wey e don dent, you know sey na Alaska Pepper na im cause am.
1 # # PUNCT _ _ 27 punct _ AlignBegin=78115|AlignEnd=79078|Gloss=PUNCT
2 if if SCONJ _ _ 27 mod:periph$cond _ AlignBegin=79078|AlignEnd=79258|Gloss=if
3 you you PRON _ Case=Nom|Person=2|PronType=Prs 4 subj _ AlignBegin=79258|AlignEnd=79318|Gloss=NOM.2
4 see see VERB _ _ 2 comp:obj _ AlignBegin=79318|AlignEnd=79508|Gloss=see
5 { { PUNCT _ _ 6 punct _ AlignBegin=79508|AlignEnd=79508|Gloss=PUNCT
6 pot pot NOUN _ _ 4 comp:obj _ AlignBegin=79508|AlignEnd=79976|Gloss=pot
7 # # PUNCT _ _ 8 punct _ AlignBegin=79976|AlignEnd=80447|Gloss=PUNCT
8 for for ADP _ _ 4 comp:obl _ AlignBegin=80447|AlignEnd=80600|Gloss=for
9 ground ground NOUN _ _ 8 comp:obj _ AlignBegin=80600|AlignEnd=81054|Gloss=ground
10 # # PUNCT _ _ 12 punct _ AlignBegin=81084|AlignEnd=81840|Gloss=PUNCT
11 |a |a PUNCT _ _ 12 punct _ AlignBegin=81084|AlignEnd=81840|Gloss=PUNCT
12 pot pot NOUN _ _ 6 conj:appos _ AlignBegin=81840|AlignEnd=82090|Gloss=pot
13 wey wey SCONJ _ _ 12 mod@relcl _ AlignBegin=82090|AlignEnd=82280|Gloss=REL
14 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 15 subj _ AlignBegin=82280|AlignEnd=82310|Gloss=NOM.SG.3
15 moko moko VERB _ _ 13 comp:obj _ AlignBegin=82310|AlignEnd=82778|Gloss=dent
16 |a |a PUNCT _ _ 18 punct _ AlignBegin=82778|AlignEnd=82778|Gloss=PUNCT
17 # # PUNCT _ _ 18 punct _ AlignBegin=82778|AlignEnd=83640|Gloss=PUNCT
18 pot pot NOUN _ _ 12 conj:coord _ AlignBegin=83640|AlignEnd=83849|Gloss=pot
19 wey wey SCONJ _ _ 18 mod@relcl _ AlignBegin=83849|AlignEnd=84010|Gloss=REL
20 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 21 subj _ AlignBegin=84010|AlignEnd=84050|Gloss=NOM.SG.3
21 don don AUX _ Aspect=Perf 19 comp:obj _ AlignBegin=84050|AlignEnd=84370|Gloss=PRF
22 dent dent VERB _ _ 21 comp:aux _ AlignBegin=84370|AlignEnd=84926|Gloss=dent
23 } } PUNCT _ _ 6 punct _ AlignBegin=84926|AlignEnd=84926|Gloss=PUNCT
24 < < PUNCT _ _ 2 punct _ AlignBegin=84896|AlignEnd=84926|Gloss=PUNCT
25 # # PUNCT _ _ 2 punct _ AlignBegin=84926|AlignEnd=85220|Gloss=PUNCT
26 you you PRON _ Case=Nom|Person=2|PronType=Prs 27 subj _ AlignBegin=85220|AlignEnd=85310|Gloss=NOM.2
27 know know VERB _ _ 0 root _ AlignBegin=85310|AlignEnd=85420|Gloss=know
28 sey sey SCONJ _ _ 27 comp:obj _ AlignBegin=85420|AlignEnd=85580|Gloss=COMP
29 [ [ PUNCT _ _ 30 punct _ AlignBegin=85580|AlignEnd=85580|Gloss=PUNCT
30 na na PART _ PartType=Cop 28 comp:obj _ AlignBegin=85580|AlignEnd=85680|Gloss=be
31 Alaska Alaska PROPN _ _ 30 comp:pred _ AlignBegin=85680|AlignEnd=86060|Gloss=Alaska
32 Pepper pepper NOUN _ _ 31 flat _ AlignBegin=86060|AlignEnd=86330|Gloss=pepper
33 >+ >+ PUNCT _ _ 34 punct _ AlignBegin=86330|AlignEnd=86330|Gloss=PUNCT
34 na na PART _ ExtPos=SCONJ|PartType=Cop 30 comp:cleft _ AlignBegin=86330|AlignEnd=86430|Gloss=be|Idiom=Yes
35 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 34 comp:pred _ AlignBegin=86430|AlignEnd=86490|Gloss=NOM.SG.3|InIdiom=Yes
36 cause cause VERB _ _ 34 comp:obj _ AlignBegin=86490|AlignEnd=86700|Gloss=cause
37 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 36 comp:obj _ AlignBegin=86700|AlignEnd=86800|Gloss=ACC.SG.3
38 ] ] PUNCT _ _ 30 punct _ AlignBegin=86800|AlignEnd=86800|Gloss=PUNCT
39 // // PUNCT _ _ 27 punct _ AlignBegin=86770|AlignEnd=86800|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__27
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # if you see pot wey e break < # you go know sey [ na Alaska Pepper >+ cause am ] //
# text_en = If you saw a pot that was broken, you knew it was Alaska Pepper.
# text_ortho = If you see pot wey e break, you go know sey na Alaska Pepper cause am.
1 # # PUNCT _ _ 12 punct _ AlignBegin=86800|AlignEnd=87700|Gloss=PUNCT
2 if if SCONJ _ _ 12 mod:periph$cond _ AlignBegin=87700|AlignEnd=87860|Gloss=if
3 you you PRON _ Case=Nom|Person=2|PronType=Prs 4 subj _ AlignBegin=87860|AlignEnd=87920|Gloss=NOM.2
4 see see VERB _ _ 2 comp:obj _ AlignBegin=87920|AlignEnd=88050|Gloss=see
5 pot pot NOUN _ _ 4 comp:obj _ AlignBegin=88050|AlignEnd=88340|Gloss=pot
6 wey wey SCONJ _ _ 5 mod@relcl _ AlignBegin=88340|AlignEnd=88490|Gloss=REL
7 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 8 subj _ AlignBegin=88490|AlignEnd=88530|Gloss=NOM.SG.3
8 break break VERB _ _ 6 comp:obj _ AlignBegin=88530|AlignEnd=88910|Gloss=break
9 < < PUNCT _ _ 2 punct _ AlignBegin=88910|AlignEnd=88910|Gloss=PUNCT
10 # # PUNCT _ _ 2 punct _ AlignBegin=88910|AlignEnd=89090|Gloss=PUNCT
11 you you PRON _ Case=Nom|Person=2|PronType=Prs 12 subj _ AlignBegin=89090|AlignEnd=89170|Gloss=NOM.2
12 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=89170|AlignEnd=89230|Gloss=PROSP
13 know know VERB _ _ 12 comp:aux _ AlignBegin=89230|AlignEnd=89290|Gloss=know
14 sey sey SCONJ _ _ 13 comp:obj _ AlignBegin=89290|AlignEnd=89420|Gloss=COMP
15 [ [ PUNCT _ _ 16 punct _ AlignBegin=89420|AlignEnd=89420|Gloss=PUNCT
16 na na PART _ PartType=Cop 14 comp:obj _ AlignBegin=89420|AlignEnd=89500|Gloss=be
17 Alaska Alaska PROPN _ _ 16 comp:pred _ AlignBegin=89500|AlignEnd=89850|Gloss=Alaska
18 Pepper pepper NOUN _ _ 17 flat _ AlignBegin=89850|AlignEnd=90134|Gloss=pepper
19 >+ >+ PUNCT _ _ 20 punct _ AlignBegin=90110|AlignEnd=90110|Gloss=PUNCT
20 cause cause VERB _ _ 16 comp:cleft _ AlignBegin=90134|AlignEnd=90370|Gloss=cause
21 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 20 comp:obj _ AlignBegin=90370|AlignEnd=90480|Gloss=ACC.SG.3
22 ] ] PUNCT _ _ 16 punct _ AlignBegin=90480|AlignEnd=90480|Gloss=PUNCT
23 // // PUNCT _ _ 12 punct _ AlignBegin=90450|AlignEnd=90480|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__28
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # anywhere trouble dey waka follow < na dat kind place >+ na im Alaska Pepper dey go //
# text_en = Anywhere trouble was passing through, that's the kind of place Alaska Pepper was heading.
# text_ortho = Anywhere trouble dey waka follow, na dat kind place na im Alaska Pepper dey go.
1 # # PUNCT _ _ 8 punct _ AlignBegin=90480|AlignEnd=90980|Gloss=PUNCT
2 anywhere anywhere ADV _ _ 8 dislocated _ AlignBegin=90980|AlignEnd=91360|Gloss=anywhere
3 trouble trouble NOUN _ _ 4 subj _ AlignBegin=91360|AlignEnd=91710|Gloss=trouble
4 dey dey AUX _ Aspect=Imp 2 mod@relcl _ AlignBegin=91710|AlignEnd=91820|Gloss=IPFV
5 waka waka VERB _ _ 4 comp:aux _ AlignBegin=91820|AlignEnd=92140|Gloss=walk
6 follow follow VERB _ _ 5 compound:svc _ AlignBegin=92140|AlignEnd=92440|Gloss=follow
7 < < PUNCT _ _ 2 punct _ AlignBegin=92440|AlignEnd=92440|Gloss=PUNCT
8 na na PART _ PartType=Cop 0 root _ AlignBegin=92440|AlignEnd=92610|Gloss=be
9 dat dat DET _ Number=Sing 11 det _ AlignBegin=92610|AlignEnd=92730|Gloss=SG.DEM
10 kind kind NOUN _ _ 11 mod _ AlignBegin=92730|AlignEnd=92920|Gloss=kind
11 place place NOUN _ _ 8 comp:pred _ AlignBegin=92920|AlignEnd=93200|Gloss=place
12 >+ >+ PUNCT _ _ 13 punct _ AlignBegin=93200|AlignEnd=93200|Gloss=PUNCT
13 na na PART _ ExtPos=SCONJ|PartType=Cop 8 comp:cleft _ AlignBegin=93200|AlignEnd=93295|Gloss=be|Idiom=Yes
14 im im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 13 comp:pred _ AlignBegin=93295|AlignEnd=93320|Gloss=NOM.SG.3|InIdiom=Yes
15 Alaska Alaska PROPN _ _ 17 subj _ AlignBegin=93320|AlignEnd=93650|Gloss=Alaska
16 Pepper pepper NOUN _ _ 15 flat _ AlignBegin=93650|AlignEnd=93910|Gloss=pepper
17 dey dey AUX _ Aspect=Imp 13 comp:obj _ AlignBegin=93910|AlignEnd=94040|Gloss=IPFV
18 go go VERB _ _ 17 comp:aux _ AlignBegin=94040|AlignEnd=94200|Gloss=go
19 // // PUNCT _ _ 8 punct _ AlignBegin=94200|AlignEnd=94200|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__29
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # so people no con like am //
# text_en = So people did not like him.
# text_ortho = So people no con like am.
1 # # PUNCT _ _ 4 punct _ AlignBegin=94200|AlignEnd=94963|Gloss=PUNCT
2 so so ADV _ _ 4 discourse _ AlignBegin=94963|AlignEnd=95163|Gloss=so
3 people people NOUN _ Number=Plur 4 subj _ AlignBegin=95163|AlignEnd=95523|Gloss=people.PL
4 no no AUX _ Polarity=Neg 0 root _ AlignBegin=95523|AlignEnd=95703|Gloss=NEG
5 con con AUX _ Aspect=Cons 4 comp:aux _ AlignBegin=95703|AlignEnd=95863|Gloss=CONS
6 like like VERB _ _ 5 comp:aux _ AlignBegin=95863|AlignEnd=96123|Gloss=like
7 am am PRON _ Case=Acc|Number=Sing|Person=3|PronType=Prs 6 comp:obj _ AlignBegin=96123|AlignEnd=96278|Gloss=ACC.SG.3
8 // // PUNCT _ _ 4 punct _ AlignBegin=96278|AlignEnd=96278|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__30
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # so Alaska Pepper dey always { do |r # do } tings wey people no dey like for dat community //
# text_en = So Alaska Pepper was always doing, doing things that people didn't like in the community.
# text_ortho = So Alaska Pepper dey always do, do tings wey people no dey like for dat community.
1 # # PUNCT _ _ 5 punct _ AlignBegin=96278|AlignEnd=97160|Gloss=PUNCT
2 so so ADV _ _ 5 discourse _ AlignBegin=97160|AlignEnd=97310|Gloss=so
3 Alaska Alaska PROPN _ _ 5 subj _ AlignBegin=97310|AlignEnd=97670|Gloss=Alaska
4 Pepper pepper NOUN _ _ 3 flat _ AlignBegin=97670|AlignEnd=97920|Gloss=pepper
5 dey dey AUX _ Aspect=Imp 0 root _ AlignBegin=97920|AlignEnd=98040|Gloss=IPFV
6 always always ADV _ _ 8 mod _ AlignBegin=98040|AlignEnd=98290|Gloss=always
7 { { PUNCT _ _ 8 punct _ AlignBegin=98290|AlignEnd=98290|Gloss=PUNCT
8 do do VERB _ _ 5 comp:aux _ AlignBegin=98290|AlignEnd=98520|Gloss=do
9 |r |r PUNCT _ _ 11 punct _ AlignBegin=98520|AlignEnd=98520|Gloss=PUNCT
10 # # PUNCT _ _ 11 punct _ AlignBegin=98520|AlignEnd=99236|Gloss=PUNCT
11 do do VERB _ _ 8 compound:redup _ AlignBegin=99236|AlignEnd=99406|Gloss=do
12 } } PUNCT _ _ 8 punct _ AlignBegin=99406|AlignEnd=99406|Gloss=PUNCT
13 tings tings NOUN _ Number=Plur 11 comp:obj _ AlignBegin=99406|AlignEnd=99827|Gloss=thing.PL
14 wey wey SCONJ _ _ 13 mod@relcl _ AlignBegin=99827|AlignEnd=99936|Gloss=REL
15 people people NOUN _ Number=Plur 16 subj _ AlignBegin=99936|AlignEnd=100176|Gloss=people.PL
16 no no AUX _ Polarity=Neg 14 comp:obj _ AlignBegin=100176|AlignEnd=100306|Gloss=NEG
17 dey dey AUX _ Aspect=Imp 16 comp:aux _ AlignBegin=100306|AlignEnd=100416|Gloss=IPFV
18 like like VERB _ _ 17 comp:aux _ AlignBegin=100416|AlignEnd=100656|Gloss=like
19 for for ADP _ _ 18 mod _ AlignBegin=100656|AlignEnd=100876|Gloss=for
20 dat dat DET _ Number=Sing 21 det _ AlignBegin=100876|AlignEnd=101006|Gloss=SG.DEM
21 community community NOUN _ _ 19 comp:obj _ AlignBegin=101006|AlignEnd=101555|Gloss=community
22 // // PUNCT _ _ 5 punct _ AlignBegin=101555|AlignEnd=101555|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__31
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # but Alaska Pepper < # na one kind person wey e be sey # [ people no like ] //
# text_en = But Alaska Pepper was one kind of person that people didn't like.
# text_ortho = But Alaska Pepper, na one kind person wey e be sey people no like.
1 # # PUNCT _ _ 7 punct _ AlignBegin=101555|AlignEnd=103340|Gloss=PUNCT
2 but but CCONJ _ _ 7 discourse _ AlignBegin=103340|AlignEnd=103450|Gloss=but
3 Alaska Alaska PROPN _ _ 7 subj _ AlignBegin=103450|AlignEnd=103866|Gloss=Alaska
4 Pepper pepper NOUN _ _ 3 flat _ AlignBegin=103866|AlignEnd=104252|Gloss=pepper
5 < < PUNCT _ _ 3 punct _ AlignBegin=104252|AlignEnd=104252|Gloss=PUNCT
6 # # PUNCT _ _ 3 punct _ AlignBegin=104252|AlignEnd=104773|Gloss=PUNCT
7 na na PART _ PartType=Cop 0 root _ AlignBegin=104773|AlignEnd=105043|Gloss=be
8 one one DET _ Definite=Spec|PronType=Art 10 det _ AlignBegin=105043|AlignEnd=105103|Gloss=SPEC.ART
9 kind kind ADJ _ _ 10 mod _ AlignBegin=105103|AlignEnd=105303|Gloss=kind
10 person person NOUN _ _ 7 comp:pred _ AlignBegin=105303|AlignEnd=105713|Gloss=person
11 wey wey SCONJ _ ExtPos=SCONJ 10 mod@relcl _ AlignBegin=105713|AlignEnd=105823|Gloss=REL
12 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 13 subj _ AlignBegin=105823|AlignEnd=105853|Gloss=NOM.SG.3
13 be be VERB _ Case=Nom|Number=Sing|PartType=Cop|Person=3|PronType=Prs 11 comp:obj _ AlignBegin=105853|AlignEnd=105963|Gloss=be
14 sey sey SCONJ _ Case=Nom|Number=Sing|PartType=Cop|Person=3|PronType=Prs 13 comp:pred _ AlignBegin=105963|AlignEnd=106289|Gloss=COMP
15 # # PUNCT _ _ 18 punct _ AlignBegin=106289|AlignEnd=107157|Gloss=PUNCT
16 [ [ PUNCT _ _ 18 punct _ AlignBegin=107127|AlignEnd=107157|Gloss=PUNCT
17 people people NOUN _ Number=Plur 18 subj _ AlignBegin=107157|AlignEnd=107407|Gloss=people.PL
18 no no AUX _ Polarity=Neg 14 comp:obj _ AlignBegin=107407|AlignEnd=107557|Gloss=NEG
19 like like VERB _ _ 18 comp:aux _ AlignBegin=107557|AlignEnd=107973|Gloss=like
20 ] ] PUNCT _ _ 18 punct _ AlignBegin=107973|AlignEnd=107973|Gloss=PUNCT
21 // // PUNCT _ _ 7 punct _ AlignBegin=107943|AlignEnd=107973|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__32
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # but # e get some kind tings { wey dey || # wey e dey } work for inside { Alap~ || Alaska } Pepper mind //
# text_en = But there were things that were... that were going on in Alap-... Alaska Pepper's mind.
# text_ortho = But e get some kind tings wey dey, wey e dey work for inside Alap-... Alaska Pepper mind.
1 # # PUNCT _ _ 5 punct _ AlignBegin=107973|AlignEnd=108620|Gloss=PUNCT
2 but but CCONJ _ _ 5 discourse _ AlignBegin=108620|AlignEnd=109026|Gloss=but
3 # # PUNCT _ _ 5 punct _ AlignBegin=109026|AlignEnd=109660|Gloss=PUNCT
4 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 5 subj@expl _ AlignBegin=109660|AlignEnd=109750|Gloss=NOM.SG.3
5 get get VERB _ _ 0 root _ AlignBegin=109750|AlignEnd=109920|Gloss=get
6 some some DET _ _ 8 det _ AlignBegin=109920|AlignEnd=110060|Gloss=some
7 kind kind ADJ _ _ 8 mod _ AlignBegin=110060|AlignEnd=110310|Gloss=kind
8 tings tings NOUN _ Number=Plur 5 comp:obj@agent _ AlignBegin=110310|AlignEnd=110580|Gloss=thing.PL
9 { { PUNCT _ _ 10 punct _ AlignBegin=110580|AlignEnd=110580|Gloss=PUNCT
10 wey wey SCONJ _ _ 8 mod@relcl _ AlignBegin=110580|AlignEnd=110710|Gloss=REL
11 dey dey AUX _ Aspect=Imp 10 comp:obj _ AlignBegin=110710|AlignEnd=110920|Gloss=IPFV
12 || || PUNCT _ _ 14 punct _ AlignBegin=110920|AlignEnd=110920|Gloss=PUNCT
13 # # PUNCT _ _ 14 punct _ AlignBegin=110920|AlignEnd=111420|Gloss=PUNCT
14 wey when SCONJ _ _ 10 conj:dicto _ AlignBegin=111420|AlignEnd=111540|Gloss=when
15 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 16 subj _ AlignBegin=111540|AlignEnd=111570|Gloss=NOM.SG.3
16 dey dey AUX _ Aspect=Imp 14 comp:obj _ AlignBegin=111570|AlignEnd=111700|Gloss=IPFV
17 } } PUNCT _ _ 10 punct _ AlignBegin=111700|AlignEnd=111700|Gloss=PUNCT
18 work work VERB _ _ 16 comp:aux _ AlignBegin=111700|AlignEnd=111880|Gloss=work
19 for for ADP _ ExtPos=ADP 18 comp:obl _ AlignBegin=111880|AlignEnd=111970|Gloss=for|Idiom=Yes
20 inside inside ADP _ _ 19 comp:obj _ AlignBegin=111970|AlignEnd=112180|Gloss=inside|InIdiom=Yes
21 { { PUNCT _ _ 22 punct _ AlignBegin=112180|AlignEnd=112180|Gloss=PUNCT
22 Alap~ X X _ _ 27 mod _ AlignBegin=112180|AlignEnd=112512|Gloss=X
23 || || PUNCT _ _ 24 punct _ AlignBegin=112512|AlignEnd=112512|Gloss=PUNCT
24 Alaska Alaska PROPN _ _ 22 conj:dicto _ AlignBegin=112512|AlignEnd=112950|Gloss=Alaska
25 } } PUNCT _ _ 22 punct _ AlignBegin=112950|AlignEnd=112950|Gloss=PUNCT
26 Pepper pepper NOUN _ _ 24 flat _ AlignBegin=112950|AlignEnd=113220|Gloss=pepper
27 mind mind NOUN _ _ 19 comp:obj _ AlignBegin=113220|AlignEnd=113572|Gloss=mind
28 // // PUNCT _ _ 5 punct _ AlignBegin=113572|AlignEnd=113572|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__33
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # so for dat # town where de dey < # e get di days wey { e dey || de dey } call deir market days //
# text_en = So in that town where they were, there were days which were... they were calling their market days.
# text_ortho = So for dat town where de dey, e get di days wey e dey, de dey call deir market days.
1 # # PUNCT _ _ 13 punct _ AlignBegin=113572|AlignEnd=115057|Gloss=PUNCT
2 so so ADV _ _ 13 discourse _ AlignBegin=115057|AlignEnd=115230|Gloss=so
3 for for ADP _ _ 13 mod:periph _ AlignBegin=115230|AlignEnd=115390|Gloss=for
4 dat dat DET _ Number=Sing 6 det _ AlignBegin=115390|AlignEnd=115770|Gloss=SG.DEM
5 # # PUNCT _ _ 6 punct _ AlignBegin=115770|AlignEnd=116041|Gloss=PUNCT
6 town town NOUN _ _ 3 comp:obj _ AlignBegin=116041|AlignEnd=116311|Gloss=town
7 where where ADV _ PronType=Int 6 mod _ AlignBegin=116311|AlignEnd=116431|Gloss=where.Q
8 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 9 subj _ AlignBegin=116431|AlignEnd=116541|Gloss=NOM.PL.3
9 dey dey VERB _ VerbType=Cop 7 mod@relcl _ AlignBegin=116541|AlignEnd=116800|Gloss=be
10 < < PUNCT _ _ 3 punct _ AlignBegin=116800|AlignEnd=116800|Gloss=PUNCT
11 # # PUNCT _ _ 3 punct _ AlignBegin=116800|AlignEnd=117900|Gloss=PUNCT
12 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 13 subj@expl _ AlignBegin=117900|AlignEnd=118000|Gloss=NOM.SG.3
13 get get VERB _ _ 0 root _ AlignBegin=118000|AlignEnd=118160|Gloss=get
14 di di DET _ Definite=Def|PronType=Art 15 det _ AlignBegin=118160|AlignEnd=118250|Gloss=DEF.ART
15 days day NOUN _ Number=Plur 13 comp:obj@agent _ AlignBegin=118250|AlignEnd=118640|Gloss=day.PL
16 wey wey SCONJ _ _ 15 mod@relcl _ AlignBegin=118640|AlignEnd=118900|Gloss=REL
17 { { PUNCT _ _ 19 punct _ AlignBegin=118900|AlignEnd=118900|Gloss=PUNCT
18 e im PRON _ Case=Nom|Number=Sing|Person=3|PronType=Prs 19 subj _ AlignBegin=118900|AlignEnd=118940|Gloss=NOM.SG.3
19 dey dey AUX _ Aspect=Imp 16 comp:obj _ AlignBegin=118940|AlignEnd=119080|Gloss=IPFV
20 || || PUNCT _ _ 22 punct _ AlignBegin=119080|AlignEnd=119080|Gloss=PUNCT
21 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 22 subj _ AlignBegin=119080|AlignEnd=119210|Gloss=NOM.PL.3
22 dey dey AUX _ Aspect=Imp 19 conj:dicto _ AlignBegin=119210|AlignEnd=119330|Gloss=IPFV
23 } } PUNCT _ _ 19 punct _ AlignBegin=119330|AlignEnd=119330|Gloss=PUNCT
24 call call VERB _ _ 22 comp:aux _ AlignBegin=119330|AlignEnd=119580|Gloss=call
25 deir dem PRON _ Number=Plur|Person=3|Poss=Yes 27 mod:poss _ AlignBegin=119580|AlignEnd=119721|Gloss=PL.3.POSS
26 market market NOUN _ _ 27 compound _ AlignBegin=119721|AlignEnd=120079|Gloss=market
27 days day NOUN _ Number=Plur 24 comp:obj _ AlignBegin=120079|AlignEnd=120473|Gloss=day.PL
28 // // PUNCT _ _ 13 punct _ AlignBegin=120473|AlignEnd=120473|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__34
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363
# speaker_naija_competency = Excellent
# speaker_primary_other_language = English
# speaker_residence = Edo
# speaker_sex = M
# text = # women < # everybody for { different |r different } village < # de go carry deir { different |r different } tings //
# text_en = Women, everybody in different villages, would bring their different things.
# text_ortho = Women, everybody for different, different village, de go carry deir different, different tings.
1 # # PUNCT _ _ 16 punct _ AlignBegin=120473|AlignEnd=121300|Gloss=PUNCT
2 women woman NOUN _ Number=Plur 16 dislocated _ AlignBegin=121300|AlignEnd=121760|Gloss=woman.PL
3 < < PUNCT _ _ 2 punct _ AlignBegin=121760|AlignEnd=121760|Gloss=PUNCT
4 # # PUNCT _ _ 2 punct _ AlignBegin=121760|AlignEnd=122340|Gloss=PUNCT
5 everybody everybody PRON _ _ 16 dislocated _ AlignBegin=122340|AlignEnd=122910|Gloss=everybody
6 for for ADP _ _ 5 mod _ AlignBegin=122910|AlignEnd=123110|Gloss=for
7 { { PUNCT _ _ 8 punct _ AlignBegin=123110|AlignEnd=123110|Gloss=PUNCT
8 different different ADJ _ _ 12 mod _ AlignBegin=123110|AlignEnd=123550|Gloss=different
9 |r |r PUNCT _ _ 10 punct _ AlignBegin=123550|AlignEnd=123550|Gloss=PUNCT
10 different different ADJ _ _ 8 compound:redup _ AlignBegin=123550|AlignEnd=123840|Gloss=different
11 } } PUNCT _ _ 8 punct _ AlignBegin=123840|AlignEnd=123840|Gloss=PUNCT
12 village village NOUN _ _ 6 comp:obj _ AlignBegin=123840|AlignEnd=124410|Gloss=village
13 < < PUNCT _ _ 5 punct _ AlignBegin=124410|AlignEnd=124410|Gloss=PUNCT
14 # # PUNCT _ _ 5 punct _ AlignBegin=124410|AlignEnd=125040|Gloss=PUNCT
15 de dem PRON _ Case=Nom|Number=Plur|Person=3|PronType=Prs 16 subj _ AlignBegin=125040|AlignEnd=125110|Gloss=NOM.PL.3
16 go go AUX _ Aspect=Prosp 0 root _ AlignBegin=125110|AlignEnd=125260|Gloss=PROSP
17 carry carry VERB _ _ 16 comp:aux _ AlignBegin=125260|AlignEnd=125550|Gloss=carry
18 deir dem PRON _ Number=Plur|Person=3|Poss=Yes 24 mod:poss _ AlignBegin=125550|AlignEnd=125710|Gloss=PL.3.POSS
19 { { PUNCT _ _ 20 punct _ AlignBegin=125710|AlignEnd=125710|Gloss=PUNCT
20 different different ADJ _ _ 24 mod _ AlignBegin=125710|AlignEnd=126110|Gloss=different
21 |r |r PUNCT _ _ 22 punct _ AlignBegin=126110|AlignEnd=126110|Gloss=PUNCT
22 different different ADJ _ _ 20 compound:redup _ AlignBegin=126110|AlignEnd=126410|Gloss=different
23 } } PUNCT _ _ 20 punct _ AlignBegin=126410|AlignEnd=126410|Gloss=PUNCT
24 tings tings NOUN _ Number=Plur 17 comp:obj _ AlignBegin=126410|AlignEnd=126894|Gloss=thing.PL
25 // // PUNCT _ _ 16 punct _ AlignBegin=126894|AlignEnd=126894|Gloss=PUNCT
# sent_id = IBA_04_Alaska-Pepe_MG__35
# sound_url = http://naijasyncor.huma-num.fr/carte/mp3/IBA_04_Alaska-Pepe_MG.mp3
# speaker_age = 31-45
# speaker_birthplace = Edo
# speaker_education = Tertiary
# speaker_id = Sp363