-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathfriends_dev.json
More file actions
7230 lines (7230 loc) · 224 KB
/
friends_dev.json
File metadata and controls
7230 lines (7230 loc) · 224 KB
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
[
[
{
"speaker": "Phoebe",
"utterance": "Oh my God, he\u0092s lost it. He\u0092s totally lost it.",
"emotion": "non-neutral",
"annotation": "0002120"
},
{
"speaker": "Monica",
"utterance": "What?",
"emotion": "surprise",
"annotation": "1000130"
},
{
"speaker": "Ross",
"utterance": "Or! Or, we could go to the bank, close our accounts and cut them off at the source.",
"emotion": "neutral",
"annotation": "3000200"
},
{
"speaker": "Chandler",
"utterance": "You\u0092re a genius!",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Joey",
"utterance": "Aww, man, now we won\u0092t be bank buddies!",
"emotion": "sadness",
"annotation": "0040100"
},
{
"speaker": "Chandler",
"utterance": "Now, there\u0092s two reasons.",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Phoebe",
"utterance": "Hey.",
"emotion": "neutral",
"annotation": "3100010"
},
{
"speaker": "All",
"utterance": "Hey!",
"emotion": "joy",
"annotation": "1300010"
},
{
"speaker": "Phoebe",
"utterance": "Ohh, you guys, remember that cute client I told you about? I bit him.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Rachel",
"utterance": "Where?!",
"emotion": "surprise",
"annotation": "0000050"
},
{
"speaker": "Phoebe",
"utterance": "On the touchy.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Ross",
"utterance": "And",
"emotion": "neutral",
"annotation": "3000020"
},
{
"speaker": "Phoebe",
"utterance": "No, I know!",
"emotion": "surprise",
"annotation": "2000030"
},
{
"speaker": "Phoebe",
"utterance": "I-I\u0092m sorry, but the moment I touch him, I just wanna throw out my old oath and take a new, dirty one.",
"emotion": "non-neutral",
"annotation": "2200010"
},
{
"speaker": "Monica",
"utterance": "Well, next time your massaging him, you should try and distract yourself.",
"emotion": "neutral",
"annotation": "3010010"
},
{
"speaker": "Joey",
"utterance": "Yeah! Yeah! Yeah! Like-like when I\u0092m doing something exciting and I don\u0092t wanna get",
"emotion": "joy",
"annotation": "2300000"
},
{
"speaker": "Chandler",
"utterance": "Thank you, Joey.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Joey",
"utterance": "No-no, thank you.",
"emotion": "neutral",
"annotation": "3100001"
}
],
[
{
"speaker": "Joey",
"utterance": "Hey Estelle, listen",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Estelle",
"utterance": "Well! Well! Well! Joey Tribbiani! So you came back huh? They",
"emotion": "surprise",
"annotation": "0100130"
},
{
"speaker": "Joey",
"utterance": "What are you talkin\u0092 about? I never left you! You\u0092ve always been my agent!",
"emotion": "surprise",
"annotation": "0200030"
},
{
"speaker": "Estelle",
"utterance": "Really?!",
"emotion": "surprise",
"annotation": "0100040"
},
{
"speaker": "Joey",
"utterance": "Yeah!",
"emotion": "joy",
"annotation": "2300000"
},
{
"speaker": "Estelle",
"utterance": "Oh well, no harm, no foul.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Gary",
"utterance": "Okay, you guys free tonight?",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Ross",
"utterance": "Yeah!!",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Chandler",
"utterance": "Tonight? You-you didn't say it was going to be at nighttime.",
"emotion": "surprise",
"annotation": "1001030"
}
],
[
{
"speaker": "Ross",
"utterance": "Yes? Yes?! How can I help you?",
"emotion": "neutral",
"annotation": "3000011"
},
{
"speaker": "Guy",
"utterance": "Yeah, we were\u0085we were just looking around.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Ross",
"utterance": "Oh-oh, you\u0092re-you\u0092re fellow scholars.",
"emotion": "surprise",
"annotation": "1000031"
},
{
"speaker": "Ross",
"utterance": "What exactly were you looking for, hmm?",
"emotion": "neutral",
"annotation": "4000001"
},
{
"speaker": "Ross",
"utterance": "Perhaps, perhaps Dr. Chester Stock\u0092s musings on the Smiledon Californicus?",
"emotion": "neutral",
"annotation": "4000001"
},
{
"speaker": "Guy",
"utterance": "Uhh\u0085.",
"emotion": "neutral",
"annotation": "3000020"
},
{
"speaker": "Ross",
"utterance": "Ah\u0085 Ah\u0085Get out of here! Uh, meeting someone? Or-or are you just here to brush up on Marion\u0092s views on evolution?",
"emotion": "non-neutral",
"annotation": "1000211"
},
{
"speaker": "Woman",
"utterance": "Uh, actually I find Marion\u0092s views far too progressionist.",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Ross",
"utterance": "I find Marion\u0092s views far too progressionist.",
"emotion": "neutral",
"annotation": "3000011"
},
{
"speaker": "Woman",
"utterance": "I\u0092m sorry, who are you?",
"emotion": "surprise",
"annotation": "1000040"
},
{
"speaker": "Ross",
"utterance": "I\u0092m a professor here uh, Ross\u0085Geller.",
"emotion": "neutral",
"annotation": "3100010"
},
{
"speaker": "Woman",
"utterance": "Ross Geller, why do I know that name? It\u0092s uh\u0097Wait! Did you write this?",
"emotion": "surprise",
"annotation": "1000040"
},
{
"speaker": "Ross",
"utterance": "Yes! You\u0092re the person who checked out my book?!",
"emotion": "surprise",
"annotation": "0000050"
},
{
"speaker": "Woman",
"utterance": "Y\u0092know, you look nothing like I would\u0092ve thought. You\u0092re\u0085you\u0092re so young.",
"emotion": "surprise",
"annotation": "0100040"
},
{
"speaker": "Ross",
"utterance": "Well I uh, I skipped forth grade.",
"emotion": "neutral",
"annotation": "4100000"
}
],
[
{
"speaker": "Ross",
"utterance": "You had no right to tell me you ever had feelings for me.",
"emotion": "anger",
"annotation": "0010400"
},
{
"speaker": "Rachel",
"utterance": "What?",
"emotion": "surprise",
"annotation": "0000050"
},
{
"speaker": "Ross",
"utterance": "I was doing great with Julie before I found out about you.",
"emotion": "anger",
"annotation": "0010400"
},
{
"speaker": "Rachel",
"utterance": "Hey, I was doin' great before I found out about you. You think it's easy for me to see you with Julie?",
"emotion": "anger",
"annotation": "0020300"
},
{
"speaker": "Ross",
"utterance": "The point is I...",
"emotion": "non-neutral",
"annotation": "1021100"
},
{
"speaker": "Ross",
"utterance": "I don't need this right now, OK.",
"emotion": "anger",
"annotation": "0000401"
},
{
"speaker": "Ross",
"utterance": "It, it's too late, I'm with somebody else, I'm happy.",
"emotion": "non-neutral",
"annotation": "0220100"
},
{
"speaker": "Ross",
"utterance": "This ship has sailed.",
"emotion": "non-neutral",
"annotation": "2100200"
},
{
"speaker": "Rachel",
"utterance": "Alright, fine, you go ahead and you do that, alright Ross.",
"emotion": "non-neutral",
"annotation": "1010201"
},
{
"speaker": "Ross",
"utterance": "Fine.",
"emotion": "anger",
"annotation": "1000301"
},
{
"speaker": "Rachel",
"utterance": "'Cause I don't need your stupid ship.",
"emotion": "anger",
"annotation": "0000500"
},
{
"speaker": "Ross",
"utterance": "Good.",
"emotion": "anger",
"annotation": "1000400"
},
{
"speaker": "Rachel",
"utterance": "Good.",
"emotion": "anger",
"annotation": "1000400"
}
],
[
{
"speaker": "Phoebe",
"utterance": "Oh, it's so romantic to send people off on their honeymoon.",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Joey",
"utterance": "Y\u0092know, Monica and Chandler are married. Ross and Rachel are having a baby. Maybe you and I should do something.",
"emotion": "neutral",
"annotation": "4010000"
},
{
"speaker": "Phoebe",
"utterance": "All in good time my love.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Phoebe",
"utterance": "All in good time.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Phoebe",
"utterance": "Oh shoot!",
"emotion": "surprise",
"annotation": "1000040"
},
{
"speaker": "Phoebe",
"utterance": "I left my guitar in their apartment.",
"emotion": "non-neutral",
"annotation": "1020011"
},
{
"speaker": "Phoebe",
"utterance": "Well you can let me in later.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Joey",
"utterance": "I don\u0092t have a key, they took mine to give to you.",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Phoebe",
"utterance": "What?! They took mine to give to you!",
"emotion": "surprise",
"annotation": "0000050"
},
{
"speaker": "Joey",
"utterance": "Why would they take away our keys?",
"emotion": "surprise",
"annotation": "0010040"
},
{
"speaker": "Ross",
"utterance": "Wow! It looks like we got a lot of good stuff.",
"emotion": "joy",
"annotation": "0400010"
},
{
"speaker": "Rachel",
"utterance": "Oh we did, but my mom got us the greatest gift of all.",
"emotion": "joy",
"annotation": "1400000"
},
{
"speaker": "Ross",
"utterance": "A",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Rachel",
"utterance": "No. She\u0092s going to live with us for eight weeks.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Ross",
"utterance": "Uh, what?",
"emotion": "surprise",
"annotation": "0000050"
},
{
"speaker": "Rachel",
"utterance": "Yes! She\u0092s gonna help us take care of the baby! Woo-hoo.",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Ross",
"utterance": "What\u0097You\u0092re not serious.",
"emotion": "non-neutral",
"annotation": "0001112"
},
{
"speaker": "Ross",
"utterance": "I mean she\u0092s a very nice woman, but there is no way we can take eight weeks of her.",
"emotion": "non-neutral",
"annotation": "1001012"
},
{
"speaker": "Ross",
"utterance": "She\u0092ll drive us totally crazy.",
"emotion": "disgust",
"annotation": "0001004"
},
{
"speaker": "Mrs. Green",
"utterance": "Hi Ross!",
"emotion": "joy",
"annotation": "0400010"
},
{
"speaker": "Ross",
"utterance": "Hi roomie!",
"emotion": "joy",
"annotation": "0500000"
}
],
[
{
"speaker": "Monica",
"utterance": "Hey! What did you decide to do about the movie?",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Joey",
"utterance": "I don\u0092t know!",
"emotion": "neutral",
"annotation": "4001000"
},
{
"speaker": "Joey",
"utterance": "It\u0092s not like it\u0092s porn!",
"emotion": "neutral",
"annotation": "3000002"
},
{
"speaker": "Joey",
"utterance": "This is a serious, legitimate movie.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Joey",
"utterance": "Y\u0092know?",
"emotion": "neutral",
"annotation": "4001000"
},
{
"speaker": "Joey",
"utterance": "And the nudity is really important to the story.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Monica",
"utterance": "That\u0092s what you say about porn.",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Joey",
"utterance": "You\u0092re right. Maybe I shouldn\u0092t even go on the call back.",
"emotion": "neutral",
"annotation": "3010001"
},
{
"speaker": "Monica",
"utterance": "No! No you should! A lot of major actors do nude scenes! I mean, the chance to star in a movie? Come on!",
"emotion": "non-neutral",
"annotation": "2100020"
},
{
"speaker": "Joey",
"utterance": "Well that\u0092s true.",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Joey",
"utterance": "And I am only naked in one scene.",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Joey",
"utterance": "Plus it sounds really great.",
"emotion": "neutral",
"annotation": "3200000"
},
{
"speaker": "Joey",
"utterance": "My character\u0092s catholic and he falls in love with this Jewish girl.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Joey",
"utterance": "Who run away together and they get caught in this big rainstorm.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Joey",
"utterance": "So we go into this barn and undress each other and hold each other.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Joey",
"utterance": "It\u0092s really sweet and-and tender.",
"emotion": "joy",
"annotation": "2300000"
}
],
[
{
"speaker": "Joey",
"utterance": "Hey, what\u0092s up?",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Chandler",
"utterance": "Nothing, Monica and I had a stupid fight.",
"emotion": "sadness",
"annotation": "0040100"
},
{
"speaker": "Joey",
"utterance": "But you\u0092re still moving in together, right? Because my ad came out today.",
"emotion": "neutral",
"annotation": "3001010"
},
{
"speaker": "Chandler",
"utterance": "\"Wanted. Female roommate, non-smoker, non-ugly.\" Nice!",
"emotion": "joy",
"annotation": "2300000"
},
{
"speaker": "Joey",
"utterance": "Yeah?",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Joey",
"utterance": "I just figured y\u0092know, after living with you it\u0092d be an interesting change of pace to have a female roommate, y\u0092know?",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Joey",
"utterance": "Someone I can learn from, someone-someone who\u0092s different than me.",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Joey",
"utterance": "And what\u0092s more different than me; a guy who\u0092s",
"emotion": "neutral",
"annotation": "4100000"
}
],
[
{
"speaker": "Ross",
"utterance": "So where are we going next?",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Gary",
"utterance": "This witness won't return my calls so we're gonna see if we can surprise him coming home.",
"emotion": "neutral",
"annotation": "4000001"
},
{
"speaker": "Chandler",
"utterance": "Sur-surprise him? We're not, we're not gonna make anybody mad are we?",
"emotion": "fear",
"annotation": "0004010"
},
{
"speaker": "Joey",
"utterance": "Come on man! Listen so uh, are you gonna squeeze the perps shoes a little bit before he lawyers up?",
"emotion": "non-neutral",
"annotation": "2101001"
},
{
"speaker": "Gary",
"utterance": "It's a witness not a perp. And no one talks like that!",
"emotion": "non-neutral",
"annotation": "2000102"
},
{
"speaker": "Ross",
"utterance": "Yeah, no one talks like that!",
"emotion": "non-neutral",
"annotation": "2000012"
},
{
"speaker": "Joey",
"utterance": "Oh what? Like your Mr. Cop!",
"emotion": "anger",
"annotation": "1000301"
},
{
"speaker": "Ross",
"utterance": "Hey, I'm more cop than you two!",
"emotion": "anger",
"annotation": "1000301"
},
{
"speaker": "Chandler",
"utterance": "How do you figure that?",
"emotion": "non-neutral",
"annotation": "1000121"
},
{
"speaker": "Ross",
"utterance": "Hello! I'm in the front seat, okay? I'm Gary's partner!",
"emotion": "neutral",
"annotation": "4100000"
},
{
"speaker": "Phoebe",
"utterance": "I guess so.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Rachel",
"utterance": "Here you go. Thank you!",
"emotion": "neutral",
"annotation": "3100100"
},
{
"speaker": "Phoebe",
"utterance": "Wait, Rach! Where's the other one?",
"emotion": "neutral",
"annotation": "3000020"
},
{
"speaker": "Rachel",
"utterance": "Oh what, you-you want both of them?",
"emotion": "surprise",
"annotation": "1000040"
},
{
"speaker": "Phoebe",
"utterance": "Rachel Karen Green, where's the other earring?!",
"emotion": "anger",
"annotation": "1000400"
},
{
"speaker": "Rachel",
"utterance": "Okay, okay, okay, look, just don't freak out, but I kinda lost it.",
"emotion": "fear",
"annotation": "0013001"
},
{
"speaker": "Rachel",
"utterance": "I know it's in the apartment, but I",
"emotion": "neutral",
"annotation": "3011000"
},
{
"speaker": "Phoebe",
"utterance": "Well, what am I going to tell Monica? She wants to wear them tonight!",
"emotion": "fear",
"annotation": "1003100"
},
{
"speaker": "Rachel",
"utterance": "Tell her to wear her own earrings.",
"emotion": "non-neutral",
"annotation": "2000102"
},
{
"speaker": "Phoebe",
"utterance": "These",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Rachel",
"utterance": "Nooo! Nooooo! You lent me Monica's earrings?! I'm not allowed to borrow her stuff!",
"emotion": "anger",
"annotation": "0001400"
},
{
"speaker": "Phoebe",
"utterance": "Why not?",
"emotion": "neutral",
"annotation": "4000010"
},
{
"speaker": "Rachel",
"utterance": "Because I lose her stuff!",
"emotion": "non-neutral",
"annotation": "1002200"
}
],
[
{
"speaker": "Monica",
"utterance": "Well, you\u0092re-you\u0092re sweating.",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Ross",
"utterance": "These-these are beads of joy.",
"emotion": "joy",
"annotation": "2300000"
},
{
"speaker": "Monica",
"utterance": "Oh that\u0092s sweet. Don\u0092t touch me.",
"emotion": "disgust",
"annotation": "2000003"
},
{
"speaker": "Ross",
"utterance": "Uh Phoebe, can I see you for a second?",
"emotion": "neutral",
"annotation": "5000000"
},
{
"speaker": "Phoebe",
"utterance": "Yeah!",
"emotion": "neutral",
"annotation": "3200000"
},
{
"speaker": "Phoebe",
"utterance": "What\u0092s going on?",
"emotion": "neutral",
"annotation": "4001000"
},
{
"speaker": "Ross",
"utterance": "Chandler\u0092s gone again!",
"emotion": "surprise",
"annotation": "0101030"
},
{
"speaker": "Phoebe",
"utterance": "Oh my God! Why would you play hide and seek with someone you know is a flight risk?!",
"emotion": "non-neutral",
"annotation": "0101120"
}
],
[
{
"speaker": "Dr. Harad",
"utterance": "Okay. You ready to push again?",
"emotion": "neutral",
"annotation": "4001000"
},
{
"speaker": "Phoebe",
"utterance": "I already had a baby. Leave me alone.",
"emotion": "anger",
"annotation": "0010400"
},
{
"speaker": "Frank",
"utterance": "Okay, okay, come on, you can do it. You can do it!",
"emotion": "joy",
"annotation": "1400000"
},
{
"speaker": "Frank",
"utterance": "Yeah!!",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Frank",
"utterance": "Little Leslie is here!",
"emotion": "joy",
"annotation": "1400000"
},
{
"speaker": "Frank",
"utterance": "We got another one!",
"emotion": "surprise",
"annotation": "0200030"
},
{
"speaker": "Frank",
"utterance": "Oh my God, I can't believe I have two-two children.",
"emotion": "surprise",
"annotation": "0100040"
},
{
"speaker": "Frank",
"utterance": "How scary is that?",
"emotion": "surprise",
"annotation": "0002030"
},
{
"speaker": "Frank",
"utterance": "Come on little Chandler, it's time to be born. Come on little Chandler! Come on!",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Dr. Harad",
"utterance": "All right, he's coming. He's coming!",
"emotion": "joy",
"annotation": "0300020"
},
{
"speaker": "Frank",
"utterance": "Hey, where's his thing?",
"emotion": "surprise",
"annotation": "0001040"
},
{
"speaker": "Frank",
"utterance": "Chandler's a girl!",
"emotion": "surprise",
"annotation": "0100040"
},
{
"speaker": "Chandler",
"utterance": "Oh God, kindergarten flashback.",
"emotion": "surprise",
"annotation": "0010031"
},
{
"speaker": "Frank",
"utterance": "They musta read the sonogram wrong.",
"emotion": "surprise",
"annotation": "0000230"
},
{
"speaker": "Frank",
"utterance": "'Cause they, 'cause they thought it was a boy, but Chandler's a girl!",
"emotion": "surprise",
"annotation": "0000050"
},
{
"speaker": "Frank",
"utterance": "Chandler's a girl!",
"emotion": "surprise",
"annotation": "0200030"
},
{
"speaker": "Chandler",
"utterance": "Okay, keep saying it!",
"emotion": "joy",
"annotation": "0300101"
},
{
"speaker": "Alice",
"utterance": "Am I too late?!",
"emotion": "neutral",
"annotation": "3002000"
},
{
"speaker": "Frank",
"utterance": "No-no ah, everything's okay. Everybody's healthy there's 30 fingers and 30 toes.",
"emotion": "joy",
"annotation": "0500000"
},
{
"speaker": "Alice",
"utterance": "We have our babies?",
"emotion": "surprise",
"annotation": "0100040"
},
{
"speaker": "Frank",
"utterance": "Yeah.",
"emotion": "joy",
"annotation": "1400000"
},
{
"speaker": "Alice",
"utterance": "Oh, we have our babies.",
"emotion": "joy",
"annotation": "0500000"
}
],
[
{
"speaker": "Bob",
"utterance": "Hey Toby!",
"emotion": "joy",
"annotation": "1400000"
},
{
"speaker": "Chandler",
"utterance": "Hey Bobby.",
"emotion": "neutral",
"annotation": "4001000"
},
{
"speaker": "Bob",
"utterance": "It\u0092s Bob actually. Hey, you work up here, can you tell me where this Chandler",
"emotion": "neutral",
"annotation": "3000101"
},
{
"speaker": "Chandler",
"utterance": "Uhh yeah. Yeah, it\u0092s right, right down there. Right there, yeah. Can I ask you why?",
"emotion": "neutral",
"annotation": "3001010"
},
{
"speaker": "Bob",
"utterance": "I want to talk to that bastard, see what his problem is.",
"emotion": "anger",
"annotation": "0000500"
},
{
"speaker": "Chandler",
"utterance": "Okay Bob listen uhh, I\u0092m the reason you didn\u0092t get the job up here.",
"emotion": "non-neutral",
"annotation": "2002001"
},
{
"speaker": "Bob",
"utterance": "Toby don\u0092t.",
"emotion": "non-neutral",
"annotation": "2000201"
},
{
"speaker": "Chandler",
"utterance": "Bob!",
"emotion": "non-neutral",
"annotation": "1001120"
},
{
"speaker": "Bob",
"utterance": "Toby! I\u0092m not gonna let you cover for him. Anything you say right now will just get me more upset with Chandler!",
"emotion": "anger",
"annotation": "0000410"
},
{
"speaker": "Joey",
"utterance": "Ohh!",
"emotion": "surprise",
"annotation": "1000040"
},