File size: 52,646 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 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 | [
{
"start_time": "32.283",
"stop_time": "44.021",
"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 think of me as a friend i don't judge i can't i'm a computer "
},
{
"start_time": "44.68",
"stop_time": "54.475",
"speaker": "Ellie",
"value": "i'm here to learn about people and would love to learn about you i'll ask a few questions to get us started and please feel free to tell me anything your answers are totally confidential "
},
{
"start_time": "54.58",
"stop_time": "55.39",
"speaker": "Participant",
"value": "<laughter>"
},
{
"start_time": "55.15",
"stop_time": "56.74",
"speaker": "Ellie",
"value": "where are you from originally"
},
{
"start_time": "57.67",
"stop_time": "59.52",
"speaker": "Participant",
"value": "um moscow"
},
{
"start_time": "60.173",
"stop_time": "60.883",
"speaker": "Ellie",
"value": "really"
},
{
"start_time": "61.676",
"stop_time": "62.966",
"speaker": "Ellie",
"value": "why'd you move to l_a"
},
{
"start_time": "63.338",
"stop_time": "68.238",
"speaker": "Participant",
"value": "um my family moved to the u_s and then i moved down here eventually for college"
},
{
"start_time": "69.633",
"stop_time": "72.213",
"speaker": "Ellie",
"value": "how easy was it for you to get used to living in l_a"
},
{
"start_time": "72.824",
"stop_time": "84.926",
"speaker": "Participant",
"value": " uh it took a long time to i've been living here for about a year since i graduated so there's been a lot of ups and downs but finally gotten adjusted to it so it took a while though"
},
{
"start_time": "85.61",
"stop_time": "86.55",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "88.226",
"stop_time": "90.086",
"speaker": "Ellie",
"value": "how do you like your living situation"
},
{
"start_time": "90.657",
"stop_time": "97.477",
"speaker": "Participant",
"value": "it goes off and on i have two roommates and there's always a little bit of drama here and there between"
},
{
"start_time": "97.188",
"stop_time": "97.918",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "97.891",
"stop_time": "108.426",
"speaker": "Participant",
"value": "the girls but for the most part after a year and a couple months i think we finally learned how to live together but it was pretty much like a reality t_v show for a while"
},
{
"start_time": "108.815",
"stop_time": "109.515",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "110.016",
"stop_time": "111.006",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "111.371",
"stop_time": "115.201",
"speaker": "Participant",
"value": "one's from college and the other one we found on craigslist"
},
{
"start_time": "115.833",
"stop_time": "117.183",
"speaker": "Ellie",
"value": "how close are you to them"
},
{
"start_time": "117.952",
"stop_time": "123.155",
"speaker": "Participant",
"value": "it varies depending on whether or not we're mad at each other so um"
},
{
"start_time": "123.627",
"stop_time": "125.017",
"speaker": "Participant",
"value": "i guess pretty close"
},
{
"start_time": "126.186",
"stop_time": "127.656",
"speaker": "Participant",
"value": "right now we're kinda distant"
},
{
"start_time": "130.174",
"stop_time": "130.904",
"speaker": "Ellie",
"value": "aww"
},
{
"start_time": "132.599",
"stop_time": "134.049",
"speaker": "Ellie",
"value": "tell me more about that"
},
{
"start_time": "134.399",
"stop_time": "135.749",
"speaker": "Participant",
"value": "oh about the distant"
},
{
"start_time": "136.818",
"stop_time": "137.428",
"speaker": "Ellie",
"value": "yes"
},
{
"start_time": "137.445",
"stop_time": "142.616",
"speaker": "Participant",
"value": "okay um well we haven't seen each other we haven't hung out in like two weeks"
},
{
"start_time": "142.835",
"stop_time": "151.071",
"speaker": "Participant",
"value": "'cause one of them got into like this car accident and um so she's been distant since then and kinda locks herself up in her room"
},
{
"start_time": "145.756",
"stop_time": "146.616",
"speaker": "Ellie",
"value": "uh oh"
},
{
"start_time": "152.241",
"stop_time": "164.165",
"speaker": "Participant",
"value": "and the other one is always working late so we just our our scheduling has been off and no one's really made an attempt to hang out with anyone so it's kind of"
},
{
"start_time": "164.426",
"stop_time": "167.775",
"speaker": "Participant",
"value": "we're just waiting for someone i guess to make the first move "
},
{
"start_time": "168.49",
"stop_time": "170.51",
"speaker": "Ellie",
"value": "yeah that sucks"
},
{
"start_time": "170.801",
"stop_time": "173.121",
"speaker": "Participant",
"value": "it's okay it'll get better"
},
{
"start_time": "174.651",
"stop_time": "175.331",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "177.242",
"stop_time": "179.302",
"speaker": "Ellie",
"value": "how are you at controlling your temper"
},
{
"start_time": "181.018",
"stop_time": "183.23",
"speaker": "Participant",
"value": "it depends with whom "
},
{
"start_time": "184.24",
"stop_time": "185.11",
"speaker": "Participant",
"value": "i'm"
},
{
"start_time": "185.894",
"stop_time": "192.634",
"speaker": "Participant",
"value": "dealing with i guess i would say with some people i guess with my family not very good my boyfriend it's not very good"
},
{
"start_time": "193.343",
"stop_time": "203.775",
"speaker": "Participant",
"value": "but with other people that i might not know so well then i'm able to control it a little bit more but it'll be more passive aggressive than like full on anger"
},
{
"start_time": "204.179",
"stop_time": "204.949",
"speaker": "Ellie",
"value": "why"
},
{
"start_time": "205.499",
"stop_time": "209.078",
"speaker": "Participant",
"value": "oh 'cause i don't want them to see me as a bitch [laughter]"
},
{
"start_time": "209.081",
"stop_time": "210.231",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "210.509",
"stop_time": "211.609",
"speaker": "Ellie",
"value": "that makes sense"
},
{
"start_time": "211.837",
"stop_time": "212.857",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "213.509",
"stop_time": "215.939",
"speaker": "Ellie",
"value": "who's someone that's been a positive influence in your life"
},
{
"start_time": "216.436",
"stop_time": "218.916",
"speaker": "Participant",
"value": "uh probably my best friend nicole"
},
{
"start_time": "219.985",
"stop_time": "223.772",
"speaker": "Participant",
"value": "she's probably been we've been best friends for like"
},
{
"start_time": "224.405",
"stop_time": "229.652",
"speaker": "Participant",
"value": "god since high school freshman year of high school is when we first met so long time so yeah"
},
{
"start_time": "226.748",
"stop_time": "227.438",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "231.379",
"stop_time": "232.119",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "231.7",
"stop_time": "233.16",
"speaker": "Ellie",
"value": "can you give me an example of that"
},
{
"start_time": "234.03",
"stop_time": "234.68",
"speaker": "Participant",
"value": "of"
},
{
"start_time": "235.15",
"stop_time": "236.809",
"speaker": "Participant",
"value": "of what "
},
{
"start_time": "238.169",
"stop_time": "239.449",
"speaker": "Ellie",
"value": "how do you know them"
},
{
"start_time": "239.931",
"stop_time": "241.521",
"speaker": "Participant",
"value": "uh my friend nicole"
},
{
"start_time": "242.299",
"stop_time": "243.179",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "243.179",
"stop_time": "246.609",
"speaker": "Participant",
"value": "um we met in french class freshman year of high school"
},
{
"start_time": "246.945",
"stop_time": "261.124",
"speaker": "Participant",
"value": "we were in the same class and then we kinda started doing homework together and we had a lot of class the same classes together and so we just kinda started hanging out and then we just became closer and have stayed really close since then"
},
{
"start_time": "261.318",
"stop_time": "262.139",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "262.139",
"stop_time": "263.089",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "263.88",
"stop_time": "265.87",
"speaker": "Ellie",
"value": "what are some things you like to do for fun"
},
{
"start_time": "267.424",
"stop_time": "268.114",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "268.978",
"stop_time": "274.079",
"speaker": "Participant",
"value": "uh going out with friends going to bars going dancing biking hiking"
},
{
"start_time": "274.744",
"stop_time": "281.82",
"speaker": "Participant",
"value": "staying active um going to the movies going out to eat at restaurants uh photography"
},
{
"start_time": "282.489",
"stop_time": "283.119",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "284.174",
"stop_time": "286.464",
"speaker": "Participant",
"value": "just hanging out with friends i guess"
},
{
"start_time": "286.813",
"stop_time": "287.543",
"speaker": "Participant",
"value": "whatever"
},
{
"start_time": "287.279",
"stop_time": "288.059",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "289.258",
"stop_time": "291.318",
"speaker": "Ellie",
"value": "how close are you to your family"
},
{
"start_time": "291.916",
"stop_time": "292.586",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "292.906",
"stop_time": "298.526",
"speaker": "Participant",
"value": "it varies like i'm really close to them when it comes to things about like school work um"
},
{
"start_time": "298.917",
"stop_time": "299.867",
"speaker": "Participant",
"value": "those kinds of"
},
{
"start_time": "300.447",
"stop_time": "307.047",
"speaker": "Participant",
"value": "things but when it comes to relationships and friendships and more personal personal things"
},
{
"start_time": "307.213",
"stop_time": "309.083",
"speaker": "Participant",
"value": " i don't really discuss that with them"
},
{
"start_time": "309.631",
"stop_time": "310.181",
"speaker": "Ellie",
"value": "mm"
},
{
"start_time": "310.279",
"stop_time": "311.889",
"speaker": "Participant",
"value": "so i guess superficially close"
},
{
"start_time": "312.848",
"stop_time": "313.538",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "312.858",
"stop_time": "315.858",
"speaker": "Participant",
"value": "but i rely on them a lot so we're close i guess"
},
{
"start_time": "316.067",
"stop_time": "317.097",
"speaker": "Ellie",
"value": "that's good"
},
{
"start_time": "317.172",
"stop_time": "317.982",
"speaker": "Participant",
"value": "mhm"
},
{
"start_time": "318.958",
"stop_time": "321.208",
"speaker": "Ellie",
"value": "what are some things that make you really mad"
},
{
"start_time": "324.024",
"stop_time": "332.332",
"speaker": "Participant",
"value": "uh that's a good question um i guess it depends who it is again"
},
{
"start_time": "332.821",
"stop_time": "339.533",
"speaker": "Participant",
"value": "i guess people who are inconsiderate unthoughtful flakey ignorant"
},
{
"start_time": "340.253",
"stop_time": "341.703",
"speaker": "Participant",
"value": "and"
},
{
"start_time": "343.231",
"stop_time": "344.711",
"speaker": "Participant",
"value": "uh"
},
{
"start_time": "345.366",
"stop_time": "351.154",
"speaker": "Participant",
"value": "conceited [cons] uh yeah i guess those kinds of people and when people just um"
},
{
"start_time": "351.681",
"stop_time": "356.539",
"speaker": "Participant",
"value": "what makes me mad that's a good question i guess a lot of things make me mad [laughter]"
},
{
"start_time": "356.738",
"stop_time": "363.558",
"speaker": "Participant",
"value": "but it's mostly how people react to um different situations can make me angry i guess"
},
{
"start_time": "363.76",
"stop_time": "364.69",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "366.72",
"stop_time": "369.93",
"speaker": "Ellie",
"value": " when was the last time you argued with someone and what was it about"
},
{
"start_time": "370.68",
"stop_time": "372.82",
"speaker": "Participant",
"value": "uh yesterday"
},
{
"start_time": "373.3",
"stop_time": "380.79",
"speaker": "Participant",
"value": "and it was my boyfriend and we argued because he's trying to be healthy and workout and save money "
},
{
"start_time": "381.08",
"stop_time": "382.77",
"speaker": "Participant",
"value": "and so and"
},
{
"start_time": "383.22",
"stop_time": "389.81",
"speaker": "Participant",
"value": "so by doing that what he does is he orders pizza in so he's not saving money and he's not being healthy"
},
{
"start_time": "390.06",
"stop_time": "401.69",
"speaker": "Participant",
"value": "and so i got frustrated with him 'cause i'm constantly trying to push him to be healthy and each time he's like i'm gonna do it i'm gonna do it so he's constantly breaking promises that's another thing that makes me angry is people that don't follow through"
},
{
"start_time": "390.24",
"stop_time": "391.63",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "402.14",
"stop_time": "402.94",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "403.82",
"stop_time": "405.1",
"speaker": "Ellie",
"value": "do you feel that way often"
},
{
"start_time": "406.385",
"stop_time": "409.485",
"speaker": "Participant",
"value": "about other people or about myself or angry"
},
{
"start_time": "410.559",
"stop_time": "411.879",
"speaker": "Ellie",
"value": "whatever comes to your mind"
},
{
"start_time": "412.361",
"stop_time": "415.381",
"speaker": "Participant",
"value": "xxxx [laughter]"
},
{
"start_time": "415.731",
"stop_time": "418.801",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "419.745",
"stop_time": "423",
"speaker": "Participant",
"value": "angry i guess i'll go with that no i don't feel angry often"
},
{
"start_time": "424.4",
"stop_time": "425.4",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "426.769",
"stop_time": "428.059",
"speaker": "Ellie",
"value": "what's your dream job"
},
{
"start_time": "428.864",
"stop_time": "429.924",
"speaker": "Participant",
"value": "dang it"
},
{
"start_time": "431.129",
"stop_time": "434.859",
"speaker": "Participant",
"value": "that is a tough one how 'bout just getting paid to be me"
},
{
"start_time": "435.795",
"stop_time": "446.82",
"speaker": "Participant",
"value": "um i don't know that what i'm kind of trying to figure out right now 'cause i quit my full time job 'cause i hated it it was just mostly sitting in an office all day which i thought was extremely boring"
},
{
"start_time": "447.172",
"stop_time": "452.576",
"speaker": "Participant",
"value": "so now i work in a restaurant job and i'm trying to look for a second job to support myself um"
},
{
"start_time": "453.177",
"stop_time": "454.698",
"speaker": "Participant",
"value": " my dream job"
},
{
"start_time": "455.9",
"stop_time": "464.492",
"speaker": "Participant",
"value": "i don't know what it would be but i know it would involve people and i'd love to have some kind of like finished product or some kind of accomplishment towards the end"
},
{
"start_time": "464.638",
"stop_time": "466.518",
"speaker": "Participant",
"value": "i guess it's something that i realized"
},
{
"start_time": "466.847",
"stop_time": "468.307",
"speaker": "Participant",
"value": "i like to see"
},
{
"start_time": "469.442",
"stop_time": "491.958",
"speaker": "Participant",
"value": "the result from all my hard work 'cause i majored in sociology and as much as i loved that major is you realize it's a whole lot of theorizing and arguing but with no real solution so it's just like at the end all you have is just these theoretical elements that you can't really do anything with and nothing to show for your work except for a piece of paper with your essays or notes so"
},
{
"start_time": "480.566",
"stop_time": "481.076",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "490.656",
"stop_time": "491.166",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "492.49",
"stop_time": "496.03",
"speaker": "Participant",
"value": "something to do with people and maybe something artistic i love photography"
},
{
"start_time": "496.3",
"stop_time": "500.425",
"speaker": "Participant",
"value": "i love cooking baking in particularly so i don't know something"
},
{
"start_time": "501.867",
"stop_time": "502.647",
"speaker": "Participant",
"value": "in that"
},
{
"start_time": "504.101",
"stop_time": "505.271",
"speaker": "Participant",
"value": "realm i guess"
},
{
"start_time": "505.867",
"stop_time": "506.557",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "507.55",
"stop_time": "508.85",
"speaker": "Ellie",
"value": "do you travel a lot"
},
{
"start_time": "508.991",
"stop_time": "514.4",
"speaker": "Participant",
"value": "i used to travel a lot my family is known for traveling we've gone to"
},
{
"start_time": "515.276",
"stop_time": "520.246",
"speaker": "Participant",
"value": "gosh seven eight different countries i've lived in three or four different countries"
},
{
"start_time": "520.587",
"stop_time": "521.077",
"speaker": "Ellie",
"value": "wow"
},
{
"start_time": "521.057",
"stop_time": "528.954",
"speaker": "Participant",
"value": "i haven't traveled a lot lately just because i have no money and jobs kinda tie you down but i would love to have that"
},
{
"start_time": "529.122",
"stop_time": "534.32",
"speaker": "Participant",
"value": "i guess my dream job would be a photographer that for national geographic that would be awesome"
},
{
"start_time": "534.584",
"stop_time": "535.144",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "535.175",
"stop_time": "542.424",
"speaker": "Participant",
"value": "um or a huge photographer that travels that'd be awesome too but anyways um yeah i do travel a lot"
},
{
"start_time": "543.19",
"stop_time": "544.8",
"speaker": "Ellie",
"value": "what do you enjoy about traveling"
},
{
"start_time": "545.626",
"stop_time": "552.823",
"speaker": "Participant",
"value": "in the new places new faces new experiences i get restless very easily so it's nice to constantly be on the move and"
},
{
"start_time": "553.62",
"stop_time": "564.223",
"speaker": "Participant",
"value": "see different things and see different cultures and types of people and just not get stuck in the same routine i hate the routine and mundaneness of everyday life so it's nice to"
},
{
"start_time": "565.23",
"stop_time": "566.55",
"speaker": "Participant",
"value": "stir things up"
},
{
"start_time": "567.135",
"stop_time": "568.335",
"speaker": "Ellie",
"value": "i see what you mean"
},
{
"start_time": "569.414",
"stop_time": "571.234",
"speaker": "Ellie",
"value": "i'd love to hear about one of your trips"
},
{
"start_time": "572.729",
"stop_time": "576.733",
"speaker": "Participant",
"value": "oh gosh okay um"
},
{
"start_time": "577.353",
"stop_time": "578.623",
"speaker": "Participant",
"value": "i'm trying to think"
},
{
"start_time": "579.267",
"stop_time": "580.507",
"speaker": "Participant",
"value": "one of my trips"
},
{
"start_time": "584.346",
"stop_time": "592.316",
"speaker": "Participant",
"value": "i guess we can talk about i don't know it's funny even though i've been to lots of different countries one of my most memorable memorable trips is"
},
{
"start_time": "592.552",
"stop_time": "601.059",
"speaker": "Participant",
"value": "one of the trips that i took with my family i was a three week roadtrip with my family there's five of us packed in a tiny little station wagon"
},
{
"start_time": "600.517",
"stop_time": "601.487",
"speaker": "Ellie",
"value": "oh my gosh"
},
{
"start_time": "601.477",
"stop_time": "612.473",
"speaker": "Participant",
"value": "i know needless to say it's like when you're that close proximity for three weeks camping you start getting on each others' nerves but it was really fun and like even though i've traveled so many places"
},
{
"start_time": "612.755",
"stop_time": "625.621",
"speaker": "Participant",
"value": "i realized that there's like such a beauty in the american landscape and so we were all around the southwest and the grand canyon to zion to the grand tetons to yellowstone and it was absolutely amazing just seeing all that natural beauty so"
},
{
"start_time": "626.059",
"stop_time": "626.699",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "627.139",
"stop_time": "637.448",
"speaker": "Participant",
"value": "and we saw a grizzly bear black bear lots of bison a wolf and it was really cool those kinds of i don't know natural wonders also really amaze me 'cause those things aren't man made"
},
{
"start_time": "637.791",
"stop_time": "645.129",
"speaker": "Participant",
"value": "and as as pretentious as it sounds after a while europe kinda gets not old but it's like you know you get the same idea like"
},
{
"start_time": "645.913",
"stop_time": "654.185",
"speaker": "Participant",
"value": "white old white men building great buildings and art work and it's beautiful and all but like you just kind of like okay i wanna see something that's natural and beautiful"
},
{
"start_time": "654.34",
"stop_time": "655.94",
"speaker": "Participant",
"value": "or something that's different too"
},
{
"start_time": "656.232",
"stop_time": "657.122",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "657.246",
"stop_time": "658.206",
"speaker": "Ellie",
"value": "i see what you mean"
},
{
"start_time": "661.116",
"stop_time": "661.896",
"speaker": "Participant",
"value": "cool"
},
{
"start_time": "661.903",
"stop_time": "664.033",
"speaker": "Ellie",
"value": "how easy is it for you to get a good night's sleep"
},
{
"start_time": "665.498",
"stop_time": "666.538",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "668.048",
"stop_time": "670.124",
"speaker": "Participant",
"value": "pretty easy as long as I"
},
{
"start_time": "672.057",
"stop_time": "674.689",
"speaker": "Participant",
"value": "get well no i always sleep so easy"
},
{
"start_time": "675.566",
"stop_time": "677.486",
"speaker": "Ellie",
"value": "what are you like when you don't sleep well"
},
{
"start_time": "678.375",
"stop_time": "688.813",
"speaker": "Participant",
"value": "oh grumpy and just very lethargic and just low energy don't say much and just kinda off in my own world"
},
{
"start_time": "689.66",
"stop_time": "691.21",
"speaker": "Ellie",
"value": "do you feel that way often"
},
{
"start_time": "691.875",
"stop_time": "698.066",
"speaker": "Participant",
"value": "i not not anymore i usually get enough sleep and i've been working out more so it's kind of "
},
{
"start_time": "698.424",
"stop_time": "701.344",
"speaker": "Participant",
"value": "energizing me so no it's not too bad"
},
{
"start_time": "701.79",
"stop_time": "702.7",
"speaker": "Participant",
"value": "that's good"
},
{
"start_time": "703.555",
"stop_time": "706.965",
"speaker": "Ellie",
"value": "have you noticed any changes in your behavior or thoughts lately"
},
{
"start_time": "709.758",
"stop_time": "722.85",
"speaker": "Participant",
"value": "uh i guess i've just been more negative but it has to do with like circumstances kind of like uh it's been about five months since i quit my full time job haven't found anything else haven't really found anything else i'm interested in"
},
{
"start_time": "723.416",
"stop_time": "724.266",
"speaker": "Participant",
"value": "so"
},
{
"start_time": "725.739",
"stop_time": "730.384",
"speaker": "Participant",
"value": "it's more of just like ugh what am i doing da da da that kind of thing"
},
{
"start_time": "730.375",
"stop_time": "730.985",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "731.474",
"stop_time": "733.744",
"speaker": "Ellie",
"value": "it can be tough to find a good job these days"
},
{
"start_time": "733.861",
"stop_time": "749.684",
"speaker": "Participant",
"value": "yeah it's it is hard the market and just like i'm very picky 'cause i don't wanna just sittin in a little my own cubicle 'cause i quit my job exactly for that reason so why go back to another job just do the same exact thing that i quit my other job for"
},
{
"start_time": "743.769",
"stop_time": "744.359",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "749.98",
"stop_time": "761.131",
"speaker": "Participant",
"value": "so it's just like i have to make it worthwhile that i quit my last job to get a better job so it's just kinda like i'm stuck in this section of just like living paycheck to paycheck"
},
{
"start_time": "761.508",
"stop_time": "766.426",
"speaker": "Participant",
"value": "barely making it and just waiting for the right opportunity to come across but it's like"
},
{
"start_time": "767.282",
"stop_time": "774.782",
"speaker": "Participant",
"value": "when do i give up and sell my soul and go back to the corporate world of sitting in little cubicles i don't know"
},
{
"start_time": "774.85",
"stop_time": "776.41",
"speaker": "Ellie",
"value": "that sounds really hard"
},
{
"start_time": "776.759",
"stop_time": "782.55",
"speaker": "Participant",
"value": "yeah it is hard but i mean i guess everyone goes through that same situation after college so"
},
{
"start_time": "782.906",
"stop_time": "800.323",
"speaker": "Participant",
"value": "but i guess it's tough 'cause a lot of my friends 'cause i went to a pretty good school and you know i have a friend who's teaching english in afghanistan and i have another one who's met the president you know and one that's doing teach for america another friend who's in harvard uh school for like harvard masters [mass] you know getting her masters so it's kind of like ahh"
},
{
"start_time": "801.222",
"stop_time": "805.167",
"speaker": "Participant",
"value": "all that comparison and then here i am working a little restaurant job so"
},
{
"start_time": "806.5",
"stop_time": "807.03",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "808.36",
"stop_time": "809.49",
"speaker": "Ellie",
"value": "do you feel down"
},
{
"start_time": "810.629",
"stop_time": "817.036",
"speaker": "Participant",
"value": "uh i do sometimes yes but i'm going to hawaii next week so right now i'm fine [laughter]"
},
{
"start_time": "816.911",
"stop_time": "817.531",
"speaker": "Ellie",
"value": "nice"
},
{
"start_time": "818.194",
"stop_time": "818.684",
"speaker": "Participant",
"value": "yes"
},
{
"start_time": "819.293",
"stop_time": "822.278",
"speaker": "Participant",
"value": "but yeah usually it's been kind of like down because"
},
{
"start_time": "822.278",
"stop_time": "824.318",
"speaker": "Participant",
"value": "i'm just trying to find like what"
},
{
"start_time": "824.954",
"stop_time": "841.311",
"speaker": "Participant",
"value": "i'm supposed to like you know what do i want to do next and like money situations which is very stressful especially when you have school loans to pay off insurance rent car loans like it's just groceries like i can't even afford groceries"
},
{
"start_time": "841.522",
"stop_time": "852.068",
"speaker": "Participant",
"value": "so it's just hard to like live this way especially after you've paid so much money for like an amazing college education so it's a little bit frustrating but there's a lot of people in the same situation"
},
{
"start_time": "852.239",
"stop_time": "853.139",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "853.319",
"stop_time": "854.259",
"speaker": "Ellie",
"value": "i'm sorry"
},
{
"start_time": "854.589",
"stop_time": "855.489",
"speaker": "Participant",
"value": "it's all good"
},
{
"start_time": "856.02",
"stop_time": "858.08",
"speaker": "Ellie",
"value": "have you been diagnosed with depression"
},
{
"start_time": "859.168",
"stop_time": "862.419",
"speaker": "Participant",
"value": "uh no i don't think so but i mean"
},
{
"start_time": "862.742",
"stop_time": "866.134",
"speaker": "Participant",
"value": "i think everyone goes through depression here and there so i don't know if you can"
},
{
"start_time": "866.374",
"stop_time": "870.159",
"speaker": "Participant",
"value": "but not like medically diagnose i'm not on meds"
},
{
"start_time": "870.438",
"stop_time": "871.198",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "871.497",
"stop_time": "873.447",
"speaker": "Ellie",
"value": "have you ever been diagnosed with p_t_s_d"
},
{
"start_time": "873.736",
"stop_time": "874.426",
"speaker": "Participant",
"value": "nope"
},
{
"start_time": "874.868",
"stop_time": "876.848",
"speaker": "Ellie",
"value": "have you ever served in the military"
},
{
"start_time": "877.123",
"stop_time": "877.923",
"speaker": "Participant",
"value": "nope"
},
{
"start_time": "878.677",
"stop_time": "879.357",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "880.011",
"stop_time": "883.361",
"speaker": "Ellie",
"value": "what advice would you give yourself ten or twenty years ago"
},
{
"start_time": "885.505",
"stop_time": "886.855",
"speaker": "Participant",
"value": "oh let's see"
},
{
"start_time": "887.114",
"stop_time": "892.455",
"speaker": "Participant",
"value": "uh to try lots of different things and not be afraid to fail"
},
{
"start_time": "893.177",
"stop_time": "901.414",
"speaker": "Participant",
"value": "'cause i'm one of those people if i'm not gonna be the best at something then i'm just not gonna try i accept the best or nothing at all go big or go home"
},
{
"start_time": "901.93",
"stop_time": "909.236",
"speaker": "Participant",
"value": "so but i think i would've told my high school self that go and try lots of things even if it means i'm not gonna be the best at it"
},
{
"start_time": "909.938",
"stop_time": "910.488",
"speaker": "Participant",
"value": "so"
},
{
"start_time": "910.893",
"stop_time": "912.143",
"speaker": "Participant",
"value": "ten years ago"
},
{
"start_time": "911.193",
"stop_time": "912.003",
"speaker": "Ellie",
"value": "like what"
},
{
"start_time": "912.839",
"stop_time": "915.181",
"speaker": "Participant",
"value": "well that would've made me like twelve so"
},
{
"start_time": "916.69",
"stop_time": "921.14",
"speaker": "Participant",
"value": " [laughter] um i used to do a lot of things i i used to act"
},
{
"start_time": "921.385",
"stop_time": "931.62",
"speaker": "Participant",
"value": "i think i would've continued doing that i used to write a lot when i was younger i used to write miniature like little stories short stories for my parents all the time"
},
{
"start_time": "932.115",
"stop_time": "936.379",
"speaker": "Participant",
"value": "and i kind of stopped doing those things 'cause it's like oh i'm not good at it so i'm not gonna do it"
},
{
"start_time": "936.639",
"stop_time": "941.599",
"speaker": "Participant",
"value": "and i think if i just continued doing those things and tried you know different classes "
},
{
"start_time": "942.396",
"stop_time": "948.93",
"speaker": "Participant",
"value": "um i don't know different sports i kinda just stuck with soccer growing up i don't know just"
},
{
"start_time": "949.25",
"stop_time": "956.18",
"speaker": "Participant",
"value": "expand myself more rather than like find something i'm good at and just stay with it but never really try harder"
},
{
"start_time": "956.526",
"stop_time": "961.406",
"speaker": "Participant",
"value": "kinda just like stay i always kinda stayed at one level but once i'm good i just stay for good"
},
{
"start_time": "961.683",
"stop_time": "963.683",
"speaker": "Participant",
"value": "i don't try to go above that"
},
{
"start_time": "964.111",
"stop_time": "965.411",
"speaker": "Participant",
"value": "if that makes any sense"
},
{
"start_time": "964.212",
"stop_time": "964.842",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "966.057",
"stop_time": "966.817",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "968.422",
"stop_time": "969.882",
"speaker": "Ellie",
"value": "what do you do to relax"
},
{
"start_time": "972.545",
"stop_time": "976.035",
"speaker": "Participant",
"value": "uh right now it's super lame but i watch t_v"
},
{
"start_time": "976.867",
"stop_time": "977.417",
"speaker": "Participant",
"value": "[laughter]"
},
{
"start_time": "977.857",
"stop_time": "984.481",
"speaker": "Participant",
"value": "but i used to read a i used to read on my off time or just listen to music or just take a nap"
},
{
"start_time": "984.896",
"stop_time": "996.477",
"speaker": "Participant",
"value": "or bake but now it's just like since i'm on my feet all day and like constantly interacting with people i just kinda wanna unwind by like sitting and lying on the couch and being like i'm done"
},
{
"start_time": "997.68",
"stop_time": "998.06",
"speaker": "Participant",
"value": "so"
},
{
"start_time": "998.051",
"stop_time": "998.641",
"speaker": "Ellie",
"value": "yeah"
},
{
"start_time": "1002.896",
"stop_time": "1005.225",
"speaker": "Ellie",
"value": "what's one of your most memorable experiences "
},
{
"start_time": "1006.843",
"stop_time": "1007.603",
"speaker": "Participant",
"value": "[laughter]"
},
{
"start_time": "1008.184",
"stop_time": "1010.074",
"speaker": "Participant",
"value": "that's a tough question"
},
{
"start_time": "1012.065",
"stop_time": "1016.8",
"speaker": "Participant",
"value": "um probably the day i got accepted into pomona college"
},
{
"start_time": "1017.286",
"stop_time": "1017.876",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "1018.914",
"stop_time": "1024.34",
"speaker": "Participant",
"value": "i was a freshman at wellesley college which is the women's college back east"
},
{
"start_time": "1025.067",
"stop_time": "1034.491",
"speaker": "Participant",
"value": "and i hated it from like the second from like the first week i just knew that i chose the wrong college and i was like miserable for the entire year"
},
{
"start_time": "1031.897",
"stop_time": "1032.377",
"speaker": "Ellie",
"value": "aww"
},
{
"start_time": "1035.378",
"stop_time": "1040.182",
"speaker": "Participant",
"value": "and i only only applied to one school to transfer pomona college like that's out in claremont"
},
{
"start_time": "1040.578",
"stop_time": "1041.298",
"speaker": "Participant",
"value": "and um"
},
{
"start_time": "1042.473",
"stop_time": "1051.375",
"speaker": "Participant",
"value": "i didn't think i was gonna get in and i was 'cause it was like a four percent acceptance rate and i was like what are the chances like this is ridiculous i don't think i'm gonna get in"
},
{
"start_time": "1051.84",
"stop_time": "1055.06",
"speaker": "Participant",
"value": "and i was like you know the thought of going back to wellesley was super depressing "
},
{
"start_time": "1055.201",
"stop_time": "1055.801",
"speaker": "Ellie",
"value": "mhm"
},
{
"start_time": "1055.554",
"stop_time": "1056.014",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "1057.217",
"stop_time": "1066.043",
"speaker": "Participant",
"value": "but then i got an email from one of the admission counselors that i had met when i was visiting pomona and he was like hi tatiana like"
},
{
"start_time": "1067.18",
"stop_time": "1067.51",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "1068.209",
"stop_time": "1072.415",
"speaker": "Participant",
"value": "just wanted to see if you had any last minute questions about pomona hope all is well"
},
{
"start_time": "1072.869",
"stop_time": "1078.011",
"speaker": "Participant",
"value": "and i was like why would he be emailing me the day we find out if we got you know accepted or not"
},
{
"start_time": "1078.516",
"stop_time": "1092.527",
"speaker": "Participant",
"value": "um unless i got the acceptance and so sure enough a couple hours later i got the email that i was accepted into pomona and i was ecstatic that was like that best day of my life i was so happy"
},
{
"start_time": "1092.628",
"stop_time": "1093.448",
"speaker": "Participant",
"value": "that's probably one"
},
{
"start_time": "1092.684",
"stop_time": "1093.764",
"speaker": "Ellie",
"value": "that's great"
},
{
"start_time": "1093.691",
"stop_time": "1094.201",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "1094.46",
"stop_time": "1106.951",
"speaker": "Participant",
"value": "it was awesome then i took my mom and my little brother out to dinner and i went and bought myself some new dresses went and just like went crazy dyed my hair pierced my nose i was like let's start this whole thing over so [laughter]"
},
{
"start_time": "1107.036",
"stop_time": "1107.926",
"speaker": "Ellie",
"value": "awesome"
},
{
"start_time": "1108.624",
"stop_time": "1109.414",
"speaker": "Participant",
"value": "yeah"
},
{
"start_time": "1112.398",
"stop_time": "1114.108",
"speaker": "Ellie",
"value": "how would your best friend describe you"
},
{
"start_time": "1118.079",
"stop_time": "1119.34",
"speaker": "Participant",
"value": "bubbly "
},
{
"start_time": "1120.576",
"stop_time": "1121.639",
"speaker": "Participant",
"value": "fun "
},
{
"start_time": "1123.547",
"stop_time": "1128.06",
"speaker": "Participant",
"value": "maybe moody you never know what you're gonna get sometimes um"
},
{
"start_time": "1127.44",
"stop_time": "1128.24",
"speaker": "Ellie",
"value": "[laughter]"
},
{
"start_time": "1130.083",
"stop_time": "1131.043",
"speaker": "Participant",
"value": "probably "
},
{
"start_time": "1132.855",
"stop_time": "1134.905",
"speaker": "Participant",
"value": " uh definitely friendly"
},
{
"start_time": "1135.63",
"stop_time": "1139.296",
"speaker": "Participant",
"value": "um and pretty like a positive person"
},
{
"start_time": "1139.652",
"stop_time": "1140.342",
"speaker": "Participant",
"value": "um"
},
{
"start_time": "1141.652",
"stop_time": "1144.312",
"speaker": "Participant",
"value": "but sometimes maybe a little bit"
},
{
"start_time": "1145.183",
"stop_time": "1147.44",
"speaker": "Participant",
"value": "aggressive but"
},
{
"start_time": "1148.746",
"stop_time": "1153.349",
"speaker": "Participant",
"value": "for the most part i think positive things i mean she's my best friend so [laughter]"
},
{
"start_time": "1153.386",
"stop_time": "1154.076",
"speaker": "Ellie",
"value": "okay"
},
{
"start_time": "1154.883",
"stop_time": "1157.523",
"speaker": "Ellie",
"value": "when was the last time you felt really happy"
},
{
"start_time": "1163.838",
"stop_time": "1165.298",
"speaker": "Participant",
"value": "huh "
},
{
"start_time": "1166.15",
"stop_time": "1167.38",
"speaker": "Participant",
"value": "really happy"
},
{
"start_time": "1169.776",
"stop_time": "1171.853",
"speaker": "Participant",
"value": "oh when i was in mexico"
},
{
"start_time": "1172.627",
"stop_time": "1175.681",
"speaker": "Participant",
"value": "over winter well"
},
{
"start_time": "1176.612",
"stop_time": "1178.022",
"speaker": "Participant",
"value": "no i don't know"
},
{
"start_time": "1178.652",
"stop_time": "1183.068",
"speaker": "Participant",
"value": "my boyfriend took me on a sailing trip down in "
},
{
"start_time": "1183.398",
"stop_time": "1191.679",
"speaker": "Participant",
"value": "san clemente and that was really fun and we just like went sailing and walked around the missions hung out on the beach that was really fun"
},
{
"start_time": "1193.302",
"stop_time": "1194.522",
"speaker": "Participant",
"value": "that was a good time"
},
{
"start_time": "1193.595",
"stop_time": "1195.521",
"speaker": "Ellie",
"value": "that sounds like a great situation"
},
{
"start_time": "1195.521",
"stop_time": "1196.791",
"speaker": "Participant",
"value": "yeah it was cool"
},
{
"start_time": "1198.634",
"stop_time": "1203.501",
"speaker": "Ellie",
"value": "okay i think i've asked everything i need to thanks for sharing your thoughts with me"
},
{
"start_time": "1204.847",
"stop_time": "1205.577",
"speaker": "Ellie",
"value": "goodbye"
},
{
"start_time": "1205.568",
"stop_time": "1207.308",
"speaker": "Participant",
"value": "[laughter] bye"
}
] |