File size: 45,528 Bytes
ef14680 | 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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 | [
{
"start_time": "23.78",
"stop_time": "30.93",
"speaker": "Ellie",
"value": "hi i'm ellie thanks for coming in today i was created to talk to people in a safe and secure environment "
},
{
"start_time": "31.75",
"stop_time": "38.26",
"speaker": "Ellie",
"value": "i'm not a therapist but i'm here to learn about people and would love to learn about you i'll ask a few questions to get us started"
},
{
"start_time": "38.86",
"stop_time": "43.49",
"speaker": "Ellie",
"value": "and please feel free to tell me anything your answers are totally confidential"
},
{
"start_time": "44.09",
"stop_time": "45.12",
"speaker": "Ellie",
"value": "are you okay with this "
},
{
"start_time": "45.68",
"stop_time": "46.07",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "46.57",
"stop_time": "49.55",
"speaker": "Ellie",
"value": "okay so how are you doing today"
},
{
"start_time": "50.38",
"stop_time": "50.97",
"speaker": "Participant",
"value": "i'm okay "
},
{
"start_time": "51.64",
"stop_time": "52.21",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "53.26",
"stop_time": "54.46",
"speaker": "Ellie",
"value": "where are you from originally"
},
{
"start_time": "55.19",
"stop_time": "57.08",
"speaker": "Participant",
"value": "uh i'm from here originally los angeles "
},
{
"start_time": "57.43",
"stop_time": "57.93",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "58.19",
"stop_time": "58.5",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "58.53",
"stop_time": "60.5",
"speaker": "Ellie",
"value": "what are some things you really like about l_a "
},
{
"start_time": "61.39",
"stop_time": "64.03",
"speaker": "Participant",
"value": "um i like the weather "
},
{
"start_time": "64.76",
"stop_time": "65.22",
"speaker": "Ellie",
"value": "uh huh"
},
{
"start_time": "65.28",
"stop_time": "69.1",
"speaker": "Participant",
"value": "and my family's here which is why i'm here i moved away for a while"
},
{
"start_time": "69.79",
"stop_time": "70.41",
"speaker": "Ellie",
"value": "aw"
},
{
"start_time": "69.82",
"stop_time": "72.09",
"speaker": "Participant",
"value": "uh i like that there's a lot of"
},
{
"start_time": "72.95",
"stop_time": "82.45",
"speaker": "Participant",
"value": "culture <cult> even though everyone says there's not culture in l_a there is a lot of culture there's theater and film and lots of museums and things like that all different kinds of people i like the diversity "
},
{
"start_time": "83.06",
"stop_time": "83.45",
"speaker": "Ellie",
"value": "yeah "
},
{
"start_time": "83.91",
"stop_time": "84.2",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "84.3",
"stop_time": "86.32",
"speaker": "Ellie",
"value": "what are some things you don't really like about l_a"
},
{
"start_time": "87.56",
"stop_time": "88.18",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "89.32",
"stop_time": "98.09",
"speaker": "Participant",
"value": "well i don't like that i had to move back kind of against my will <laughter> so starting a new career"
},
{
"start_time": "98.79",
"stop_time": "101.83",
"speaker": "Participant",
"value": "uh starting over in my career it so that's not really something"
},
{
"start_time": "101.26",
"stop_time": "102.23",
"speaker": "Ellie",
"value": "can you tell me about that "
},
{
"start_time": "102.75",
"stop_time": "104.61",
"speaker": "Participant",
"value": "uh well i moved back 'cause my dad was sick "
},
{
"start_time": "105.73",
"stop_time": "106.18",
"speaker": "Participant",
"value": "so"
},
{
"start_time": "105.89",
"stop_time": "106.84",
"speaker": "Ellie",
"value": "i'm sorry to hear that "
},
{
"start_time": "107.29",
"stop_time": "107.8",
"speaker": "Participant",
"value": "thank you "
},
{
"start_time": "108.53",
"stop_time": "109.11",
"speaker": "Participant",
"value": "thank you"
},
{
"start_time": "110.33",
"stop_time": "115.5",
"speaker": "Participant",
"value": "so that's why i'm here but it also means i live with my dad and my brother who are like hoarders and ridiculous so "
},
{
"start_time": "115.61",
"stop_time": "116.34",
"speaker": "Ellie",
"value": "<laughter> "
},
{
"start_time": "116.99",
"stop_time": "117.23",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "117.35",
"stop_time": "118.44",
"speaker": "Ellie",
"value": "what'd you study at school "
},
{
"start_time": "119.08",
"stop_time": "119.53",
"speaker": "Participant",
"value": "acting"
},
{
"start_time": "120.44",
"stop_time": "120.96",
"speaker": "Participant",
"value": "theater"
},
{
"start_time": "121.6",
"stop_time": "122.62",
"speaker": "Ellie",
"value": "that sounds interesting "
},
{
"start_time": "123.03",
"stop_time": "123.39",
"speaker": "Participant",
"value": "it was"
},
{
"start_time": "123.94",
"stop_time": "125.01",
"speaker": "Ellie",
"value": "are you still doing that "
},
{
"start_time": "125.16",
"stop_time": "125.46",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "126.09",
"stop_time": "126.34",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "127.37",
"stop_time": "127.92",
"speaker": "Participant",
"value": "yeah i am "
},
{
"start_time": "127.64",
"stop_time": "128.42",
"speaker": "Ellie",
"value": "what do you do now "
},
{
"start_time": "129.19",
"stop_time": "135.47",
"speaker": "Participant",
"value": "i'm an actor i uh right now i'm doing a a theater show and auditioning and taking some classes and "
},
{
"start_time": "136.48",
"stop_time": "137.04",
"speaker": "Participant",
"value": "that sort of thing "
},
{
"start_time": "137.72",
"stop_time": "139.19",
"speaker": "Ellie",
"value": "how did you decide to do that "
},
{
"start_time": "140.3",
"stop_time": "143.77",
"speaker": "Participant",
"value": "um well my parents are both"
},
{
"start_time": "144.46",
"stop_time": "150.66",
"speaker": "Participant",
"value": "artsy people and i grew up around it and for a long time i was singing and then uh i was went to study musical theater"
},
{
"start_time": "151.26",
"stop_time": "157.51",
"speaker": "Participant",
"value": "and somewhere along the lines i realized that acting was more my bag than singing i suppose but i still do both "
},
{
"start_time": "158.18",
"stop_time": "158.99",
"speaker": "Ellie",
"value": "that's great "
},
{
"start_time": "159.52",
"stop_time": "159.84",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "160.42",
"stop_time": "161.87",
"speaker": "Ellie",
"value": "do you consider yourself an introvert "
},
{
"start_time": "163.13",
"stop_time": "164.16",
"speaker": "Participant",
"value": "no i don't "
},
{
"start_time": "165.83",
"stop_time": "166.21",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "167.15",
"stop_time": "170.72",
"speaker": "Participant",
"value": "uh i don't usually have trouble talking to people uh i'm pretty friendly"
},
{
"start_time": "171.41",
"stop_time": "177.75",
"speaker": "Participant",
"value": "i can get along with most people people usually tell me their secrets within five minutes of meeting me which i feel is a mark of an extrovert <laughter> "
},
{
"start_time": "175.39",
"stop_time": "176.14",
"speaker": "Ellie",
"value": "<laughter> "
},
{
"start_time": "179.53",
"stop_time": "179.97",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "181.53",
"stop_time": "182.9",
"speaker": "Ellie",
"value": "what do you do to relax"
},
{
"start_time": "182.8",
"stop_time": "184.75",
"speaker": "Participant",
"value": "<laughter> um "
},
{
"start_time": "186.16",
"stop_time": "188.3",
"speaker": "Participant",
"value": "i take a bath or read a book"
},
{
"start_time": "189.11",
"stop_time": "190.99",
"speaker": "Participant",
"value": "uh go out with my friends"
},
{
"start_time": "192.36",
"stop_time": "193.37",
"speaker": "Participant",
"value": "go to the theater"
},
{
"start_time": "194.33",
"stop_time": "195.03",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "196.45",
"stop_time": "202.1",
"speaker": "Participant",
"value": "eh sometimes my work is very relaxing so sometimes just like singing a song or any of that going for a walk "
},
{
"start_time": "203.09",
"stop_time": "203.54",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "204.08",
"stop_time": "204.9",
"speaker": "Participant",
"value": "mhm yoga"
},
{
"start_time": "204.49",
"stop_time": "206.57",
"speaker": "Ellie",
"value": "what are some things that make you really mad "
},
{
"start_time": "207.74",
"stop_time": "209.75",
"speaker": "Participant",
"value": "things that make me mad um "
},
{
"start_time": "212.04",
"stop_time": "217",
"speaker": "Participant",
"value": "injustice <laughter> i can be very righteously indignant i suppose um "
},
{
"start_time": "218.6",
"stop_time": "227.49",
"speaker": "Participant",
"value": "people who don't see those things and people who've who have a like entitlement i think entitlement and sense of privilege that can make me mad "
},
{
"start_time": "226.87",
"stop_time": "227.32",
"speaker": "Ellie",
"value": "yeah "
},
{
"start_time": "228.49",
"stop_time": "228.78",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "229.57",
"stop_time": "230.89",
"speaker": "Ellie",
"value": "what do you do when you're annoyed "
},
{
"start_time": "232.56",
"stop_time": "233.3",
"speaker": "Participant",
"value": "uh "
},
{
"start_time": "234.98",
"stop_time": "244.2",
"speaker": "Participant",
"value": "it depends i usually <usual> a lot of times it's i argue my case <laughter> i guess <laughter> um or i i call my best friend usually and complain"
},
{
"start_time": "245.22",
"stop_time": "245.95",
"speaker": "Participant",
"value": "talk to her about it "
},
{
"start_time": "247.02",
"stop_time": "247.48",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "248.52",
"stop_time": "250.43",
"speaker": "Ellie",
"value": "how are you at controlling your temper"
},
{
"start_time": "251.18",
"stop_time": "253.96",
"speaker": "Participant",
"value": "pretty good pretty good i don't have too much of a temper "
},
{
"start_time": "254.99",
"stop_time": "257.84",
"speaker": "Ellie",
"value": "when was the last time you argued with someone and what was it about "
},
{
"start_time": "258.94",
"stop_time": "259.59",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "261.17",
"stop_time": "263.59",
"speaker": "Participant",
"value": "like a real argument or like a debate "
},
{
"start_time": "264.63",
"stop_time": "264.97",
"speaker": "Ellie",
"value": "uh huh"
},
{
"start_time": "265.97",
"stop_time": "267.72",
"speaker": "Participant",
"value": "<laughter> um"
},
{
"start_time": "269.6",
"stop_time": "277.32",
"speaker": "Participant",
"value": "if was a real argument it probably would be my ex-boyfriend and we just argued about why we broke up stupid things like that "
},
{
"start_time": "278.5",
"stop_time": "279.88",
"speaker": "Ellie",
"value": "that sounds really hard "
},
{
"start_time": "280.68",
"stop_time": "282.5",
"speaker": "Participant",
"value": "eh i think i was kind of"
},
{
"start_time": "283.47",
"stop_time": "284.84",
"speaker": "Participant",
"value": "over it by then but "
},
{
"start_time": "285.66",
"stop_time": "287.28",
"speaker": "Participant",
"value": "it was at times "
},
{
"start_time": "288.68",
"stop_time": "289.17",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "291.91",
"stop_time": "292.57",
"speaker": "Participant",
"value": "<laughter> "
},
{
"start_time": "292",
"stop_time": "294.55",
"speaker": "Ellie",
"value": "when was the last time you felt really happy "
},
{
"start_time": "295.91",
"stop_time": "296.77",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "297.68",
"stop_time": "299.55",
"speaker": "Participant",
"value": "the last time i felt really happy "
},
{
"start_time": "300.85",
"stop_time": "301.88",
"speaker": "Participant",
"value": "was"
},
{
"start_time": "303.61",
"stop_time": "304.65",
"speaker": "Participant",
"value": "like really happy"
},
{
"start_time": "305.95",
"stop_time": "308.83",
"speaker": "Participant",
"value": "probably hanging out hanging out with friends the other night i had a good time"
},
{
"start_time": "309.53",
"stop_time": "310.54",
"speaker": "Ellie",
"value": "tell me more about that "
},
{
"start_time": "311.89",
"stop_time": "312.37",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "313.1",
"stop_time": "324.88",
"speaker": "Participant",
"value": "scrubbed_entry"
},
{
"start_time": "325.68",
"stop_time": "326.21",
"speaker": "Ellie",
"value": "aw"
},
{
"start_time": "326.63",
"stop_time": "328.26",
"speaker": "Ellie",
"value": "that sounds like a great situation "
},
{
"start_time": "328.39",
"stop_time": "329.46",
"speaker": "Participant",
"value": "it is it's nice"
},
{
"start_time": "330.69",
"stop_time": "331.1",
"speaker": "Participant",
"value": "it's nice"
},
{
"start_time": "330.93",
"stop_time": "332.49",
"speaker": "Ellie",
"value": "how would your best friend describe you "
},
{
"start_time": "334.08",
"stop_time": "343.06",
"speaker": "Participant",
"value": "my best friend would describe me as an open book she often makes fun of me for like just telling everyone everything um she would describe me as "
},
{
"start_time": "344.35",
"stop_time": "345.47",
"speaker": "Participant",
"value": "uh compassionate"
},
{
"start_time": "346.4",
"stop_time": "347.11",
"speaker": "Participant",
"value": "and"
},
{
"start_time": "347.72",
"stop_time": "350.68",
"speaker": "Participant",
"value": "uh having a a strong sense of who i am "
},
{
"start_time": "352.15",
"stop_time": "352.64",
"speaker": "Participant",
"value": "i think"
},
{
"start_time": "352.25",
"stop_time": "352.77",
"speaker": "Ellie",
"value": "that's good "
},
{
"start_time": "353.05",
"stop_time": "359.95",
"speaker": "Participant",
"value": "yeah she also she would describe me as not having like a good sense of social norms sometimes probably that's something that she "
},
{
"start_time": "360.53",
"stop_time": "360.97",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "361.25",
"stop_time": "371.31",
"speaker": "Participant",
"value": "makes fun of me for um because i do just like tell everyone everything and don't realize that i have like holes in my clothes and things like that but nothing"
},
{
"start_time": "371.95",
"stop_time": "373.49",
"speaker": "Participant",
"value": "nothing bad we have a very good relationship"
},
{
"start_time": "372.14",
"stop_time": "373.57",
"speaker": "Ellie",
"value": "has that gotten you in trouble "
},
{
"start_time": "373.98",
"stop_time": "374.26",
"speaker": "Participant",
"value": "hmm"
},
{
"start_time": "374.61",
"stop_time": "375.99",
"speaker": "Ellie",
"value": "has that gotten you in trouble "
},
{
"start_time": "376.36",
"stop_time": "381.75",
"speaker": "Participant",
"value": "yeah yeah it has <laughter> not terrible trouble but but yeah it's gotten me in trouble before sure "
},
{
"start_time": "383.55",
"stop_time": "383.95",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "384.71",
"stop_time": "386.28",
"speaker": "Ellie",
"value": "have you ever served in the military "
},
{
"start_time": "386.79",
"stop_time": "387.04",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "387.93",
"stop_time": "388.34",
"speaker": "Participant",
"value": "i haven't "
},
{
"start_time": "388.07",
"stop_time": "390.02",
"speaker": "Ellie",
"value": "have you ever been diagnosed with p_t_s_d"
},
{
"start_time": "390.96",
"stop_time": "392.31",
"speaker": "Participant",
"value": "no but i think i had it "
},
{
"start_time": "393.73",
"stop_time": "394.69",
"speaker": "Participant",
"value": "but i never went to a doctor "
},
{
"start_time": "394.03",
"stop_time": "394.38",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "395.34",
"stop_time": "400.57",
"speaker": "Participant",
"value": "um 'cause i had a i had a traumatic situation uh where somebody injured me"
},
{
"start_time": "401.29",
"stop_time": "402.7",
"speaker": "Participant",
"value": "and i"
},
{
"start_time": "403.72",
"stop_time": "413.86",
"speaker": "Participant",
"value": "i feel <fe> when i looked up p_t_s_d later i realized <reali> i felt like i had all of the symptoms of like going back into situations like that i would get panicky and um it was very "
},
{
"start_time": "414.34",
"stop_time": "417.85",
"speaker": "Participant",
"value": "uh i held on to it for a really really long time"
},
{
"start_time": "418.33",
"stop_time": "418.67",
"speaker": "Ellie",
"value": "uh huh "
},
{
"start_time": "418.6",
"stop_time": "419.97",
"speaker": "Participant",
"value": "i think um"
},
{
"start_time": "420.88",
"stop_time": "424.61",
"speaker": "Participant",
"value": "i think that i did have it but i just i don't know 'cause i never i never saw anyone about it "
},
{
"start_time": "425.1",
"stop_time": "425.89",
"speaker": "Ellie",
"value": "oh no"
},
{
"start_time": "425.96",
"stop_time": "426.71",
"speaker": "Ellie",
"value": "i'm sorry "
},
{
"start_time": "427.63",
"stop_time": "428.89",
"speaker": "Ellie",
"value": "are they triggered by something "
},
{
"start_time": "430.14",
"stop_time": "430.61",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "431.45",
"stop_time": "433.56",
"speaker": "Participant",
"value": "sometimes yeah uh"
},
{
"start_time": "434.41",
"stop_time": "439.33",
"speaker": "Participant",
"value": "certain physical things with that part of my body can be a trigger or um"
},
{
"start_time": "440.27",
"stop_time": "442.8",
"speaker": "Participant",
"value": "it happened in a in an acting class"
},
{
"start_time": "443.46",
"stop_time": "446.49",
"speaker": "Participant",
"value": "so sometimes certain teachers if they"
},
{
"start_time": "447.24",
"stop_time": "448.77",
"speaker": "Participant",
"value": "criticize in a certain way"
},
{
"start_time": "449.53",
"stop_time": "455.21",
"speaker": "Participant",
"value": "i start to i start to panic even if they're totally right and i know they're right and like it's something that"
},
{
"start_time": "455.85",
"stop_time": "460.82",
"speaker": "Participant",
"value": "someone else could tell me and i'd be fine with it eh sometimes it'll make me a little upset or panicky yeah "
},
{
"start_time": "461.19",
"stop_time": "461.64",
"speaker": "Ellie",
"value": "i see "
},
{
"start_time": "462.8",
"stop_time": "464.49",
"speaker": "Ellie",
"value": "have you been diagnosed with depression "
},
{
"start_time": "464.94",
"stop_time": "465.32",
"speaker": "Participant",
"value": "no"
},
{
"start_time": "466.73",
"stop_time": "468.1",
"speaker": "Ellie",
"value": "how have you been feeling lately "
},
{
"start_time": "469.37",
"stop_time": "472.81",
"speaker": "Participant",
"value": "well i mean my dad is sick so not great "
},
{
"start_time": "473.86",
"stop_time": "474.26",
"speaker": "Ellie",
"value": "yeah "
},
{
"start_time": "474.69",
"stop_time": "477.22",
"speaker": "Participant",
"value": "but um but considering not terrible "
},
{
"start_time": "478.6",
"stop_time": "479.14",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "479.82",
"stop_time": "482.92",
"speaker": "Ellie",
"value": "have you noticed any changes in your behavior or thoughts lately "
},
{
"start_time": "483.86",
"stop_time": "486.49",
"speaker": "Participant",
"value": "um i've been having bad dreams "
},
{
"start_time": "487.74",
"stop_time": "488.19",
"speaker": "Participant",
"value": "uh "
},
{
"start_time": "487.88",
"stop_time": "488.79",
"speaker": "Ellie",
"value": "tell me more about that "
},
{
"start_time": "489.82",
"stop_time": "492.83",
"speaker": "Participant",
"value": "uh just like stress dreams i think having to do with my dad "
},
{
"start_time": "493.91",
"stop_time": "494.31",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "494.13",
"stop_time": "494.51",
"speaker": "Ellie",
"value": "uh huh "
},
{
"start_time": "495.22",
"stop_time": "503.23",
"speaker": "Participant",
"value": "like getting kidnapped or my teeth falling out things that if you looked them up always say like there's something out of your control which is like exactly what it is so "
},
{
"start_time": "503.73",
"stop_time": "504.59",
"speaker": "Ellie",
"value": "that sucks "
},
{
"start_time": "504.84",
"stop_time": "507.24",
"speaker": "Participant",
"value": "it's not the best but it's just dreams at least so "
},
{
"start_time": "507.69",
"stop_time": "508.9",
"speaker": "Ellie",
"value": "do you feel that way often "
},
{
"start_time": "510.19",
"stop_time": "510.91",
"speaker": "Participant",
"value": "which way "
},
{
"start_time": "513.76",
"stop_time": "515.33",
"speaker": "Ellie",
"value": "let's come back to that later "
},
{
"start_time": "515.46",
"stop_time": "515.89",
"speaker": "Participant",
"value": "okay "
},
{
"start_time": "517.38",
"stop_time": "519.76",
"speaker": "Ellie",
"value": "how easy is it for you to get a good night's sleep "
},
{
"start_time": "520.36",
"stop_time": "521.59",
"speaker": "Participant",
"value": "easy very easy "
},
{
"start_time": "522.47",
"stop_time": "524.05",
"speaker": "Ellie",
"value": "what are you like when you don't sleep well "
},
{
"start_time": "524.7",
"stop_time": "530.38",
"speaker": "Participant",
"value": "i am tired and maybe somewhat irritable goofy i get really goofy"
},
{
"start_time": "530.58",
"stop_time": "531.31",
"speaker": "Ellie",
"value": "<laughter> "
},
{
"start_time": "531.78",
"stop_time": "532.12",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "533.08",
"stop_time": "533.56",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "536.45",
"stop_time": "538.79",
"speaker": "Ellie",
"value": "what would you say are some of your best qualities "
},
{
"start_time": "539.84",
"stop_time": "540.4",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "541.5",
"stop_time": "542.33",
"speaker": "Participant",
"value": "i"
},
{
"start_time": "543.61",
"stop_time": "544.93",
"speaker": "Participant",
"value": "am fairly non-judgmental "
},
{
"start_time": "545.88",
"stop_time": "548.18",
"speaker": "Participant",
"value": "of other people i i i stay open-minded"
},
{
"start_time": "549.01",
"stop_time": "551.07",
"speaker": "Participant",
"value": "uh i can make most people laugh i'm funny"
},
{
"start_time": "551.98",
"stop_time": "552.98",
"speaker": "Participant",
"value": "uh creative "
},
{
"start_time": "554.34",
"stop_time": "555.16",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "556.66",
"stop_time": "557.73",
"speaker": "Participant",
"value": "i"
},
{
"start_time": "559.01",
"stop_time": "560.97",
"speaker": "Participant",
"value": "yeah those are some of the best ones i'd say "
},
{
"start_time": "561.37",
"stop_time": "561.81",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "562.62",
"stop_time": "563.57",
"speaker": "Ellie",
"value": "do you travel a lot"
},
{
"start_time": "564.2",
"stop_time": "564.55",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "565.94",
"stop_time": "567.49",
"speaker": "Ellie",
"value": "what do you enjoy about traveling "
},
{
"start_time": "568.3",
"stop_time": "581.86",
"speaker": "Participant",
"value": "i love meeting new people and seeing new things and learning uh and just getting out of the routine i like staying in hotels uh i like most things about traveling i even i even like flying i like all of it"
},
{
"start_time": "583.13",
"stop_time": "584.7",
"speaker": "Ellie",
"value": "i'd love to hear about one of your trips "
},
{
"start_time": "586.17",
"stop_time": "597.89",
"speaker": "Participant",
"value": "well i just finished a tour a couple months ago um going up and down the east coast and then across the u_s and uh performing for kids all over "
},
{
"start_time": "597.94",
"stop_time": "598.29",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "598.61",
"stop_time": "600.45",
"speaker": "Participant",
"value": "yeah and then we ended here in l_a "
},
{
"start_time": "601.13",
"stop_time": "602.16",
"speaker": "Ellie",
"value": "are you happy you did that "
},
{
"start_time": "602.51",
"stop_time": "604.23",
"speaker": "Participant",
"value": "yeah yeah it was great it was a good time "
},
{
"start_time": "605.08",
"stop_time": "605.68",
"speaker": "Ellie",
"value": "awesome"
},
{
"start_time": "605.98",
"stop_time": "606.24",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "607.36",
"stop_time": "609.52",
"speaker": "Ellie",
"value": "what's one of your most memorable experiences "
},
{
"start_time": "610.8",
"stop_time": "611.58",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "612.96",
"stop_time": "614.11",
"speaker": "Participant",
"value": "lemmi think we "
},
{
"start_time": "615.38",
"stop_time": "616.8",
"speaker": "Participant",
"value": "we went to "
},
{
"start_time": "617.89",
"stop_time": "623.17",
"speaker": "Participant",
"value": "the hot springs the naturally occuring hot springs in colorado and that was really nice that was a nice way to unwind"
},
{
"start_time": "625.04",
"stop_time": "625.61",
"speaker": "Ellie",
"value": "that's good "
},
{
"start_time": "626.08",
"stop_time": "626.3",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "630.4",
"stop_time": "632.72",
"speaker": "Ellie",
"value": "who's someone that's been a positive influence in your life "
},
{
"start_time": "633.69",
"stop_time": "636.01",
"speaker": "Participant",
"value": "a lot of people i i would say"
},
{
"start_time": "636.84",
"stop_time": "639.36",
"speaker": "Participant",
"value": "um i mean my dad comes to mind certainly"
},
{
"start_time": "640.38",
"stop_time": "644.62",
"speaker": "Participant",
"value": "uh my godmother is a huge positive influence in my life as well "
},
{
"start_time": "645.75",
"stop_time": "654.82",
"speaker": "Participant",
"value": "uh my best friend my best friend from high school i think i uh some <so> a few of my best friends from high school um and college that i've kinda grown up with and"
},
{
"start_time": "655.72",
"stop_time": "657.99",
"speaker": "Participant",
"value": "become who i am with them"
},
{
"start_time": "658.85",
"stop_time": "659.26",
"speaker": "Ellie",
"value": "uh huh "
},
{
"start_time": "659.67",
"stop_time": "659.91",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "659.95",
"stop_time": "660.68",
"speaker": "Ellie",
"value": "that's great "
},
{
"start_time": "661.23",
"stop_time": "661.54",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "663.17",
"stop_time": "664.15",
"speaker": "Ellie",
"value": "is there anything you regret "
},
{
"start_time": "665.92",
"stop_time": "668.03",
"speaker": "Participant",
"value": "uh small things sure "
},
{
"start_time": "668.95",
"stop_time": "670.18",
"speaker": "Ellie",
"value": "can you give me an example of that "
},
{
"start_time": "669.47",
"stop_time": "669.88",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "670.92",
"stop_time": "671.44",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "672.5",
"stop_time": "673.48",
"speaker": "Participant",
"value": "i regret "
},
{
"start_time": "674.84",
"stop_time": "676.62",
"speaker": "Participant",
"value": "the way that i dealt with"
},
{
"start_time": "678.93",
"stop_time": "682.1",
"speaker": "Participant",
"value": "a friendship that was ending once uh i regret "
},
{
"start_time": "683.1",
"stop_time": "685.48",
"speaker": "Participant",
"value": "committing to certain people that i've dated "
},
{
"start_time": "687.16",
"stop_time": "687.76",
"speaker": "Participant",
"value": "uh "
},
{
"start_time": "688.72",
"stop_time": "694.8",
"speaker": "Participant",
"value": "but nothing huge i i tend to go well i won't do that again but i don't spend a lot of time"
},
{
"start_time": "695.9",
"stop_time": "697.97",
"speaker": "Participant",
"value": "like being upset about things i've done in the past "
},
{
"start_time": "698.49",
"stop_time": "698.93",
"speaker": "Ellie",
"value": "okay "
},
{
"start_time": "699.78",
"stop_time": "702.6",
"speaker": "Ellie",
"value": "what advice would you give yourself ten or twenty years ago "
},
{
"start_time": "704.06",
"stop_time": "704.87",
"speaker": "Participant",
"value": "hmm"
},
{
"start_time": "707.01",
"stop_time": "708.29",
"speaker": "Participant",
"value": "stand up for yourself "
},
{
"start_time": "710.46",
"stop_time": "710.99",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "710.73",
"stop_time": "711.69",
"speaker": "Ellie",
"value": "tell me more about that "
},
{
"start_time": "713.15",
"stop_time": "716.75",
"speaker": "Participant",
"value": "<laughter> don't date felons <laughter> uh"
},
{
"start_time": "713.78",
"stop_time": "714.69",
"speaker": "Ellie",
"value": "tell me more about that "
},
{
"start_time": "717.85",
"stop_time": "718.85",
"speaker": "Participant",
"value": "i think that i"
},
{
"start_time": "720.11",
"stop_time": "725.57",
"speaker": "Participant",
"value": "i don't have any trouble standing up for things that i believe in but sometimes i have trouble standing up for myself"
},
{
"start_time": "726.22",
"stop_time": "730.11",
"speaker": "Participant",
"value": "i think i i really internalize the idea of like"
},
{
"start_time": "731.07",
"stop_time": "735.05",
"speaker": "Participant",
"value": "you know women being too needy or uh or um"
},
{
"start_time": "735.96",
"stop_time": "748.9",
"speaker": "Participant",
"value": "i don't know those kinds of things and then xxx and so as as an adolescent and growing up i felt like well you then you just shouldn't need anything or you're needy and it took me a while to be able to like voice what i want what i needed from other people and be okay with that"
},
{
"start_time": "742.85",
"stop_time": "743.88",
"speaker": "Ellie",
"value": "uh huh uh huh "
},
{
"start_time": "749.54",
"stop_time": "750.48",
"speaker": "Participant",
"value": "and it's still something i work on "
},
{
"start_time": "752.06",
"stop_time": "752.93",
"speaker": "Ellie",
"value": "that makes sense"
},
{
"start_time": "753.8",
"stop_time": "754.65",
"speaker": "Ellie",
"value": "that makes sense"
},
{
"start_time": "755.16",
"stop_time": "756.03",
"speaker": "Ellie",
"value": "that makes sense "
},
{
"start_time": "756.27",
"stop_time": "757.77",
"speaker": "Participant",
"value": "<laughter> i'm glad you think so "
},
{
"start_time": "758.18",
"stop_time": "759.06",
"speaker": "Ellie",
"value": "that makes sense"
},
{
"start_time": "759.58",
"stop_time": "760.01",
"speaker": "Ellie",
"value": "what are you"
},
{
"start_time": "760.39",
"stop_time": "761.24",
"speaker": "Ellie",
"value": "that makes sense"
},
{
"start_time": "761.55",
"stop_time": "763.36",
"speaker": "Ellie",
"value": "what are you most proud of in your life "
},
{
"start_time": "765.37",
"stop_time": "765.84",
"speaker": "Participant",
"value": "um "
},
{
"start_time": "766.53",
"stop_time": "767.16",
"speaker": "Participant",
"value": "<sigh>"
},
{
"start_time": "769.62",
"stop_time": "771.17",
"speaker": "Participant",
"value": "that's a good question uh "
},
{
"start_time": "772.91",
"stop_time": "774.11",
"speaker": "Participant",
"value": "my friends and family "
},
{
"start_time": "775.9",
"stop_time": "776.88",
"speaker": "Participant",
"value": "and uh "
},
{
"start_time": "778.9",
"stop_time": "779.93",
"speaker": "Participant",
"value": "i my talents"
},
{
"start_time": "780.82",
"stop_time": "781.44",
"speaker": "Participant",
"value": "i would say "
},
{
"start_time": "782.92",
"stop_time": "783.26",
"speaker": "Participant",
"value": "yeah "
},
{
"start_time": "783.03",
"stop_time": "783.81",
"speaker": "Ellie",
"value": "that's great "
},
{
"start_time": "784.69",
"stop_time": "787.33",
"speaker": "Participant",
"value": "yeah my ability to take situations and "
},
{
"start_time": "788.34",
"stop_time": "790.73",
"speaker": "Participant",
"value": "take bad situations and continue and"
},
{
"start_time": "791.61",
"stop_time": "793.02",
"speaker": "Participant",
"value": "uh make the best of everything "
},
{
"start_time": "793.59",
"stop_time": "794.01",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "795.48",
"stop_time": "797.74",
"speaker": "Ellie",
"value": "okay i think i've asked everything i need to"
},
{
"start_time": "798.54",
"stop_time": "799.97",
"speaker": "Ellie",
"value": "thanks for sharing your thoughts with me "
},
{
"start_time": "799.8",
"stop_time": "800.2",
"speaker": "Participant",
"value": "alright "
},
{
"start_time": "801.15",
"stop_time": "802.54",
"speaker": "Ellie",
"value": "thanks for sharing your thoughts with me "
},
{
"start_time": "803.08",
"stop_time": "804.32",
"speaker": "Participant",
"value": "<laughter> thank you "
},
{
"start_time": "804.84",
"stop_time": "806.2",
"speaker": "Ellie",
"value": "goodbye goodbye "
},
{
"start_time": "806.42",
"stop_time": "809.19",
"speaker": "Participant",
"value": "goodbye goodbye <laughter> "
}
] |