{ "nbformat": 4, "nbformat_minor": 0, "metadata": { "colab": { "provenance": [] }, "kernelspec": { "name": "python3", "display_name": "Python 3" }, "language_info": { "name": "python" } }, "cells": [ { "cell_type": "markdown", "source": [ "# Data" ], "metadata": { "id": "fifTbKR0OCp2" } }, { "cell_type": "code", "source": [ "import io\n", "import os\n", "import re\n", "import requests\n", "import string\n", "from tqdm import tqdm\n", "from bs4 import BeautifulSoup\n", "import matplotlib.pyplot as plt\n", "import seaborn as sns\n", "import pandas as pd\n", "import numpy as np" ], "metadata": { "id": "XyUdDEkmMvR0" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "main_characters = ['CHANDLER', 'JOEY', 'MONICA', 'PHOEBE', 'ROSS', 'RACHEL']\n", "url_base = 'https://www.drodd.com/friends'\n", "SEASON_COUNT = 10\n", "NEWLINE_REPLACEMENT = ' 5923 '" ], "metadata": { "id": "dSD_x10tNGvO" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "## Parse main url for getting links for all episodes" ], "metadata": { "id": "bLjNXOfHN_tT" } }, { "cell_type": "code", "source": [ "r = requests.get(url_base)\n", "soup = BeautifulSoup(r.content)\n", "links_by_episode = [(i['href'][14:-4], url_base + \"/\" + i['href']) for i in soup.find_all('a') if str(i).find('name') == -1][1:-3]\n", "links = []\n", "for i, j in links_by_episode:\n", " if i == '212_213':\n", " links.append((2, 12, j))\n", " elif i == '615616':\n", " links.append((6, 15, j))\n", " elif i == '723.':\n", " links.append((7, 23, j))\n", " else:\n", " links.append((int(i) // 100, int(i) % 100, j))\n", "\n", "# Links to every episode\n", "links_by_episode = links # link to every episode\n", "\n", "all_scripts = {i + 1: {} for i in range(SEASON_COUNT)}\n", "scripts_with_context = {i + 1: {} for i in range(SEASON_COUNT)}" ], "metadata": { "id": "i9laydWzNPO1" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Transcript links with broken structure" ], "metadata": { "id": "NT4In9ZHPpf6" } }, { "cell_type": "code", "source": [ "exception_episodes = [(1, 5),(2, 18),(6, 11),(7, 11),(7, 23), (9, 1), (9, 2), (9, 3), (9, 4), (9, 8)] + [(8, i) for i in range(7, 24)]" ], "metadata": { "id": "jUsU2vUFNuTA" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "# Iterate through each link by episode\n", "for i in links_by_episode:\n", " # Initialize an empty dictionary for each episode within its respective season\n", " scripts_with_context[i[0]][i[1]] = {}\n", "# Iterate through seasons, excluding the last one\n", "for season in tqdm(range(1, SEASON_COUNT)):\n", " # Iterate through episode numbers within the current season\n", " for num in scripts_with_context[season].keys():\n", " # Skip episodes listed in the exception_episodes list\n", " if (season, num) in exception_episodes:\n", " continue\n", "\n", " # Iterate through each link by episode\n", " for i, j, k in links_by_episode:\n", " # Assign variables for link season, episode, and the link itself\n", " link_season = i\n", " link_episode = j\n", " lnk = k\n", "\n", " # Check if the current link corresponds to the current season and episode\n", " if season == link_season and num == link_episode:\n", " # Initialize an empty string to store the script\n", " current_script_with_context = ''\n", "\n", " # Make a GET request to fetch the script content from the link\n", " r = requests.get(lnk)\n", "\n", " # Parse the HTML content of the page using BeautifulSoup\n", " soup = BeautifulSoup(r.content)\n", "\n", " # Extract all

elements which usually contain the script content\n", " script_raw = soup.find_all('p')\n", "\n", " # Initialize the maximum script length\n", " max_script = script_raw[0]\n", "\n", " # Find the longest script element\n", " for i in script_raw:\n", " if len(i) > len(max_script):\n", " max_script = i\n", "\n", " # Clean and preprocess the script text\n", " # Convert the BeautifulSoup object max_script to a string and replace '

' tags with an empty string\n", " script = str(max_script).replace(\"

\", \"\")\n", " # Replace '

' tags with an empty string in the script string\n", " script = script.replace(\"

\", \"\")\n", " # Replace '

' tags with '\\n' (newline) in the script string\n", " script = script.replace(\"

\", \"\\n\")\n", " # Replace '
' tags with a space in the script string\n", " script = script.replace(\"
\", \" \")\n", " # Replace '\\r\\n' (carriage return and newline) characters with an empty string in the script string\n", " script = script.replace('\\r\\n', '')\n", " # Use regular expressions to remove text within square brackets (e.g., [some text]) from the script string\n", " script = re.sub(r'\\[(.*?)\\]', '', script)\n", " # Use regular expressions to remove text within parentheses (e.g., (some text)) from the script string\n", " script = re.sub(r'\\(.*?\\)', '', script)\n", " # Use regular expressions to replace multiple spaces with a single space in the script string\n", " script = re.sub(' +', ' ', script)\n", " # Use regular expressions to replace multiple consecutive newline characters with a single newline character in the script string\n", " script = re.sub('\\n+', '\\n', script)\n", " # Use regular expressions to replace newline character followed by a space with just a newline character in the script string\n", " script = re.sub('\\n ', '\\n', script)\n", " # Use regular expressions to replace multiple consecutive newline characters with just a single newline character in the script string\n", " script = re.sub('\\n\\n+', '\\n', script)\n", "\n", " # Split the script string into a list of lines using newline character ('\\n') as the delimiter\n", " # Filter out lines that contain 'SCENE [0-9]+:' or 'SCENE:' using regular expressions\n", " script = [i for i in script.split('\\n') if not(re.search('SCENE [0-9]+:|SCENE:', i))]\n", "\n", " # Filter out empty lines from the list of script lines\n", " script = [i for i in script if i != '']\n", "\n", " # Process each line of the script\n", " for line in script:\n", " # Find the index of ':' in the line\n", " idx = line.find(':')\n", "\n", " # If ':' is found, extract the character name\n", " if idx != -1:\n", " cur_char = line[:idx].upper()\n", " # Check if the character is one of the main_characters\n", " if cur_char in main_characters:\n", " current_script_with_context += line[:idx].upper() + line[idx:] + NEWLINE_REPLACEMENT\n", " else:\n", " current_script_with_context += \"OTHER\" + line[idx:] + NEWLINE_REPLACEMENT\n", "\n", " # Assign the processed script to the corresponding episode in scripts_with_context\n", " scripts_with_context[season][num] = current_script_with_context\n" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "w5qKbqfkPK70", "outputId": "077bb80a-51bc-454c-fdad-d0a25d533a5c" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "100%|██████████| 9/9 [02:48<00:00, 18.74s/it]\n" ] } ] }, { "cell_type": "code", "source": [ "scripts_with_context[1][1]" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 163 }, "id": "7d-ZQw9xRLFR", "outputId": "29813bbb-fe6a-46ee-dfb2-00314232fba6" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "\"MONICA: There's nothing to tell! He's just some guy I work with! 5923 JOEY: C'mon, you're going out with the guy! There's gotta be something wrong with him! 5923 CHANDLER: So does he have a hump? A hump and a hairpiece? 5923 PHOEBE: Wait, does he eat chalk? 5923 PHOEBE: Just, 'cause, I don't want her to go through what I went through with Carl- oh! 5923 MONICA: Okay, everybody relax. This is not even a date. It's just two people going out to dinner and- not having sex. 5923 CHANDLER: Sounds like a date to me. 5923 CHANDLER: Alright, so I'm back in high school, I'm standing in the middle of the cafeteria, and I realise I am totally naked. 5923 OTHER: Oh, yeah. Had that dream. 5923 CHANDLER: Then I look down, and I realise there's a phone... there. 5923 JOEY: Instead of...? 5923 CHANDLER: That's right. 5923 JOEY: Never had that dream. 5923 PHOEBE: No. 5923 CHANDLER: All of a sudden, the phone starts to ring. And it turns out it's my mother, which is very weird, because- she never calls me! 5923 ROSS: Hi. 5923 JOEY: This guy says hello, I wanna kill myself. 5923 MONICA: Are you okay, sweetie? 5923 ROSS: I just feel like someone reached down my throat, grabbed my small intestine, pulled it out of my mouth and tied it around my neck... 5923 CHANDLER: Cookie? 5923 MONICA: Carol moved her stuff out today. Let me get you some coffee. 5923 PHOEBE: Ooh! Oh! 5923 ROSS: No, no don't! Stop cleansing my aura! No, just leave my aura alone, okay? I'll be fine, alright? Really, everyone. I hope she'll be very happy. 5923 MONICA: No you don't. 5923 ROSS: No I don't, to hell with her, she left me! 5923 JOEY: And you never knew she was a lesbian... 5923 ROSS: No!! Okay?! Why does everyone keep fixating on that? She didn't know, how should I know? 5923 CHANDLER: Sometimes I wish I was a lesbian... Did I say that out loud? 5923 JOEY: Alright Ross, look. You're feeling a lot of pain right now. You're angry. You're hurting. Can I tell you what the answer is? 5923 JOEY: Strip joint! C'mon, you're single! Have some hormones! 5923 ROSS: I don't want to be single, okay? I just... I just- I just wanna be married again! 5923 CHANDLER: And I just want a million dollars! 5923 MONICA: Rachel?! 5923 RACHEL: Oh God Monica hi! I just went to your building and you weren't there and then this guy with a big hammer said you might be here and you are, you are! 5923 OTHER: Can I get you some coffee? 5923 MONICA: De-caff. Okay, everybody, this is Rachel, another Lincoln High survivor. This is everybody, this is Chandler, and Phoebe, and Joey, and- you remember my brother Ross? 5923 RACHEL: Hi, sure! 5923 ROSS: Hi. 5923 MONICA: So you wanna tell us now, or are we waiting for four wet bridesmaids? 5923 RACHEL: Oh God... well, it started about a half hour before the wedding. I was in the room where we were keeping all the presents, and I was looking at this gravy boat. This really gorgeous Lamauge gravy boat. When all of a sudden- Sweet 'n' Lo?- I realised that I was more turned on by this gravy boat than by Barry! And then I got really freaked out, and that's when it hit me: how much Barry looks like Mr. Potato Head. Y'know, I mean, he always looked familiar, but... Anyway, I just had to get out of there, and I started wondering 'Why am I doing this, and who am I doing this for?'. So anyway I just didn't know where to go, and I know that you and I have kinda drifted apart, but you're the only person I knew who lived here in the city. 5923 MONICA: Who wasn't invited to the wedding. 5923 RACHEL: Ooh, I was kinda hoping that wouldn't be an issue... 5923 MONICA: Now I'm guessing that he bought her the big pipe organ, and she's really not happy about it. 5923 RACHEL: Daddy, I just... I can't marry him! I'm sorry. I just don't love him. Well, it matters to me! 5923 CHANDLER: Ooh, she should not be wearing those pants. 5923 JOEY: I say push her down the stairs. 5923 OTHER: Push her down the stairs! Push her down the stairs! Push her down the stairs! 5923 RACHEL: C'mon Daddy, listen to me! All of my life, everyone has always told me, 'You're a shoe! You're a shoe, you're a shoe, you're a shoe!'. And today I just stopped and I said, 'What if I don't wanna be a shoe? What if I wanna be a- a purse, y'know? Or a- or a hat! No, I'm not saying I want you to buy me a hat, I'm saying I am a ha- It's a metaphor, Daddy! 5923 ROSS: You can see where he'd have trouble. 5923 RACHEL: Look Daddy, it's my life. Well maybe I'll just stay here with Monica. 5923 MONICA: Well, I guess we've established who's staying here with Monica... 5923 RACHEL: Well, maybe that's my decision. Well, maybe I don't need your money. Wait!! Wait, I said maybe!! 5923 MONICA: Just breathe, breathe.. that's it. Just try to think of nice calm things... 5923 PHOEBE: Raindrops on roses and rabbits and kittens, ..bluebells and sleighbells and- something with mittens... La la la la... 5923 RACHEL: I'm all better now. 5923 PHOEBE: I helped! 5923 MONICA: Okay, look, this is probably for the best, y'know? Independence. Taking control of your life. 5923 JOEY: And hey, you need anything, you can always come to Joey. Me and Chandler live across the hall. And he's away a lot. 5923 MONICA: Joey, stop hitting on her! It's her wedding day! 5923 JOEY: What, like there's a rule or something? 5923 CHANDLER: Please don't do that again, it's a horrible sound. 5923 OTHER: It's, uh, it's Paul. 5923 MONICA: Buzz him in! 5923 JOEY: Who's Paul? 5923 ROSS: Paul the Wine Guy, Paul? 5923 MONICA: Maybe. 5923 JOEY: Wait. Your 'not a real date' tonight is with Paul the Wine Guy? 5923 ROSS: He finally asked you out? 5923 MONICA: Yes! 5923 CHANDLER: Ooh, this is a Dear Diary moment. 5923 MONICA: Rach, wait, I can cancel... 5923 RACHEL: Please, no, go, that'd be fine! 5923 MONICA: Are, are you okay? I mean, do you want me to stay? 5923 ROSS: That'd be good... 5923 MONICA: Really? 5923 ROSS: No, go on! It's Paul the Wine Guy! 5923 MONICA: Hi, come in! Paul, this is.. ... everybody, everybody, this is Paul. 5923 OTHER: Hey! Paul! Hi! The Wine Guy! Hey! 5923 CHANDLER: I'm sorry, I didn't catch your name. Paul, was it? 5923 MONICA: Two seconds. 5923 PHOEBE: Ooh, I just pulled out four eyelashes. That can't be good. 5923 ROSS: So Rachel, what're you, uh... what're you up to tonight? 5923 RACHEL: Well, I was kinda supposed to be headed for Aruba on my honeymoon, so nothing! 5923 ROSS: Right, you're not even getting your honeymoon, God.. No, no, although, Aruba, this time of year... talk about your- -big lizards... Anyway, if you don't feel like being alone tonight, Joey and Chandler are coming over to help me put together my new furniture. 5923 CHANDLER: Yes, and we're very excited about it. 5923 RACHEL: Well actually thanks, but I think I'm just gonna hang out here tonight.. 5923 ROSS: Okay, sure. 5923 JOEY: Hey Pheebs, you wanna help? 5923 PHOEBE: Oh, I wish I could, but I don't want to. 5923 ROSS: I'm supposed to attach a brackety thing to the side things, using a bunch of these little worm guys. I have no brackety thing, I see no worm guys whatsoever and- I cannot feel my legs. 5923 JOEY: What's this? 5923 CHANDLER: I have no idea. 5923 JOEY: Done with the bookcase! 5923 CHANDLER: All finished! 5923 ROSS: This was Carol's favourite beer. She always drank it out of the can, I should have known. 5923 JOEY: Ross, let me ask you a question. She got the furniture, the stereo, the good TV- what did you get? 5923 ROSS: You guys. 5923 CHANDLER: Oh, man. 5923 JOEY: You got screwed. 5923 MONICA: Oh my God! 5923 OTHER: I know, I know, I'm such an idiot. I guess I should have caught on when she started going to the dentist four and five times a week. I mean, how clean can teeth get? 5923 MONICA: My brother's going through that right now, he's such a mess. How did you get through it? 5923 OTHER: Well, you might try accidentally breaking something valuable of hers, say her- 5923 MONICA: -leg? 5923 OTHER: That's one way! Me, I- I went for the watch. 5923 MONICA: You actually broke her watch? 5923 RACHEL: Barry, I'm sorry... I am so sorry... I know you probably think that this is all about what I said the other day about you making love with your socks on, but it isn't... it isn't, it's about me, and I ju- Hi, machine cut me off again... anyway... 5923 ROSS: You know what the scariest part is? What if there's only one woman for everybody, y'know? I mean what if you get one woman- and that's it? Unfortunately in my case, there was only one woman- for her... 5923 JOEY: What are you talking about? 'One woman'? That's like saying there's only one flavour of ice cream for you. Lemme tell you something, Ross. There's lots of flavours out there. There's Rocky Road, and Cookie Dough, and Bing! Cherry Vanilla. You could get 'em with Jimmies, or nuts, or whipped cream! This is the best thing that ever happened to you! You got married, you were, like, what, eight? Welcome back to the world! Grab a spoon! 5923 ROSS: I honestly don't know if I'm hungry or horny. 5923 CHANDLER: Stay out of my freezer! 5923 OTHER: Ever since she walked out on me, I, uh... 5923 MONICA: What?..... What, you wanna spell it out with noodles? 5923 OTHER: No, it's, it's more of a fifth date kinda revelation. 5923 MONICA: Oh, so there is gonna be a fifth date? 5923 OTHER: Isn't there? 5923 MONICA: Yeah... yeah, I think there is. -What were you gonna say? 5923 OTHER: Well, ever-ev-... ever since she left me, um, I haven't been able to, uh, perform. ...Sexually. 5923 MONICA: Oh God, oh God, I am sorry... I am so sorry... 5923 OTHER: It's okay... 5923 MONICA: Being spit on is probably not what you need right now. Um... how long? 5923 OTHER: Two years. 5923 MONICA: Wow! I'm glad you smashed her watch! 5923 OTHER: So you still think you, um... might want that fifth date? 5923 MONICA: ...Yeah. Yeah, I do. 5923 OTHER: 'I, Joanie, take you, Charles, to be my lawful husband.' 'Do you take...' 5923 RACHEL: Oh...see... but Joanie loved Chachi! That's the difference! 5923 ROSS: Grab a spoon. Do you know how long it's been since I've grabbed a spoon? Do the words 'Billy, don't be a hero' mean anything to you? Y'know, here's the thing. Even if I could get it together enough to- to ask a woman out,... who am I gonna ask? 5923 RACHEL: Isn't this amazing? I mean, I have never made coffee before in my entire life. 5923 CHANDLER: That is amazing. 5923 JOEY: Congratulations. And while you're on a roll, if you feel like you gotta make like a Western omelette or something... Although actually I'm really not that hungry... 5923 OTHER: Morning. Good morning. 5923 OTHER: Morning. 5923 JOEY: Morning, Paul. 5923 RACHEL: Hello, Paul. 5923 CHANDLER: Hi, Paul, is it? 5923 MONICA: I had a really great time last night. 5923 OTHER: Thank you. Thank you so much. 5923 MONICA: We'll talk later. 5923 OTHER: Yeah. Thank you. 5923 JOEY: That wasn't a real date?! What the hell do you do on a real date? 5923 MONICA: Shut up, and put my table back. 5923 OTHER: Okayyy! 5923 CHANDLER: All right, kids, I gotta get to work. If I don't input those numbers,... it doesn't make much of a difference... 5923 RACHEL: So, like, you guys all have jobs? 5923 MONICA: Yeah, we all have jobs. See, that's how we buy stuff. 5923 JOEY: Yeah, I'm an actor. 5923 RACHEL: Wow! Would I have seen you in anything? 5923 JOEY: I doubt it. Mostly regional work. 5923 MONICA: Oh wait, wait, unless you happened to catch the Reruns' production of Pinocchio. 5923 CHANDLER: 'Look, Gippetto, I'm a real live boy.' 5923 JOEY: I will not take this abuse. 5923 CHANDLER: You're right, I'm sorry. 'Once I was a wooden boy, a little wooden boy..' 5923 MONICA: So how you doing today? Did you sleep okay? Talk to Barry? I can't stop smiling. 5923 RACHEL: I can see that. You look like you slept with a hanger in your mouth. 5923 MONICA: I know, he's just so, so... Do you remember you and Tony DeMarco? 5923 RACHEL: Oh, yeah. 5923 MONICA: Well, it's like that. With feelings. 5923 RACHEL: Oh wow. Are you in trouble. 5923 MONICA: Okay. Okay. I am just going to get up, go to work and not think about him all day. Or else I'm just gonna get up and go to work. 5923 RACHEL: Oh, look, wish me luck! 5923 MONICA: What for? 5923 RACHEL: I'm gonna go get one of those job things. 5923 OTHER: Hey, Monica! 5923 MONICA: Hey, welcome back! How was Florida? 5923 OTHER: You had sex, didn't you? 5923 MONICA: How do you do that? 5923 OTHER: So? Who? 5923 MONICA: You know Paul? 5923 OTHER: Paul the Wine Guy? Oh yeah, I know Paul. 5923 MONICA: You mean you know Paul like I know Paul? 5923 OTHER: Are you kidding? I take credit for Paul. Y'know before me, there was no snap in his turtle for two years. 5923 JOEY: Of course it was a line! 5923 MONICA: Why?! Why? Why, why would anybody do something like that? 5923 ROSS: I assume we're looking for an answer more sophisticated than 'to get you into bed'. 5923 MONICA: Is it me? Is it like I have some sort of beacon that only dogs and men with severe emotional problems can hear? 5923 PHOEBE: All right, c'mere, gimme your feet. 5923 MONICA: I just thought he was nice, y'know? 5923 JOEY: I can't believe you didn't know it was a line! 5923 RACHEL: Guess what? 5923 ROSS: You got a job? 5923 RACHEL: Are you kidding? I'm trained for nothing! I was laughed out of twelve interviews today. 5923 CHANDLER: And yet you're surprisingly upbeat. 5923 RACHEL: You would be too if you found John and David boots on sale, fifty percent off! 5923 CHANDLER: Oh, how well you know me... 5923 RACHEL: They're my new 'I don't need a job, I don't need my parents, I've got great boots' boots! 5923 MONICA: How'd you pay for them? 5923 RACHEL: Uh, credit card. 5923 MONICA: And who pays for that? 5923 RACHEL: Um... my... father. 5923 MONICA: C'mon, you can't live off your parents your whole life. 5923 RACHEL: I know that. That's why I was getting married. 5923 PHOEBE: Give her a break, it's hard being on your own for the first time. 5923 RACHEL: Thank you. 5923 PHOEBE: You're welcome. I remember when I first came to this city. I was fourteen. My mom had just killed herself and my step-dad was back in prison, and I got here, and I didn't know anybody. And I ended up living with this albino guy who was, like, cleaning windows outside port authority, and then he killed himself, and then I found aromatherapy. So believe me, I know exactly how you feel. 5923 ROSS: The word you're looking for is 'Anyway'... 5923 MONICA: You ready? 5923 RACHEL: I don't think so. 5923 ROSS: C'mon, cut. Cut, cut, cut,... 5923 OTHER: Cut, cut, cut, cut, cut, cut, cut... 5923 MONICA: Welcome to the real world! It sucks. You're gonna love it! 5923 MONICA: Well, that's it. 5923 RACHEL: You gonna crash on the couch? 5923 ROSS: No. No, I gotta go home sometime. 5923 MONICA: You be okay? 5923 ROSS: Yeah. 5923 RACHEL: Hey Mon, look what I just found on the floor. What? 5923 MONICA: That's Paul's watch. You just put it back where you found it. Oh boy. Alright. Goodnight, everybody. 5923 ROSS: Mmm. Oh, no- 5923 RACHEL: Sorry- 5923 ROSS: No no no, go- 5923 RACHEL: No, you have it, really, I don't want it- 5923 ROSS: Split it? 5923 RACHEL: Okay. 5923 ROSS: Okay. You know you probably didn't know this, but back in high school, I had a, um, major crush on you. 5923 RACHEL: I knew. 5923 ROSS: You did! Oh.... I always figured you just thought I was Monica's geeky older brother. 5923 RACHEL: I did. 5923 ROSS: Oh. Listen, do you think- and try not to let my intense vulnerability become any kind of a factor here- but do you think it would be okay if I asked you out? Sometime? Maybe? 5923 RACHEL: Yeah, maybe... 5923 ROSS: Okay... okay, maybe I will... 5923 RACHEL: Goodnight. 5923 ROSS: Goodnight. 5923 MONICA: See ya.... Waitwait, what's with you? 5923 ROSS: I just grabbed a spoon. 5923 JOEY: I can't believe what I'm hearing here. 5923 PHOEBE: I can't believe what I'm hearing here... 5923 MONICA: What? I-I said you had a- 5923 PHOEBE: What I said... 5923 MONICA: Would you stop? 5923 PHOEBE: Oh, was I doing it again? 5923 RACHEL: Would anybody like more coffee? 5923 CHANDLER: Did you make it, or are you just serving it? 5923 RACHEL: I'm just serving it. 5923 OTHER: Yeah. Yeah, I'll have a cup of coffee. 5923 CHANDLER: Kids, new dream... I'm in Las Vegas. I'm Liza Minelli- 5923 \"" ], "application/vnd.google.colaboratory.intrinsic+json": { "type": "string" } }, "metadata": {}, "execution_count": 8 } ] }, { "cell_type": "markdown", "source": [ "Do the same for exceptional episodes" ], "metadata": { "id": "FOzGzqqdac7B" } }, { "cell_type": "code", "source": [ "# Iterate over each season and episode combination in the exception_episodes list,\n", "# as well as additional episodes from links_by_episode if the season is 10 and the episode is not 15\n", "for season, episode in tqdm(exception_episodes + [(l[0], l[1]) for l in links_by_episode if l[0] == 10 and l[1] != 15]):\n", " # Iterate over each link by episode\n", " for i, j, k in links_by_episode:\n", " # Extract season, episode, and link information\n", " link_season = i\n", " link_episode = j\n", " lnk = k\n", "\n", " # Check if the current link corresponds to the current season and episode\n", " if season == link_season and episode == link_episode:\n", " # Make a GET request to fetch the script content from the link\n", " r = requests.get(lnk)\n", "\n", " # Parse the HTML content of the page using BeautifulSoup\n", " soup = BeautifulSoup(r.content)\n", "\n", " # Extract all

elements which usually contain the script content\n", " script_raw = soup.find_all('p')\n", "\n", " # Remove unwanted header and footer lines from the script content\n", " script_raw = script_raw[3:-12]\n", "\n", " # Initialize variables to store the processed script\n", " script_res = ''\n", " current_script_with_context = ''\n", "\n", " # Iterate through each line of the script content\n", " for line in script_raw:\n", " # Skip lines with multiple tags, which usually indicate headers\n", " if len(line.find_all('strong')) > 1:\n", " continue\n", "\n", " # Convert the line to a string and perform various replacements to clean it\n", " script = str(line)\n", " script = script.replace(\"

\", \"\").replace(\"

\", \"\").replace(\"

\", \"\\n\").replace(\"
\", \" \")\n", " script = script.replace(\"\", \"\").replace(\"\", \"\")\n", " script = script.replace(\"\", \"\").replace(\"\", \"\").replace(\"{\", \"(\")\n", " script = re.sub('\\r\\n', '', script)\n", " script = re.sub(r'\\[(.*?)\\]', '', script)\n", " script = re.sub(r'\\(.*?\\)', '', script)\n", "\n", " # Find the index of ':' in the line to identify the character speaking\n", " tag = script.find(\":\")\n", " if tag > -1:\n", " # Extract the character name and the spoken dialogue\n", " cur_char = script[:tag].upper()\n", " script = script[tag+2:]\n", " script = re.sub(' +', ' ', script)\n", " script = re.sub('\\n', '', script)\n", " script = script.strip()\n", "\n", " # Check if the character is one of the main_characters\n", " if script != '':\n", " if script.find(')') > -1:\n", " continue\n", " if cur_char in main_characters:\n", " # Append the character's Russian name and the dialogue to the current_script_with_context\n", " current_script_with_context += cur_char + \": \" + script + NEWLINE_REPLACEMENT\n", " else:\n", " # Append \"НЕДРУГ\" (meaning \"OTHER\" in Russian) and the dialogue to the current_script_with_context\n", " current_script_with_context += \"OTHER: \" + script + NEWLINE_REPLACEMENT\n", "\n", " # Assign the processed script to the corresponding episode in scripts_with_context\n", " scripts_with_context[season][episode] = current_script_with_context\n" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "_witCiOXXyi1", "outputId": "3cea1b8d-40e0-4cf7-a1ff-8224a60348df" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "100%|██████████| 43/43 [00:30<00:00, 1.42it/s]\n" ] } ] }, { "cell_type": "markdown", "source": [ "# 2-18" ], "metadata": { "id": "zhvnaWPIa6q2" } }, { "cell_type": "code", "source": [ "r = requests.get('https://www.drodd.com/friends/friend-episode218.htm')\n", "soup = BeautifulSoup(r.content)\n", "script_raw = soup.find_all('pre')[0]\n", "script = str(script_raw).replace(\"

\", \"\").replace(\"

\", \"\").replace(\"

\", \"\\n\").replace(\"
\", \" \").replace(\"
\", \"\").replace(\"
\", \"\")\n", "script = script.replace(\"\", \"\").replace(\"\", \"\")\n", "script = script.replace(\"\", \"\").replace(\"\", \"\").replace(\"{\", \"(\")\n", "script = re.sub('\\r\\n', '\\n', script)\n", "script = re.sub('\\n +', '\\n', script)\n", "script = re.sub(r'\\[(.*?)\\]', '', script)\n", "script = re.sub(r'\\(.*?\\)', '', script)\n", "script = re.sub('\\n\\n', '\\n', script)\n", "script = re.sub('DELIVERY GUY', '\\nDELIVERY GUY', script)\n", "\n", "current_script_with_context = ''\n", "\n", "for line in script.split('\\n'):\n", " if line in ('', '\\n') or line.find(']') > -1:\n", " continue\n", " if line.replace(\" \", \"\").isupper():\n", " continue\n", " tag = line.find('[')\n", " if tag > - 1:\n", " current_script_with_context += line[:tag] + '\\n'\n", " elif not(line[0].isupper() and line[1].isupper()):\n", " current_script_with_context = current_script_with_context[:-1] + \" \" + line\n", " else:\n", " current_script_with_context += line + '\\n'\n", "current_script_with_context = re.sub('\\n\\n', '\\n', current_script_with_context)\n", "current_script_with_context = re.sub('\\n \\n', '\\n', current_script_with_context)\n", "current_script_with_context = current_script_with_context.strip()\n", "\n", "\n", "script = current_script_with_context.split('\\n')\n", "current_script_with_context = ''\n", "for line in script:\n", " tag = line.find(':')\n", " cur_char = line[:tag]\n", " if cur_char in main_characters:\n", " current_script_with_context += cur_char + \": \" + line[tag+2:] + NEWLINE_REPLACEMENT\n", " else:\n", " current_script_with_context += \"OTHER: \" + line[tag+2:] + NEWLINE_REPLACEMENT\n", "scripts_with_context[2][18] = current_script_with_context" ], "metadata": { "id": "dH56VvvQavPn" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "# 10-15" ], "metadata": { "id": "kFyUI5kMbPaf" } }, { "cell_type": "code", "source": [ "exception = {'BOTH',\n", " 'JANICE',\n", " 'JENNIFER',\n", " 'LADY',\n", " 'MR ZELNER',\n", " 'PHOEBE-ESTELLE',\n", " 'REALTOR'}\n", "\n", "lnk = 'https://www.drodd.com/friends/friend-episode1015.htm'\n", "r = requests.get(lnk)\n", "soup = BeautifulSoup(r.content)\n", "script_raw = soup.find_all('p')\n", "script_raw = script_raw[12:]\n", "script = str(script_raw).replace(\"

\", \"\").replace(\"

,\", \"\\n\").replace(\"

\", \"\\n\").replace(\"

\", \"\\n\").replace(\"
\", \" \")\n", "script = script.replace('\\r\\n', '')\n", "script = str(re.sub(r'\\(*[a-zA-Z\\s,.;+\\'\\-]+\\)', '', script))\n", "script = script[1:-1]\n", "script = re.sub('\\n+', '\\n', script)\n", "script = re.sub('\\n ', '\\n', script)\n", "script = re.sub('\\n\\n+', '\\n', script)\n", "script = [i for i in script.split('\\n') if not(re.search('SCENE [0-9]+:|SCENE:', i))]\n", "script = [i for i in script if i != '']\n", "text = \"\"\n", "last_char = \"\"\n", "char_set = set()\n", "\n", "current_script_with_context = ''\n", "for line in script:\n", " if line in ('', '\\n') or line.find(']') > -1:\n", " continue\n", " if line.replace(\" \", \"\").isupper():\n", " continue\n", " if not(line[0].isupper() and line[1].islower()):\n", " current_script_with_context = current_script_with_context[:-1] + \" \" + line.strip() + '\\n'\n", " else:\n", " current_script_with_context += line + '\\n'\n", "current_script_with_context = current_script_with_context.strip()\n", "\n", "script = current_script_with_context.split('\\n')\n", "current_script_with_context = ''\n", "for line in script:\n", " tag = line.find(':')\n", " cur_char = line[:tag].upper()\n", " if cur_char in main_characters:\n", " current_script_with_context += cur_char + \": \" + line[tag+1:].strip() + NEWLINE_REPLACEMENT\n", " else:\n", " current_script_with_context += \"OTHER: \" + line[tag+2:] + NEWLINE_REPLACEMENT\n", "scripts_with_context[10][15] = current_script_with_context" ], "metadata": { "id": "BZ-kjHxSbKB9" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "# 9-8\n" ], "metadata": { "id": "2bFu69YubutQ" } }, { "cell_type": "code", "source": [ "r = requests.get(links_by_episode[195][2])\n", "soup = BeautifulSoup(r.content)\n", "script_raw = str(soup.find_all('article')[0]).replace('>', '>')\n", "script_raw = re.sub('<[^<]+>', \"\", script_raw)\n", "script_raw = re.sub(r'\\[(.*?)\\]', '', script_raw)\n", "script_raw = re.sub(r'\\(.*?\\)', '', script_raw)\n", "text = script_raw.split('\\n')\n", "text = [x.strip() for x in text if x.strip() != '' and x.strip() != '\\r']\n", "text = text[5:-2]\n", "\n", "current_script_with_context = ''\n", "\n", "for line in text:\n", " if line in ('', '\\n') or line.find(']') > -1 or line.lower().find('scene') > -1:\n", " continue\n", " if line.replace(\" \", \"\").isupper():\n", " continue\n", " if not(line[0].isupper() and line[1].islower()) or line.find(':') == -1:\n", " current_script_with_context = current_script_with_context[:-1] + \" \" + line.strip() + '\\n'\n", " else:\n", " current_script_with_context += line.strip() + '\\n'\n", "\n", "current_script_with_context = current_script_with_context.strip()\n", "script_with_context = ''\n", "\n", "for line in current_script_with_context.split('\\n'):\n", " column_loc = line.find(':')\n", " ch_name = line[:column_loc].split()[0].upper()\n", " if ch_name in main_characters:\n", " ch_name = ch_name\n", " else:\n", " ch_name = \"OTHER\"\n", " script_with_context += ch_name + line[column_loc:] + NEWLINE_REPLACEMENT\n", "scripts_with_context[9][8] = script_with_context" ], "metadata": { "id": "ffQnmIogbtPc" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "script = str(script_raw).replace(\"

\", \"\").replace(\"

\", \"\").replace(\"

\", \"\\n\").replace(\"
\", \" \").replace(\"
\", \"\").replace(\"
\", \"\")\n", "script = script.replace(\"\", \"\").replace(\"\", \"\")\n", "script = script.replace(\"\", \"\").replace(\"\", \"\").replace(\"{\", \"(\")\n", "script = re.sub('\\r\\n', '\\n', script)\n", "script = re.sub('\\n +', '\\n', script)\n", "script = re.sub(r'\\[(.*?)\\]', '', script)\n", "script = re.sub(r'\\(.*?\\)', '', script)\n", "script = re.sub('\\n\\n', '\\n', script)\n", "script = re.sub('DELIVERY GUY', '\\nDELIVERY GUY', script)\n", "\n", "current_script_with_context = ''\n", "\n", "for line in script.split('\\n'):\n", " if line in ('', '\\n') or line.find(']') > -1:\n", " continue\n", " tag = line.find('[')\n", " if len(line) == 1:\n", " print(line)\n", " if tag > - 1:\n", " current_script_with_context += line[:tag] + '\\n'\n", " elif (line[0].isalpha() and line[0].islower()) and (line[1].islower() or line[1].isdigit() or line[1] == ' '):\n", " current_script_with_context = current_script_with_context[:-1] + line\n", " else:\n", " current_script_with_context += line + '\\n'\n", "current_script_with_context = re.sub('\\n\\n', '\\n', current_script_with_context)\n", "current_script_with_context = re.sub('\\n \\n', '\\n', current_script_with_context)\n", "current_script_with_context = current_script_with_context.strip()" ], "metadata": { "id": "nrTlpRJKb7Tq" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "# Check results" ], "metadata": { "id": "qy3ZyNv5cT4U" } }, { "cell_type": "code", "source": [ "!mkdir \"english\"" ], "metadata": { "id": "lKVQ7DcPiml2" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "try:\n", " os.mkdir('english', exist=True)\n", "except:\n", " pass\n", "\n", "for season, script in scripts_with_context.items():\n", " for episode, lines in script.items():\n", " try:\n", " os.mkdir(f'english/{season}')\n", " except:\n", " pass\n", " with open(f'english/{season}/{episode}.txt', \"w\") as text_file:\n", " text_file.write(lines.replace(NEWLINE_REPLACEMENT, '\\n'))" ], "metadata": { "id": "HeRrVqYHfzdg" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "!tar -czvf scripts.tar.gz english/" ], "metadata": { "id": "1ml0Q_SqiqVx" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Check the length of the seasons and episodes" ], "metadata": { "id": "NF9fmXwIPi_n" } }, { "cell_type": "code", "source": [ "episode_length = [] # to histplot\n", "season_length = {} # to barplot\n", "chars_sentence = {name : 0 for name in main_characters}\n", "chars = []\n", "texts = []\n", "\n", "for season in scripts_with_context:\n", " season_length[season] = 0\n", " for episode in tqdm(scripts_with_context[season], desc=f\"Season {season}: \"):\n", " e_length = 0\n", " with open(f'english/{season}/{episode}.txt', \"r\") as text_file:\n", " for line in text_file:\n", " char, text = line.split(\":\", 1)\n", " chars.append(char)\n", " texts.append(text.strip())\n", "\n", " # chars_sentence[char] += len(texts.split(\".\"))\n", "\n", " season_length[season] += 1\n", " e_length += 1\n", "\n", " episode_length.append(e_length)\n", "\n", "df = pd.DataFrame({'Characters': chars, 'Texts': texts})\n", "df.to_csv(\"transcription.csv\", index=False)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "ILGND9ovPTK2", "outputId": "35715939-a8ac-4599-a6e7-44d0d7693106" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "Season 1: 100%|██████████| 24/24 [00:00<00:00, 917.00it/s]\n", "Season 2: 100%|██████████| 23/23 [00:00<00:00, 934.87it/s]\n", "Season 3: 100%|██████████| 25/25 [00:00<00:00, 824.33it/s]\n", "Season 4: 100%|██████████| 23/23 [00:00<00:00, 841.29it/s]\n", "Season 5: 100%|██████████| 23/23 [00:00<00:00, 476.16it/s]\n", "Season 6: 100%|██████████| 23/23 [00:00<00:00, 606.84it/s]\n", "Season 7: 100%|██████████| 23/23 [00:00<00:00, 466.46it/s]\n", "Season 8: 100%|██████████| 23/23 [00:00<00:00, 389.72it/s]\n", "Season 9: 100%|██████████| 23/23 [00:00<00:00, 613.41it/s]\n", "Season 10: 100%|██████████| 17/17 [00:00<00:00, 782.33it/s]\n" ] } ] }, { "cell_type": "markdown", "source": [ "Length of the transcripts during season" ], "metadata": { "id": "ZmUqHuXETWmn" } }, { "cell_type": "code", "source": [ "sns.histplot(episode_length)\n", "plt.xlabel(\"Length of episodes\");\n", "plt.ylabel(\"Frequency\");\n", "plt.title(\"Number of replicas in episode\");\n", "plt.yticks(np.arange(0,60,5));\n", "plt.grid(True)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 472 }, "id": "IXnffER4Tll5", "outputId": "ce2d2f8a-8dc2-4bdf-be2b-e5254845dae8" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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c0PXrl2rfY2ysjLcvn1ba8zf3x/29vZSv5GRkbCyssKHH36oVceGDRtQWFiIQYMGAQC6desGNzc3rFmzRus7hTZt2qQTFkeMGIErV65g/fr1OjXdunXLYN+NROaFR2TokfLPf/4TX3zxBdLS0tC+fXutdS+++CIWL16MF198Ed26dcPhw4el/3JtDM7OzggNDcWECROQm5uLFStWoHXr1pg0aRKAu1+k9sknn2DAgAFo3749JkyYgMceewxXrlzBwYMH4eDggF27dun12m+88Qa++uorDBgwAK+88gqcnZ3x2Wef4cKFC/j6668N/uVtK1euRGhoKDp27IhJkyahVatWyM3NxZEjR3D58mWcOnVKa/vy8nJERERgxIgRSEtLw6pVqxAaGoqnn366Qa/74YcfIjQ0FE888QQmT54MPz8/XLx4Ed9//z1SUlIAAH//+9/xxRdfwNHREe3atcORI0ewb98+uLi4aM3Vrl07hIeHo2vXrnB2dsbx48exfft2TJs27YHem4by9/fHggULMHfuXFy8eBFDhw6Fvb09Lly4gJ07d2Ly5Mla38Ls5eWFJUuW4OLFi2jTpg3+85//ICUlBevWravxm3zPnTsnvf/t2rWDpaUldu7cidzcXDz33HMA7gbFuXPnIj4+Hv3798fTTz8t7asnn3xSupBZqVRiwYIFeOmll9CnTx88++yzuHDhAjZu3Khzjczzzz+PrVu3YsqUKTh48CB69uyJiooK/Pnnn9i6dSv27t2Lbt26NdI7S7JlnJuliBrXvbdf32/cuHECgNbt10LcvQ134sSJwtHRUdjb24sRI0aIvLy8Gm+/vnbtms68TZs21Xm9+2/1rrod96uvvhJz584V7u7uwsbGRgwaNEjnNmEhhDh58qQYPny4cHFxESqVSvj6+ooRI0aI/fv311lTbTIzM8U//vEP4eTkJKytrUVwcLD473//q7MdGnj7dU237GZmZoqxY8cKDw8PoVQqxWOPPSb+/ve/i+3bt0vbVO23pKQkMXnyZNGsWTNhZ2cnRo8eLW7cuKE1X31uvxZCiDNnzohhw4ZJfQYGBop58+ZJ6/Pz88WECROEq6ursLOzE/369RN//vmn8PX11bptfsGCBSI4OFg4OTkJGxsbERQUJBYuXKh1m3h1arr9+v7PnxB3P0O+vr61zlfl66+/FqGhoaJp06aiadOmIigoSMTExIi0tDSd1zl+/LgICQkR1tbWwtfXV3z88cdac93/3l2/fl3ExMSIoKAg0bRpU+Ho6Ci6d+8utm7dqlPHxx9/LIKCgoRSqRTNmzcXU6dOFfn5+TrbrVq1Svj5+QmVSiW6desmDh8+rLMPhbh7u/aSJUtE+/bthUqlEs2aNRNdu3YV8fHxorCwsF7vDT1aFELocRUiEVEj2LRpEyZMmIBjx47xv7wNIDw8HNevX6/zOiEiOeM1MkRERCRbDDJEREQkWwwyREREJFtGDTJVv9h77yMoKEhaHx4errO+vl/BTkTyM378eAgheH2MgRw6dIjXx5DZM/rt1+3bt8e+ffukZUtL7ZImTZqEd955R1qu+iVaIiIiIqMHGUtLS3h4eNS43tbWttb1RERE9OgyepBJT0+Hl5cXrK2tERISgkWLFmn9GN+XX36JzZs3w8PDA4MHD8a8efNqPSqjVqu1vmmzsrISN2/ehIuLC7/ymoiISCaEECguLoaXl1etX9Jp1O+R2b17N0pKShAYGIjs7GzEx8fjypUrOHPmDOzt7bFu3Tr4+vrCy8sLqampmDNnDoKDg7Fjx44a54yLi0N8fPxD7IKIiIgay6VLl+Dt7V3jepP6QryCggL4+vpi+fLlmDhxos76AwcOICIiAhkZGdIP6t3v/iMyhYWFaNGiBS5cuAB7e3uD1KnRaHDw4EH07t27xq/4ljv2aB7Yo3lgj+aBPTZMcXEx/Pz8UFBQAEdHxxq3M/qppXs5OTmhTZs2yMjIqHZ99+7dAaDWIKNSqaBSqXTGnZ2d4eDgYJA6NRoNbG1t4eLiYtYfRvYof+zRPLBH88AeG6bq+XVdFmJS3yNTUlKCzMxMeHp6Vru+6kfealpPREREjxajHpGZPXs2Bg8eDF9fX1y9ehXz589HkyZNMHLkSGRmZiIhIQEDBw6Ei4sLUlNTMWvWLISFhaFTp07GLJuIiIhMhFGDzOXLlzFy5EjcuHEDbm5uCA0NxdGjR+Hm5obbt29j3759WLFiBUpLS+Hj44Po6Gi89dZbxiyZiIiITIhRg8yWLVtqXOfj44OkpKSHWA0RERHJjUldI0NERETUEAwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkW0YNMnFxcVAoFFqPoKAgaf3t27cRExMDFxcX2NnZITo6Grm5uUasmIiIiEyJ0Y/ItG/fHtnZ2dLj559/ltbNmjULu3btwrZt25CUlISrV69i+PDhRqyWiIiITIml0QuwtISHh4fOeGFhITZs2ICEhAT06dMHALBx40a0bdsWR48exVNPPfWwSyUiIiITY/QjMunp6fDy8kKrVq0wevRoZGVlAQCSk5Oh0WgQGRkpbRsUFIQWLVrgyJEjxiqXiIiITIhRj8h0794dmzZtQmBgILKzsxEfH4+//e1vOHPmDHJycmBlZQUnJyet5zRv3hw5OTk1zqlWq6FWq6XloqIiAIBGo4FGozFI3VXzGGo+U8QezQN7NA/s0TywR/3mqotCCCEe+NUMpKCgAL6+vli+fDlsbGwwYcIErVACAMHBwejduzeWLFlS7RxxcXGIj4/XGU9ISICtrW2j1E1ERESGVVZWhlGjRqGwsBAODg41bmf0a2Tu5eTkhDZt2iAjIwNRUVEoLy9HQUGB1lGZ3Nzcaq+pqTJ37lzExsZKy0VFRfDx8UHfvn1rfSMaQqPRIDExEVFRUVAqlQaZ09SwR/PAHs0DezQP7LFhqs6o1MWkgkxJSQkyMzPx/PPPo2vXrlAqldi/fz+io6MBAGlpacjKykJISEiNc6hUKqhUKp1xpVJp8A9OY8xpatijeWCP5oE9mgf2WP856sOoQWb27NkYPHgwfH19cfXqVcyfPx9NmjTByJEj4ejoiIkTJyI2NhbOzs5wcHDA9OnTERISwjuWiIiICICRg8zly5cxcuRI3LhxA25ubggNDcXRo0fh5uYGAHj//fdhYWGB6OhoqNVq9OvXD6tWrTJmyURERGRCjBpktmzZUut6a2trrFy5EitXrnxIFREREZGcGP17ZIiIiIj0xSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREsmUyQWbx4sVQKBSYOXOmNBYeHg6FQqH1mDJlivGKJCIiIpNiaewCAODYsWNYu3YtOnXqpLNu0qRJeOedd6RlW1vbh1kaERERmTCjH5EpKSnB6NGjsX79ejRr1kxnva2tLTw8PKSHg4ODEaokIiIiU2T0IzIxMTEYNGgQIiMjsWDBAp31X375JTZv3gwPDw8MHjwY8+bNq/WojFqthlqtlpaLiooAABqNBhqNxiA1V81jqPlMEXs0D+zRPLBH88Ae9ZurLgohhHjgV9PTli1bsHDhQhw7dgzW1tYIDw9Hly5dsGLFCgDAunXr4OvrCy8vL6SmpmLOnDkIDg7Gjh07apwzLi4O8fHxOuMJCQk8LUVERCQTZWVlGDVqFAoLC2s9G2O0IHPp0iV069YNiYmJ0rUx9weZ+x04cAARERHIyMiAv79/tdtUd0TGx8cH169fN9hpKY1Gg8TERERFRUGpVBpkTlPDHs0DezQP7NE8sMeGKSoqgqura51BxminlpKTk5GXl4cnnnhCGquoqMDhw4fx8ccfQ61Wo0mTJlrP6d69OwDUGmRUKhVUKpXOuFKpNPgHpzHmNDXs0TywR/PAHs0De6z/HPVhtCATERGB06dPa41NmDABQUFBmDNnjk6IAYCUlBQAgKen58MokYiIiEyc0YKMvb09OnTooDXWtGlTuLi4oEOHDsjMzERCQgIGDhwIFxcXpKamYtasWQgLC6v2Nm0iIiJ69Bj9rqWaWFlZYd++fVixYgVKS0vh4+OD6OhovPXWW8YujYiIiEyESQWZQ4cOSX/28fFBUlKS8YohIiIik2f0L8QjIiIi0heDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREcmWyQSZxYsXQ6FQYObMmdLY7du3ERMTAxcXF9jZ2SE6Ohq5ubnGK5KIiIhMikkEmWPHjmHt2rXo1KmT1visWbOwa9cubNu2DUlJSbh69SqGDx9upCqJiIjI1Bg9yJSUlGD06NFYv349mjVrJo0XFhZiw4YNWL58Ofr06YOuXbti48aN+PXXX3H06FEjVkxERESmwtLYBcTExGDQoEGIjIzEggULpPHk5GRoNBpERkZKY0FBQWjRogWOHDmCp556qtr51Go11Gq1tFxUVAQA0Gg00Gg0Bqm5ah5DzWeK2KN5YI/mgT2aB/ao31x1MWqQ2bJlC06cOIFjx47prMvJyYGVlRWcnJy0xps3b46cnJwa51y0aBHi4+N1xn/88UfY2to+cM33SkxMNOh8pog9mgf2aB7Yo3lgj/VTVlZWr+2MFmQuXbqEGTNmIDExEdbW1gabd+7cuYiNjZWWi4qK4OPjg759+8LBwcEgr6HRaJCYmIioqCgolUqDzGlq2KN5YI/mgT2aB/bYMFVnVOpitCCTnJyMvLw8PPHEE9JYRUUFDh8+jI8//hh79+5FeXk5CgoKtI7K5ObmwsPDo8Z5VSoVVCqVzrhSqTT4B6cx5jQ17NE8sEfzwB7NA3us/xz1YbQgExERgdOnT2uNTZgwAUFBQZgzZw58fHygVCqxf/9+REdHAwDS0tKQlZWFkJAQY5RMREREJsZoQcbe3h4dOnTQGmvatClcXFyk8YkTJyI2NhbOzs5wcHDA9OnTERISUuOFvkRERPRoMfpdS7V5//33YWFhgejoaKjVavTr1w+rVq0ydllERERkIkwqyBw6dEhr2draGitXrsTKlSuNUxARERGZNKN/IR4RERGRvhhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhItowaZFavXo1OnTrBwcEBDg4OCAkJwe7du6X14eHhUCgUWo8pU6YYsWIiIiIyJZbGfHFvb28sXrwYAQEBEELgs88+w5AhQ3Dy5Em0b98eADBp0iS888470nNsbW2NVS4RERGZGKMGmcGDB2stL1y4EKtXr8bRo0elIGNrawsPDw9jlEdEREQmzmSukamoqMCWLVtQWlqKkJAQafzLL7+Eq6srOnTogLlz56KsrMyIVRIREZEpMeoRGQA4ffo0QkJCcPv2bdjZ2WHnzp1o164dAGDUqFHw9fWFl5cXUlNTMWfOHKSlpWHHjh01zqdWq6FWq6XloqIiAIBGo4FGozFIzVXzGGo+U8QezQN7NA/s0TywR/3mqotCCCEe+NUeQHl5ObKyslBYWIjt27fjk08+QVJSkhRm7nXgwAFEREQgIyMD/v7+1c4XFxeH+Ph4nfGEhAReX0NERCQTZWVlGDVqFAoLC+Hg4FDjdkYPMveLjIyEv78/1q5dq7OutLQUdnZ22LNnD/r161ft86s7IuPj44Pr16/X+kY0hEajQWJiIqKioqBUKg0yp6lhj+aBPZoH9mge2GPDFBUVwdXVtc4gY/RTS/errKzUCiL3SklJAQB4enrW+HyVSgWVSqUzrlQqDf7BaYw5TQ17NA/s0TywR/PAHus/R30YNcjMnTsXAwYMQIsWLVBcXIyEhAQcOnQIe/fuRWZmJhISEjBw4EC4uLggNTUVs2bNQlhYGDp16mTMsomIiMhEGDXI5OXlYezYscjOzoajoyM6deqEvXv3IioqCpcuXcK+ffuwYsUKlJaWwsfHB9HR0XjrrbeMWTIRERGZEKMGmQ0bNtS4zsfHB0lJSQ+xGiIiIpIbk/keGSIiIqKGYpAhIiIi2WKQISIiItlikCEiIiLZYpAhIiIi2WKQISIiItlikCEiIiLZYpAhIiIi2WKQISIiItlikCEiIiLZYpAhIiIi2dIryJw/f97QdRARERE1mF5BpnXr1ujduzc2b96M27dvG7omIiIionrRK8icOHECnTp1QmxsLDw8PPDSSy/hf//7n6FrIyIiIqqVXkGmS5cu+OCDD3D16lV8+umnyM7ORmhoKDp06IDly5fj2rVrhq6TiIiISMcDXexraWmJ4cOHY9u2bViyZAkyMjIwe/Zs+Pj4YOzYscjOzjZUnUREREQ6HijIHD9+HC+//DI8PT2xfPlyzJ49G5mZmUhMTMTVq1cxZMgQQ9VJREREpMNSnyctX74cGzduRFpaGgYOHIjPP/8cAwcOhIXF3Vzk5+eHTZs2oWXLloaslYiIiEiLXkFm9erVeOGFFzB+/Hh4enpWu427uzs2bNjwQMURERER1UavIJOenl7nNlZWVhg3bpw+0xMRERHVi17XyGzcuBHbtm3TGd+2bRs+++yzBy6KiIiIqD70CjKLFi2Cq6urzri7uzv+9a9/PXBRRERERPWhV5DJysqCn5+fzrivry+ysrIeuCgiIiKi+tAryLi7uyM1NVVn/NSpU3Bxcan3PKtXr0anTp3g4OAABwcHhISEYPfu3dL627dvIyYmBi4uLrCzs0N0dDRyc3P1KZmIiIjMkF5BZuTIkXjllVdw8OBBVFRUoKKiAgcOHMCMGTPw3HPP1Xseb29vLF68GMnJyTh+/Dj69OmDIUOG4PfffwcAzJo1C7t27cK2bduQlJSEq1evYvjw4fqUTERERGZIr7uW3n33XVy8eBERERGwtLw7RWVlJcaOHduga2QGDx6stbxw4UKsXr0aR48ehbe3NzZs2ICEhAT06dMHwN2LjNu2bYujR4/iqaee0qd0IiIiMiN6BRkrKyv85z//wbvvvotTp07BxsYGHTt2hK+vr96FVFRUYNu2bSgtLUVISAiSk5Oh0WgQGRkpbRMUFIQWLVrgyJEjNQYZtVoNtVotLRcVFQEANBoNNBqN3vXdq2oeQ81nitijeWCP5oE9mgf2qN9cdVEIIcQDv9oDOH36NEJCQnD79m3Y2dkhISEBAwcOREJCAiZMmKAVSgAgODgYvXv3xpIlS6qdLy4uDvHx8TrjCQkJsLW1bZQeiIiIyLDKysowatQoFBYWwsHBocbt9DoiU1FRgU2bNmH//v3Iy8tDZWWl1voDBw7Ue67AwECkpKSgsLAQ27dvx7hx45CUlKRPWQCAuXPnIjY2VlouKiqCj48P+vbtW+sb0RAajQaJiYmIioqCUqk0yJymhj2aB/ZoHtijeWCPDVN1RqUuegWZGTNmYNOmTRg0aBA6dOgAhUKhzzQA7p6mat26NQCga9euOHbsGD744AM8++yzKC8vR0FBAZycnKTtc3Nz4eHhUeN8KpUKKpVKZ1ypVBr8g9MYc5oa9mge2KN5YI/mgT3Wf4760CvIbNmyBVu3bsXAgQP1eXqtKisroVar0bVrVyiVSuzfvx/R0dEAgLS0NGRlZSEkJMTgr0tERETyo/fFvlVHUR7E3LlzMWDAALRo0QLFxcVISEjAoUOHsHfvXjg6OmLixImIjY2Fs7MzHBwcMH36dISEhPCOJSIiIgKgZ5B59dVX8cEHH+Djjz9+oNNKeXl5GDt2LLKzs+Ho6IhOnTph7969iIqKAgC8//77sLCwQHR0NNRqNfr164dVq1bp/XpERERkXvQKMj///DMOHjyI3bt3o3379jrnsXbs2FGveTZs2FDremtra6xcuRIrV67Up0wiIiIyc3oFGScnJwwbNszQtRARERE1iF5BZuPGjYaug4iIiKjB9PqtJQC4c+cO9u3bh7Vr16K4uBgAcPXqVZSUlBisOCIiIqLa6HVE5q+//kL//v2RlZUFtVqNqKgo2NvbY8mSJVCr1VizZo2h6yQiIiLSodcRmRkzZqBbt27Iz8+HjY2NND5s2DDs37/fYMURERER1UavIzI//fQTfv31V1hZWWmNt2zZEleuXDFIYURERER10euITGVlJSoqKnTGL1++DHt7+wcuioiIiKg+9Aoyffv2xYoVK6RlhUKBkpISzJ8/v1F+toCIiIioOnqdWlq2bBn69euHdu3a4fbt2xg1ahTS09Ph6uqKr776ytA1EhEREVVLryDj7e2NU6dOYcuWLUhNTUVJSQkmTpyI0aNHa138S0RERNSY9AoyAGBpaYkxY8YYshYiIiKiBtEryHz++ee1rh87dqxexRARERE1hF5BZsaMGVrLGo0GZWVlsLKygq2tLYMMERERPRR63bWUn5+v9SgpKUFaWhpCQ0N5sS8RERE9NHr/1tL9AgICsHjxYp2jNURERESNxWBBBrh7AfDVq1cNOSURERFRjfS6Rua7777TWhZCIDs7Gx9//DF69uxpkMKIiIiI6qJXkBk6dKjWskKhgJubG/r06YNly5YZoi4iIiKiOukVZCorKw1dBxEREVGDGfQaGSIiIqKHSa8jMrGxsfXedvny5fq8BBEREVGd9AoyJ0+exMmTJ6HRaBAYGAgAOHfuHJo0aYInnnhC2k6hUBimSiIiIqJq6HVqafDgwQgLC8Ply5dx4sQJnDhxApcuXULv3r3x97//HQcPHsTBgwdx4MCBWudZtGgRnnzySdjb28Pd3R1Dhw5FWlqa1jbh4eFQKBRajylTpuhTNhEREZkZvYLMsmXLsGjRIjRr1kwaa9asGRYsWNCgu5aSkpIQExODo0ePIjExERqNBn379kVpaanWdpMmTUJ2drb0WLp0qT5lExERkZnR69RSUVERrl27pjN+7do1FBcX13uePXv2aC1v2rQJ7u7uSE5ORlhYmDRua2sLDw8PfUolIiIiM6bXEZlhw4ZhwoQJ2LFjBy5fvozLly/j66+/xsSJEzF8+HC9iyksLAQAODs7a41/+eWXcHV1RYcOHTB37lyUlZXp/RpERERkPvQ6IrNmzRrMnj0bo0aNgkajuTuRpSUmTpyI9957T69CKisrMXPmTPTs2RMdOnSQxkeNGgVfX194eXkhNTUVc+bMQVpaGnbs2FHtPGq1Gmq1WlouKioCcPcXuqtqfVBV8xhqPlPEHs0DezQP7NE8sEf95qqLQggh9H2R0tJSZGZmAgD8/f3RtGlTfafC1KlTsXv3bvz888/w9vaucbsDBw4gIiICGRkZ8Pf311kfFxeH+Ph4nfGEhATY2trqXR8RERE9PGVlZRg1ahQKCwvh4OBQ43YPFGQyMjKQmZmJsLAw2NjYQAih1y3X06ZNw7fffovDhw/Dz8+v1m1LS0thZ2eHPXv2oF+/fjrrqzsi4+Pjg+vXr9f6RjSERqNBYmIioqKioFQqDTKnqWGP5oE9mgf2aB7YY8MUFRXB1dW1ziCj16mlGzduYMSIETh48CAUCgXS09PRqlUrTJw4Ec2aNav3nUtCCEyfPh07d+7EoUOH6gwxAJCSkgIA8PT0rHa9SqWCSqXSGVcqlQb/4DTGnKaGPZoH9mge2KN5YI/1n6M+9LrYd9asWVAqlcjKytI6XfPss8/q3IlUm5iYGGzevBkJCQmwt7dHTk4OcnJycOvWLQBAZmYm3n33XSQnJ+PixYv47rvvMHbsWISFhaFTp076lE5ERERmRK8jMj/++CP27t2rcy1LQEAA/vrrr3rPs3r1agB3v/TuXhs3bsT48eNhZWWFffv2YcWKFSgtLYWPjw+io6Px1ltv6VM2ERERmRm9gkxpaWm1F87evHmz2tM6Nanr8hwfHx8kJSU1uD4iIiJ6NOh1aulvf/sbPv/8c2lZoVCgsrISS5cuRe/evQ1WHBEREVFt9Dois3TpUkREROD48eMoLy/H66+/jt9//x03b97EL7/8YugaiYiIiKql1xGZDh064Ny5cwgNDcWQIUNQWlqK4cOH4+TJk9V+twsRERFRY2jwERmNRoP+/ftjzZo1+Oc//9kYNRERERHVS4OPyCiVSqSmpjZGLUREREQNoteppTFjxmDDhg2GroWIiIioQfS62PfOnTv49NNPsW/fPnTt2lXnN5aWL19ukOKIiIiIatOgIHP+/Hm0bNkSZ86cwRNPPAEAOHfunNY2+vzWEhEREZE+GhRkAgICkJ2djYMHDwK4+5MEH374IZo3b94oxRERERHVpkHXyNz/Tby7d+9GaWmpQQsiIiIiqi+9LvatUtdPDBARERE1pgYFGYVCoXMNDK+JISIiImNp0DUyQgiMHz9e+mHI27dvY8qUKTp3Le3YscNwFRIRERHVoEFBZty4cVrLY8aMMWgxRERERA3RoCCzcePGxqqDiIiIqMEe6GJfIiIiImNikCEiIiLZYpAhIiIi2WKQISIiItlikCEiIiLZYpAhIiIi2WKQISIiItlikCEiIiLZMmqQWbRoEZ588knY29vD3d0dQ4cORVpamtY2t2/fRkxMDFxcXGBnZ4fo6Gjk5uYaqWIiIiIyJUYNMklJSYiJicHRo0eRmJgIjUaDvn37orS0VNpm1qxZ2LVrF7Zt24akpCRcvXoVw4cPN2LVREREZCoa9BMFhrZnzx6t5U2bNsHd3R3JyckICwtDYWEhNmzYgISEBPTp0wfA3Z9JaNu2LY4ePYqnnnrKGGUTERGRiTBqkLlfYWEhAMDZ2RkAkJycDI1Gg8jISGmboKAgtGjRAkeOHKk2yKjVaqjVamm5qKgIAKDRaKDRaAxSZ9U8hprPFLFH88AezQN7NA/sUb+56qIQQogHfjUDqKysxNNPP42CggL8/PPPAICEhARMmDBBK5gAQHBwMHr37o0lS5bozBMXF4f4+Hid8YSEBNja2jZO8URERGRQZWVlGDVqFAoLC+Hg4FDjdiZzRCYmJgZnzpyRQoy+5s6di9jYWGm5qKgIPj4+6Nu3b61vRENoNBokJiYiKioKSqXSIHOaGvZoHtijeWCP5oE9NkzVGZW6mESQmTZtGv773//i8OHD8Pb2lsY9PDxQXl6OgoICODk5SeO5ubnw8PCodi6VSgWVSqUzrlQqDf7BaYw5TQ17NA/s0TywR/PAHus/R30Y9a4lIQSmTZuGnTt34sCBA/Dz89Na37VrVyiVSuzfv18aS0tLQ1ZWFkJCQh52uURERGRijHpEJiYmBgkJCfj2229hb2+PnJwcAICjoyNsbGzg6OiIiRMnIjY2Fs7OznBwcMD06dMREhLCO5aIiIjIuEFm9erVAIDw8HCt8Y0bN2L8+PEAgPfffx8WFhaIjo6GWq1Gv379sGrVqodcKREREZkiowaZ+twwZW1tjZUrV2LlypUPoSIiIiKSE/7WEhEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJllGDzOHDhzF48GB4eXlBoVDgm2++0Vo/fvx4KBQKrUf//v2NUywRERGZHKMGmdLSUnTu3BkrV66scZv+/fsjOztbenz11VcPsUIiIiIyZZbGfPEBAwZgwIABtW6jUqng4eHxkCoiIiIiOTFqkKmPQ4cOwd3dHc2aNUOfPn2wYMECuLi41Li9Wq2GWq2WlouKigAAGo0GGo3GIDVVzWOo+UwRezQP7NE8sEfzwB71m6suCiGEeOBXMwCFQoGdO3di6NCh0tiWLVtga2sLPz8/ZGZm4s0334SdnR2OHDmCJk2aVDtPXFwc4uPjdcYTEhJga2vbWOUTERGRAZWVlWHUqFEoLCyEg4NDjduZdJC53/nz5+Hv7499+/YhIiKi2m2qOyLj4+OD69ev1/pGNIRGo0FiYiKioqKgVCoNMqepYY/mgT2aB/ZoHthjwxQVFcHV1bXOIGPyp5bu1apVK7i6uiIjI6PGIKNSqaBSqXTGlUqlwT84jTGnqWGP5oE9mgf2aB7YY/3nqA9ZfY/M5cuXcePGDXh6ehq7FCIiIjIBRj0iU1JSgoyMDGn5woULSElJgbOzM5ydnREfH4/o6Gh4eHggMzMTr7/+Olq3bo1+/foZsWoiIiIyFUYNMsePH0fv3r2l5djYWADAuHHjsHr1aqSmpuKzzz5DQUEBvLy80LdvX7z77rvVnjoiIiKiR49Rg0x4eDhqu9Z47969D7EaIiIikhtZXSNDREREdC8GGSIiIpItBhkiIiKSLQYZIiIiki0GGSIiIpItBhkiIiKSLQYZIiIiki0GGSIiIpItBhkiIiKSLQYZIiIiki0GGSIiIpItBhkiIiKSLQYZIiIiki0GGSIiIpItBhkiIiKSLQYZIiIiki0GGSIiIpItBhkiIiKSLQYZIiIiki0GGSIiIpItBhkiIiKSLQYZIiIiki2jBpnDhw9j8ODB8PLygkKhwDfffKO1XgiBt99+G56enrCxsUFkZCTS09ONUywRERGZHKMGmdLSUnTu3BkrV66sdv3SpUvx4YcfYs2aNfjtt9/QtGlT9OvXD7dv337IlRIREZEpsjTmiw8YMAADBgyodp0QAitWrMBbb72FIUOGAAA+//xzNG/eHN988w2ee+65h1kqERERmSCTvUbmwoULyMnJQWRkpDTm6OiI7t2748iRI0asjIiIiEyFUY/I1CYnJwcA0Lx5c63x5s2bS+uqo1aroVarpeWioiIAgEajgUajMUhtVfMYaj5TxB7NA3s0D+zRPLBH/eaqi8kGGX0tWrQI8fHxOuM//vgjbG1tDfpaiYmJBp3PFLFH88AezQN7NA/ssX7KysrqtZ3JBhkPDw8AQG5uLjw9PaXx3NxcdOnSpcbnzZ07F7GxsdJyUVERfHx80LdvXzg4OBikNo1Gg8TERERFRUGpVBpkTlPDHs0DezQP7NE8sMeGqTqjUheTDTJ+fn7w8PDA/v37peBSVFSE3377DVOnTq3xeSqVCiqVSmdcqVQa/IPTGHOaGvZoHtijeWCP5oE91n+O+jBqkCkpKUFGRoa0fOHCBaSkpMDZ2RktWrTAzJkzsWDBAgQEBMDPzw/z5s2Dl5cXhg4daryiiYiIyGQYNcgcP34cvXv3lparTgmNGzcOmzZtwuuvv47S0lJMnjwZBQUFCA0NxZ49e2BtbW2skomIiMiEGDXIhIeHQwhR43qFQoF33nkH77zzzkOsioiIiOTCZL9HhoiIiKguDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWwwyREREJFsMMkRERCRbDDJEREQkWyYdZOLi4qBQKLQeQUFBxi6LiIiITISlsQuoS/v27bFv3z5p2dLS5EsmIiKih8TkU4GlpSU8PDyMXQYRERGZIJMPMunp6fDy8oK1tTVCQkKwaNEitGjRosbt1Wo11Gq1tFxUVAQA0Gg00Gg0Bqmpah5DzWeK2KN5YI/mgT3q5/Lly7hx44bB5ntQlZWVAICTJ0/CwsKkr+xoEBcXF3h7ewMw7H6s7xwKIYR44FdrJLt370ZJSQkCAwORnZ2N+Ph4XLlyBWfOnIG9vX21z4mLi0N8fLzOeEJCAmxtbRu7ZCIiIjKAsrIyjBo1CoWFhXBwcKhxO5MOMvcrKCiAr68vli9fjokTJ1a7TXVHZHx8fHD9+vVa34iG0Gg0SExMRFRUFJRKpUHmNDXs0TywR/PAHhvu1KlTCAsLQ7fn34B985qP4j9MSgtgwuPNsPFkPjSVxq7GMIpzs3D8i8U4fPgwOnfubND9WFRUBFdX1zqDjMmfWrqXk5MT2rRpg4yMjBq3UalUUKlUOuNKpdLg/wA0xpymhj2aB/ZoHthj/VlYWODWrVuwdmsBe+9AA1T24CwVlQCuw+6xANwR5nFqSVMJ3Lp1CxYWFlr7zRD7sb7Pl9U7WVJSgszMTHh6ehq7FCIiIjIBJh1kZs+ejaSkJFy8eBG//vorhg0bhiZNmmDkyJHGLo2IiIhMgEmfWrp8+TJGjhyJGzduwM3NDaGhoTh69Cjc3NyMXRoRERGZAJMOMlu2bDF2CURERGTCTPrUEhEREVFtGGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLYYZIiIiEi2GGSIiIhIthhkiIiISLZM+kcjTd3ly5eRn59v7DIaRWVlJQDg1KlTsLAwft51dXVFixYtjF0GkUFkZWXh+vXr9d7e1P4+NgZD93j27NkHnoPkgUHmAXTr9iRu3rxh7DIahY2NDb766iuEhYXh1q1bxi4HNja2+PPPswwzJHtZWVkICmqLW7fK6v0cU/v72Bgaq0eNutxgc5FpYpB5ALdulaH7C/Ph4NnS2KUYnPL//oOo9+xV0FQat5ai7Iv47dN4XL9+nUGGZO/69esN/rfDlP4+NhZD95h9+gjOfLcOd+7cefDJyKQxyDwgB8+WcG4RaOwyDM5SUQngOpr5BOCOMM9D2UTG1JB/Ox6Fv4+G7rEo++IDz0HyYJ5/I4iIiOiRwCBDREREssUgQ0RERLLFa2RINgx9OyVvadXF29yJSG4YZMjk3Sq8AUCBMWPGGHRe3tJa3fa8zZ2I5IVBhkyepqwYgECXUXPg5hdksHl5S6s23uZORHIkiyCzcuVKvPfee8jJyUHnzp3x0UcfITg42Nhl0UNm597CoLe685ZWIiL5M/l/2f7zn/8gNjYW8+fPx4kTJ9C5c2f069cPeXl5xi6NiIiIjMzkg8zy5csxadIkTJgwAe3atcOaNWtga2uLTz/91NilERERkZGZdJApLy9HcnIyIiMjpTELCwtERkbiyJEjRqyMiIiITIFJXyNz/fp1VFRUoHnz5lrjzZs3x59//lntc9RqNdRqtbRcWFgIALh58yY0Go1B6tJoNCgrK4O1tTVKrpwDNOZ3x4vSAiizc0L++VSjXwirvn4F1tbWuJVzHjetFAab15R6bCwN6bEk7xKsra2RnJyMoqKih1OgAVRWVqKsrAw//fSTLG6jT09Pb/C/HfysNlxj/bvxIMxxP1b9u1FUVIQbN25I//9448YNKJXKB5q7uLgYACCEqH1DYcKuXLkiAIhff/1Va/y1114TwcHB1T5n/vz5AgAffPDBBx988GEGj0uXLtWaFUz6iIyrqyuaNGmC3NxcrfHc3Fx4eHhU+5y5c+ciNjZWWq6srMTNmzfh4uIChcIwqbyoqAg+Pj64dOkSHBwcDDKnqWGP5oE9mgf2aB7YY8MIIVBcXAwvL69atzPpIGNlZYWuXbti//79GDp0KIC7wWT//v2YNm1atc9RqVRQqVRaY05OTo1Sn4ODg9l+GKuwR/PAHs0DezQP7LH+HB0d69zGpIMMAMTGxmLcuHHo1q0bgoODsWLFCpSWlmLChAnGLo2IiIiMzOSDzLPPPotr167h7bffRk5ODrp06YI9e/boXABMREREjx6TDzIAMG3atBpPJRmDSqXC/PnzdU5hmRP2aB7Yo3lgj+aBPTYOhRB13ddEREREZJpM/0sXiIiIiGrAIENERESyxSBDREREssUgQ0RERLLFIPN/Fi1ahCeffBL29vZwd3fH0KFDkZaWprXN7du3ERMTAxcXF9jZ2SE6OlrnW4ezsrIwaNAg2Nrawt3dHa+99hru3LnzMFupUX16DA8Ph0Kh0HpMmTJFaxtT7nH16tXo1KmT9GVMISEh2L17t7Re7vsQqLtHue/D6ixevBgKhQIzZ86UxsxhX96ruh7lvi/j4uJ06g8KCpLWm8M+rKtHue/DKleuXMGYMWPg4uICGxsbdOzYEcePH5fWCyHw9ttvw9PTEzY2NoiMjER6errWHDdv3sTo0aPh4OAAJycnTJw4ESUlJQ9enEF+FMkM9OvXT2zcuFGcOXNGpKSkiIEDB4oWLVqIkpISaZspU6YIHx8fsX//fnH8+HHx1FNPiR49ekjr79y5Izp06CAiIyPFyZMnxQ8//CBcXV3F3LlzjdGSjvr02KtXLzFp0iSRnZ0tPQoLC6X1pt7jd999J77//ntx7tw5kZaWJt58802hVCrFmTNnhBDy34dC1N2j3Pfh/f73v/+Jli1bik6dOokZM2ZI4+awL6vU1KPc9+X8+fNF+/btteq/du2atN4c9mFdPcp9HwohxM2bN4Wvr68YP368+O2338T58+fF3r17RUZGhrTN4sWLhaOjo/jmm2/EqVOnxNNPPy38/PzErVu3pG369+8vOnfuLI4ePSp++ukn0bp1azFy5MgHro9BpgZ5eXkCgEhKShJCCFFQUCCUSqXYtm2btM3Zs2cFAHHkyBEhhBA//PCDsLCwEDk5OdI2q1evFg4ODkKtVj/cBurh/h6FuPuX7t5/SO8ntx6FEKJZs2bik08+Mct9WKWqRyHMax8WFxeLgIAAkZiYqNWXOe3LmnoUQv77cv78+aJz587VrjOXfVhbj0LIfx8KIcScOXNEaGhojesrKyuFh4eHeO+996SxgoICoVKpxFdffSWEEOKPP/4QAMSxY8ekbXbv3i0UCoW4cuXKA9XHU0s1KCwsBAA4OzsDAJKTk6HRaBAZGSltExQUhBYtWuDIkSMAgCNHjqBjx45a3zrcr18/FBUV4ffff3+I1dfP/T1W+fLLL+Hq6ooOHTpg7ty5KCsrk9bJqceKigps2bIFpaWlCAkJMct9eH+PVcxlH8bExGDQoEFa+wwwr7+PNfVYRe77Mj09HV5eXmjVqhVGjx6NrKwsAOa1D2vqsYrc9+F3332Hbt264ZlnnoG7uzsef/xxrF+/Xlp/4cIF5OTkaO1LR0dHdO/eXWtfOjk5oVu3btI2kZGRsLCwwG+//fZA9cnim30ftsrKSsycORM9e/ZEhw4dAAA5OTmwsrLS+QHK5s2bIycnR9rm/p9OqFqu2sZUVNcjAIwaNQq+vr7w8vJCamoq5syZg7S0NOzYsQOAPHo8ffo0QkJCcPv2bdjZ2WHnzp1o164dUlJSzGYf1tQjYB77EAC2bNmCEydO4NixYzrrzOXvY209AvLfl927d8emTZsQGBiI7OxsxMfH429/+xvOnDljNvuwth7t7e1lvw8B4Pz581i9ejViY2Px5ptv4tixY3jllVdgZWWFcePGSXVW18e9+9Ld3V1rvaWlJZydnR+4TwaZasTExODMmTP4+eefjV1Ko6mpx8mTJ0t/7tixIzw9PREREYHMzEz4+/s/7DL1EhgYiJSUFBQWFmL79u0YN24ckpKSjF2WQdXUY7t27cxiH166dAkzZsxAYmIirK2tjV1Oo6hPj3LflwMGDJD+3KlTJ3Tv3h2+vr7YunUrbGxsjFiZ4dTW48SJE2W/D4G7/+HbrVs3/Otf/wIAPP744zhz5gzWrFmDcePGGbk63rWkY9q0afjvf/+LgwcPwtvbWxr38PBAeXk5CgoKtLbPzc2Fh4eHtM39V9xXLVdtYwpq6rE63bt3BwBkZGQAkEePVlZWaN26Nbp27YpFixahc+fO+OCDD8xqH9bUY3XkuA+Tk5ORl5eHJ554ApaWlrC0tERSUhI+/PBDWFpaonnz5rLfl3X1WFFRofMcOe7Lezk5OaFNmzbIyMgwq7+P97q3x+rIcR96enpKR3yrtG3bVjqFVlVndX3cuy/z8vK01t+5cwc3b9584D4ZZP6PEALTpk3Dzp07ceDAAfj5+Wmt79q1K5RKJfbv3y+NpaWlISsrS7o2ISQkBKdPn9baWYmJiXBwcND5EBhDXT1WJyUlBcDdDzJg+j1Wp7KyEmq12iz2YU2qeqyOHPdhREQETp8+jZSUFOnRrVs3jB49Wvqz3PdlXT02adJE5zly3Jf3KikpQWZmJjw9Pc327+O9PVZHjvuwZ8+eOl/Vce7cOfj6+gIA/Pz84OHhobUvi4qK8Ntvv2nty4KCAiQnJ0vbHDhwAJWVlVK409sDXSpsRqZOnSocHR3FoUOHtG6TKysrk7aZMmWKaNGihThw4IA4fvy4CAkJESEhIdL6qtvo+vbtK1JSUsSePXuEm5ubydxGV1ePGRkZ4p133hHHjx8XFy5cEN9++61o1aqVCAsLk+Yw9R7feOMNkZSUJC5cuCBSU1PFG2+8IRQKhfjxxx+FEPLfh0LU3qM57MOa3H/3hznsy/vd26M57MtXX31VHDp0SFy4cEH88ssvIjIyUri6uoq8vDwhhHnsw9p6NId9KMTdrwewtLQUCxcuFOnp6eLLL78Utra2YvPmzdI2ixcvFk5OTuLbb78VqampYsiQIdXefv3444+L3377Tfz8888iICCAt18bEoBqHxs3bpS2uXXrlnj55ZdFs2bNhK2trRg2bJjIzs7WmufixYtiwIABwsbGRri6uopXX31VaDSah9xN9erqMSsrS4SFhQlnZ2ehUqlE69atxWuvvab1nQdCmHaPL7zwgvD19RVWVlbCzc1NRERESCFGCPnvQyFq79Ec9mFN7g8y5rAv73dvj+awL5999lnh6ekprKysxGOPPSaeffZZre8eMYd9WFuP5rAPq+zatUt06NBBqFQqERQUJNatW6e1vrKyUsybN080b95cqFQqERERIdLS0rS2uXHjhhg5cqSws7MTDg4OYsKECaK4uPiBa1MIIcSDHdMhIiIiMg5eI0NERESyxSBDREREssUgQ0RERLLFIENERESyxSBDREREssUgQ0RERLLFIENERESyxSBDRI1i/PjxGDp0qMHnzcnJQVRUFJo2barzy8mGdOjQISgUCp3fAjKk8PBwzJw5s9HmJ3oUMMgQyVhjhYWGuHjxIhQKhfQbMo3t/fffR3Z2NlJSUnDu3LlGe50ePXogOzsbjo6OjfYaRPTgLI1dABFRQ2RmZqJr164ICAho1NexsrIymV8fJqKa8YgMkRk7c+YMBgwYADs7OzRv3hzPP/88rl+/Lq0PDw/HK6+8gtdffx3Ozs7w8PBAXFyc1hx//vknQkNDYW1tjXbt2mHfvn1QKBT45ptvAED6FfXHH38cCoUC4eHhWs//97//DU9PT7i4uCAmJgYajabWmlevXg1/f39YWVkhMDAQX3zxhbSuZcuW+Prrr/H5559DoVBg/PjxNc7zySefoG3btrC2tkZQUBBWrVolras6irRlyxb06NED1tbW6NChA5KSkqRt7j+19Ndff2Hw4MFo1qwZmjZtivbt2+OHH36Qtk9KSkJwcDBUKhU8PT3xxhtv4M6dO9L60tJSjB07FnZ2dvD09MSyZct0alar1Zg9ezYee+wxNG3aFN27d8ehQ4ek9XXVQPRIeuBfayIioxk3bpwYMmRItevy8/OlX9E9e/asOHHihIiKihK9e/eWtunVq5dwcHAQcXFx4ty5c+Kzzz7T+rXwO3fuiMDAQBEVFSVSUlLETz/9JIKDgwUAsXPnTiHE3V/GBSD27dsnsrOzxY0bN6TaHBwcxJQpU8TZs2fFrl27hK2trc6Pzd1rx44dQqlUipUrV4q0tDSxbNky0aRJE3HgwAEhhBB5eXmif//+YsSIESI7O1sUFBRUO8/mzZuFp6en+Prrr8X58+fF119/LZydncWmTZuEEEJcuHBBABDe3t5i+/bt4o8//hAvvviisLe3F9evXxdCCHHw4EEBQOTn5wshhBg0aJCIiooSqampIjMzU+zatUskJSUJIYS4fPmysLW1FS+//LI4e/as2Llzp3B1dRXz58+Xapo6dapo0aKF2Ldvn0hNTRV///vfhb29vdYPYb744ouiR48e4vDhwyIjI0O89957QqVSiXPnztVZA9GjikGGSMZqCzLvvvuu6Nu3r9bYpUuXBADpV2l79eolQkNDtbZ58sknxZw5c4QQQuzevVtYWlpq/SJxYmKiVpCpCgUnT57Uqc3X11fcuXNHGnvmmWfEs88+W2M/PXr0EJMmTdIae+aZZ8TAgQOl5SFDhohx48bVOIcQQvj7+4uEhAStsXfffVeEhIRo1bx48WJpvUajEd7e3mLJkiVCCN0g07FjRxEXF1ft67355psiMDBQVFZWSmMrV64UdnZ2oqKiQhQXFwsrKyuxdetWaf2NGzeEjY2NFGT++usv0aRJE3HlyhWtuSMiIsTcuXPrrIHoUcVrZIjM1KlTp3Dw4EHY2dnprMvMzESbNm0AAJ06ddJa5+npiby8PABAWloafHx8tK4VCQ4OrncN7du3R5MmTbTmPn36dI3bnz17FpMnT9Ya69mzJz744IN6v2ZpaSkyMzMxceJETJo0SRq/c+eOzoW7ISEh0p8tLS3RrVs3nD17ttp5X3nlFUydOhU//vgjIiMjER0dLb13Z8+eRUhICBQKhVbdJSUluHz5MvLz81FeXo7u3btL652dnREYGCgtnz59GhUVFdJ+qaJWq+Hi4lJnDUSPKgYZIjNVUlKCwYMHY8mSJTrrPD09pT8rlUqtdQqFApWVlQapoTHnrklJSQkAYP369VrBAYBWqGqoF198Ef369cP333+PH3/8EYsWLcKyZcswffr0B6q3SklJCZo0aYLk5GSdOqvCaGPXQCRHvNiXyEw98cQT+P3339GyZUu0bt1a69G0adN6zREYGIhLly4hNzdXGjt27JjWNlZWVgCAioqKB665bdu2+OWXX7TGfvnlF7Rr167eczRv3hxeXl44f/68Tt9VFyZXOXr0qPTnO3fuIDk5GW3btq1xbh8fH0yZMgU7duzAq6++ivXr10t1HzlyBEIIrbrt7e3h7e0Nf39/KJVK/Pbbb9L6/Px8rdvHH3/8cVRUVCAvL0+n7nuPiNVUA9GjikdkiGSusLBQ5ztcqu4QWr9+PUaOHCndlZSRkYEtW7bgk08+qdfRiaioKPj7+2PcuHFYunQpiouL8dZbbwGAdBrF3d0dNjY22LNnD7y9vWFtba33d6+89tprGDFiBB5//HFERkZi165d2LFjB/bt29egeeLj4/HKK6/A0dER/fv3h1qtxvHjx5Gfn4/Y2Fhpu5UrVyIgIABt27bF+++/j/z8fLzwwgvVzjlz5kwMGDAAbdq0QX5+Pg4ePCiFnpdffhkrVqzA9OnTMW3aNKSlpWH+/PmIjY2FhYUF7OzsMHHiRLz22mtwcXGBu7s7/vnPf8LC4v//t2SbNm0wevRojB07FsuWLcPjjz+Oa9euYf/+/ejUqRMGDRpUaw1EjyxjX6RDRPobN26cAKDzmDhxohBCiHPnzolhw4YJJycnYWNjI4KCgsTMmTOli1J79eqlddeMELoX0549e1b07NlTWFlZiaCgILFr1y4BQOzZs0faZv369cLHx0dYWFiIXr16SbXdfyHyjBkzpPU1WbVqlWjVqpVQKpWiTZs24vPPP6+1vpp8+eWXokuXLsLKyko0a9ZMhIWFiR07dggh/v/FvgkJCSI4OFhYWVmJdu3aSXdHCaF7se+0adOEv7+/UKlUws3NTTz//PPSHU5CCHHo0CHx5JNPCisrK+Hh4SHmzJkjNBqNtL64uFiMGTNG2NraiubNm4ulS5fqvP/l5eXi7bffFi1bthRKpVJ4enqKYcOGidTU1HrVQPQoUghxz7FQIqI6/PLLLwgNDUVGRgb8/f2NXY5eLl68CD8/P5w8eRJdunQxdjlE9AB4aomIarVz507Y2dkhICAAGRkZmDFjBnr27CnbEENE5oVBhohqVVxcjDlz5iArKwuurq6IjIys9ltpiYiMgaeWiIiISLZ4+zURERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREckWgwwRERHJFoMMERERyRaDDBEREcnW/wNSQ+SinnWpmQAAAABJRU5ErkJggg==\n" }, "metadata": {} } ] }, { "cell_type": "code", "source": [ "mean = np.array(episode_length).mean()\n", "std = np.array(episode_length).std()\n", "mean, std" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "VRc3A2jORh7k", "outputId": "1e00247d-1371-4265-82ba-98d42e3b2dfe" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "(454.1, 138.40046965238233)" ] }, "metadata": {}, "execution_count": 19 } ] }, { "cell_type": "markdown", "source": [ "Mean length of the episode is 250 sentences or replicas. But there were episodes where characters said more then 400 replicas" ], "metadata": { "id": "7hJ3PKpgX0LS" } }, { "cell_type": "code", "source": [ "sns.barplot(season_length)\n", "plt.xlabel(\"Seasons\");\n", "plt.ylabel(\"Number of replicas\");\n", "plt.title(\"Number of replicas over seasons\");" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 472 }, "id": "vUTXRoRqT3T0", "outputId": "bf07d5f1-0f85-48cc-f161-2c89d87888b8" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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PDw83ji5fe/evcjOzsaePXtUzti8eEntRS1atECLFi0wZ84cbNmyBb6+vti6dStGjhwJW1tbHDp0CBkZGSpnid71Z9XKygpffvklvvzyS6SmpsLFxQVz5sxhIJIIXjIjSatbty4GDRqEn3/+GcnJySrrFAoFqlevXmT+xcqVK8usnl9++QUZGRni6x07duDhw4fif8iurq6oW7cuFi5ciMzMzCLv/+eff0q8765du+Ls2bOIiooS27KysrBmzRrUrl0bTk5OJd72y8zNzdG+fXv8/PPPr5zD9apxrFmzRmVOyapVq5CXl6fWL6saNWqgbdu22LBhA5KSklTWvXi2QEtLq8gZvOXLlxc5O/jo0SOV14aGhrC3ty9yu/nL1DnWJiYm8PLywvbt27F161bo6uqiV69eKtvr168foqKiEB4eXmRfaWlpyMvLe2M9r/P48eMibYVnJgvH2K9fP9y/fx9r164t0vfZs2fis68Kz9K8eFzT09MREhKi8p4nT54UOfYv77Nr167Iz89XeewAACxZsgQymUztAJOfn1/kUrO5uTmsra3f+r2kyoNniEjypkyZgk2bNiExMRENGzZUWTdy5EjMnz8fI0eOhJubG44fP45r166VWS2mpqZo3bo1hg0bhpSUFCxduhT29vYYNWoUgP/+Wl+3bh26dOmChg0bYtiwYfjggw9w//59HDlyBAqFAnv37i3RvidPnozffvsNXbp0wbhx42BqaoqNGzfi9u3b+OOPP1ClSun+/bRixQq0bt0ajRs3xqhRo1CnTh2kpKQgKioK//vf/3DhwgWV/jk5OfDw8EC/fv2QmJiIlStXonXr1ujRo4da+122bBlat24NFxcXjB49GnZ2drhz5w7279+PuLg4AEC3bt2wadMmGBsbw8nJCVFRUTh06JB4i3YhJycntG/fHq6urjA1NUVMTIx46/abqHus+/fvj0GDBmHlypXw8vIq8lDMiRMnYs+ePejWrRs+++wzuLq6IisrC/Hx8dixYwfu3LlTZB5bccyePRvHjx+Ht7c3bG1tkZqaipUrV6JmzZrihPDBgwdj+/btGDNmDI4cOYJWrVohPz8fV69exfbt2xEeHg43Nzd07twZurq66N69Oz7//HNkZmZi7dq1MDc3VwnFGzduxMqVK/HJJ5+gbt26yMjIwNq1a6FQKMSzgd27d0eHDh0w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+HHk5uaKfSIiIuDg4KByR1shuVwOhUKhshAREVHlpdFAFBAQgNOnT2Pu3Lm4ceMGtmzZgjVr1sDPzw8AIJPJ4O/vj++//x579uxBfHw8hgwZAmtra/Tq1QvAf2eUPv74Y4waNQpnz57FyZMnMXbsWAwYMADW1tYAgE8//RS6uroYMWIEEhISsG3bNvz4448IDAzU1NCJiIioAtHoHKKPPvoIu3btQlBQEGbPng07OzssXboUvr6+Yp9JkyYhKysLo0ePRlpaGlq3bo2wsDDxGUQAsHnzZowdOxYeHh6oUqUKfHx8sGzZMnG9sbExDh48CD8/P7i6uqJ69eqYPn06b7knIiIiABXgw127deuGbt26vXa9TCbD7NmzMXv27Nf2MTU1FR/C+DrOzs74+++/S1wnERERVV4aD0TvMz5Ej4iIqHLQ+GeZEREREWkaAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHj/LjPiZbEREJHk8Q0RERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSp9FANHPmTMhkMpWlQYMG4vrnz5/Dz88PZmZmMDQ0hI+PD1JSUlS2kZSUBG9vb1StWhXm5uaYOHEi8vLyVPocPXoULi4ukMvlsLe3R2hoaHkMj4iIiN4TGj9D1LBhQzx8+FBcTpw4Ia4LCAjA3r178fvvv+PYsWN48OABevfuLa7Pz8+Ht7c3cnJycOrUKWzcuBGhoaGYPn262Of27dvw9vZGhw4dEBcXB39/f4wcORLh4eHlOk4iIiKquLQ1XoC2NiwtLYu0p6enY/369diyZQs6duwIAAgJCYGjoyNOnz6NFi1a4ODBg7h8+TIOHToECwsLNG3aFN999x2++eYbzJw5E7q6uli9ejXs7Oyw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xOnTp9GiRQscPHgQly9fxqFDh2BhYYGmTZviu+++wzfffIOZM2dCV1cXq1evhp2dHRYtWgQAcHR0xIkTJ7BkyRJ4eXmV+7iJiIioYqlQc4jS09MBAKampgCA2NhY5ObmwtPTU+zToEED1KpVC1FRUQCAqKgoNG7cGBYWFmIfLy8vKJVKJCQkiH1e3EZhn8JtvCw7OxtKpVJlISIiosqrwgSigoIC+Pv7o1WrVmjUqBEAIDk5Gbq6ujAxMVHpa2FhgeTkZLHPi2GocH3hujf1USqVePbsWZFa5s2bB2NjY3GxsbEplTESERFRxVRhApGfnx8uXbqErVu3aroUBAUFIT09XVzu3bun6ZKIiIioDGl0DlGhsWPHYt++fTh+/Dhq1qwptltaWiInJwdpaWkqZ4lSUlJgaWkp9jl79qzK9grvQnuxz8t3pqWkpEChUEBfX79IPXK5HHK5vFTGRkRERBWfRs8QCYKAsWPHYteuXTh8+DDs7OxU1ru6ukJHRweRkZFiW2JiIpKSkuDu7g4AcHd3R3x8PFJTU8U+ERERUCgUcHJyEvu8uI3CPoXbICIiImnT6BkiPz8/bNmyBX/++SeMjIzEOT/GxsbQ19eHsbExRowYgcDAQJiamkKhUOCrr76Cu7s7WrRoAQDo3LkznJycMHjwYAQHByM5ORlTp06Fn5+feJZnzJgx+OmnnzBp0iQMHz4chw8fxvbt27F//36NjZ2IiIgqDo2eIVq1ahXS09PRvn17WFlZicu2bdvEPkuWLEG3bt3g4+ODtm3bwtLSEjt37hTXa2lpYd++fdDS0oK7uzsGDRqEIUOGYPbs2WIfOzs77N+/HxEREWjSpAkWLVqEdevW8ZZ7IiIiAqDhM0SCILy1j56eHlasWIEVK1a8to+trS0OHDjwxu20b98e58+fV7tGIiIiqvwqzF1mRERERJrCQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJLHQERERESSx0BEREREksdARERERJKn0UB0/PhxdO/eHdbW1pDJZNi9e7fKekEQMH36dFhZWUFfXx+enp64fv26Sp/Hjx/D19cXCoUCJiYmGDFiBDIzM1X6XLx4EW3atIGenh5sbGwQHBxc1kMjIiKi94hGA1FWVhaaNGmCFStWvHJ9cHAwli1bhtWrV+PMmTMwMDCAl5cXnj9/Lvbx9fVFQkICIiIisG/fPhw/fhyjR48W1yuVSnTu3Bm2traIjY3FDz/8gJkzZ2LNmjVlPj4iIiJ6P2hrcuddunRBly5dXrlOEAQsXboUU6dORc+ePQEAv/zyCywsLLB7924MGDAAV65cQVhYGKKjo+Hm5gYAWL58Obp27YqFCxfC2toamzdvRk5ODjZs2ABdXV00bNgQcXFxWLx4sUpwIiIiIumqsHOIbt++jeTkZHh6eoptxsbGaN68OaKiogAAUVFRMDExEcMQAHh6eqJKlSo4c+aM2Kdt27bQ1dUV+3h5eSExMRFPnjwpp9EQERFRRabRM0RvkpycDACwsLBQabewsBDXJScnw9zcXGW9trY2TE1NVfrY2dkV2UbhumrVqhXZd3Z2NrKzs8XXSqXyHUdDREREFVmFPUOkSfPmzYOxsbG42NjYaLokIiIiKkMVNhBZWloCAFJSUlTaU1JSxHWWlpZITU1VWZ+Xl4fHjx+r9HnVNl7cx8uCgoKQnp4uLvfu3Xv3AREREVGFVWEDkZ2dHSwtLREZGSm2KZVKnDlzBu7u7gAAd3d3pKWlITY2Vuxz+PBhFBQUoHnz5mKf48ePIzc3V+wTEREBBweHV14uAwC5XA6FQqGyEBERUeWl0UCUmZmJuLg4xMXFAfhvInVcXBySkpIgk8ng7++P77//Hnv27EF8fDyGDBkCa2tr9OrVCwDg6OiIjz/+GKNGjcLZs2dx8uRJjB07FgMGDIC1tTUA4NNPP4Wuri5GjBiBhIQEbNu2DT/++CMCAwM1NGoiIiKqaDQ6qTomJgYdOnQQXxeGlKFDhyI0NBSTJk1CVlYWRo8ejbS0NLRu3RphYWHQ09MT37N582aMHTsWHh4eqFKlCnx8fLBs2TJxvbGxMQ4ePAg/Pz+4urqievXqmD59Om+5JyIiIpFGA1H79u0hCMJr18tkMsyePRuzZ89+bR9TU1Ns2bLljftxdnbG33//XeI6iYiIqHKrsHOIiIiIiMoLAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUkeAxERERFJHgMRERERSR4DEREREUmepALRihUrULt2bejp6aF58+Y4e/aspksiIiKiCkAygWjbtm0IDAzEjBkzcO7cOTRp0gReXl5ITU3VdGlERESkYZIJRIsXL8aoUaMwbNgwODk5YfXq1ahatSo2bNig6dKIiIhIwyQRiHJychAbGwtPT0+xrUqVKvD09ERUVJQGKyMiIqKKQFvTBZSHf//9F/n5+bCwsFBpt7CwwNWrV4v0z87ORnZ2tvg6PT0dAKBUKlX65Wc/K4NqS8/L9b4Ox1H2KsMYgMoxjsowBoDjqEgqwxiAyjGOl8dQ+FoQhLe/WZCA+/fvCwCEU6dOqbRPnDhRaNasWZH+M2bMEABw4cKFCxcuXCrBcu/evbdmBUmcIapevTq0tLSQkpKi0p6SkgJLS8si/YOCghAYGCi+LigowOPHj2FmZgaZTFYmNSqVStjY2ODevXtQKBRlso/yUBnGURnGAHAcFUllGANQOcZRGcYAcBzFJQgCMjIyYG1t/da+kghEurq6cHV1RWRkJHr16gXgv5ATGRmJsWPHFukvl8shl8tV2kxMTMqhUkChULzXP9yFKsM4KsMYAI6jIqkMYwAqxzgqwxgAjqM4jI2Ni9VPEoEIAAIDAzF06FC4ubmhWbNmWLp0KbKysjBs2DBNl0ZEREQaJplA1L9/f/zzzz+YPn06kpOT0bRpU4SFhRWZ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\n" }, "metadata": {} } ] }, { "cell_type": "code", "source": [ "season_length_list = np.array([v for k,v in season_length.items()])\n", "mean = season_length_list.mean()\n", "std = season_length_list.std()\n", "print(mean, std)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "dtw95h_-Ovdt", "outputId": "5990cdcf-2844-4df5-9148-900899bc2a58" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "6034.7 408.36039230072254\n" ] } ] }, { "cell_type": "code", "source": [ "scripts_by_character = { name : '' for name in main_characters}\n", "num_scripts_by_character = { name : 0 for name in main_characters}\n", "\n", "for season in tqdm(scripts_with_context):\n", " for episode in scripts_with_context[season]:\n", " episode_script = scripts_with_context[season][episode].split(NEWLINE_REPLACEMENT)\n", " for line in episode_script:\n", " column_loc = line.find(':')\n", " character = line[:column_loc]\n", " if character in main_characters:\n", " scripts_by_character[character] += line[column_loc + 1:].strip().replace(''','') + ' '\n", " num_scripts_by_character[character] += 1" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "F7htX4-XDgIW", "outputId": "d70991bb-679a-4851-a08c-ce07e9acf468" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "100%|██████████| 10/10 [00:01<00:00, 5.81it/s]\n" ] } ] }, { "cell_type": "code", "source": [ "sns.barplot(num_scripts_by_character)\n", "plt.xlabel(\"Characters\");\n", "plt.ylabel(\"Number of replicas\");\n", "plt.title(\"Number of replicas for characters\");\n", "plt.yticks(np.arange(0, 10000, 1000))\n", "plt.grid(True)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 472 }, "id": "nKPZZ0gHH_lA", "outputId": "39753d6a-a898-414b-980d-2bffb20ab766" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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GUejBVFWVhZCQkLwzz//wNLSEj4+Ppg7d65Y0U2aNAk5OTkICAhAZmYm2rRpg6ioKIU707Zs2YLRo0ejY8eO0NHRgY+PD5YvXy7ONzc3R0xMDAIDA+Hi4oIqVapg+vTpCs8qIiKiisEP8RfU9SFO6qPRgqh3797o3bt3ifMlEglmzZqFWbNmldjH0tISkZGRpa6ncePGOHr06BvHSURERB82fpcZERERaT0WRERERKT1WBARERGR1mNBRERERFqPBRERERFpPRZEREREpPVYEBEREZHWY0FEREREWo8FEREREWk9FkRERESk9VgQERERkdZjQURERERajwURERERaT0WRERERKT1WBARERGR1mNBRERERFqPBRERERFpPRZEREREpPVYEBEREZHWY0FEREREWo8FEREREWk9FkRERESk9VgQERERkdZjQURERERajwURERERaT0WRERERKT1WBARERGR1mNBRERERFqPBRERERFpPY0WRIWFhZg2bRocHBxgZGSE2rVrY/bs2RAEQewjCAKmT5+OatWqwcjICB4eHrh+/brCOI8ePUL//v0hlUphYWEBf39/PH36VKHP+fPn0bZtWxgaGsLOzg5hYWEVso1ERET07tNoQbRgwQKsWrUKP/74Iy5fvowFCxYgLCwMK1asEPuEhYVh+fLlWL16NRITE2FiYgIvLy88f/5c7NO/f3+kpKQgNjYWe/fuRXx8PAICAsT52dnZ8PT0hL29PZKSkvDDDz8gNDQUa9asqdDtJSIiondTJU2u/MSJE+jevTu8vb0BADVr1sTWrVtx6tQpAC+ODi1duhRTp05F9+7dAQCbNm2CtbU1/vjjD/j6+uLy5cuIiorC6dOn0bx5cwDAihUr0LVrVyxcuBC2trbYsmUL8vPzsX79eujr66NBgwZITk7G4sWLFQqnt+UycZPaxnoT+rrAZFdzuE3bivxCzcWR9MMgza2ciIjoDWi0IPrss8+wZs0aXLt2DfXq1cNff/2FY8eOYfHixQCA27dvIy0tDR4eHuIy5ubmaNmyJRISEuDr64uEhARYWFiIxRAAeHh4QEdHB4mJifjyyy+RkJAANzc36Ovri328vLywYMECPH78GB999JFCXHl5ecjLyxOns7OzAQAymQwymazE7dHXfbt8vC35+jUdR2k5eh/I43/ft+NdwFyqz4eSS03/fvqQfk9qehveh1yqkmeNFkSTJ09GdnY26tevD11dXRQWFmLu3Lno378/ACAtLQ0AYG1trbCctbW1OC8tLQ1Vq1ZVmF+pUiVYWloq9HFwcFAaQz7v1YJo3rx5mDlzplK8MTExMDY2Lnl7XM1fu80VIbiFZuPYv3+/RtevLrGxsZoO4YPBXKrP+55L/p58QR2/J5nLF0rLZW5ubpnH0WhBtH37dmzZsgWRkZHiaaygoCDY2tpi8ODBGosrJCQEwcHB4nR2djbs7Ozg6ekJqVRa4nJu07ZWRHgl0td9sWMuPpWl0VNm8bP7vtXyzOMLb5tHgLmUU0cuNU0mkyE2NhadOnWCnp6epsN5Y9wnX+D7W31Ky6X8DE9ZaLQgmjhxIiZPngxfX18AQKNGjXD37l3MmzcPgwcPho2NDQAgPT0d1apVE5dLT09HkyZNAAA2NjbIyMhQGLegoACPHj0Sl7exsUF6erpCH/m0vM/LDAwMYGBgoNSup6dX6i8iTe4QL8sv1Gwsb/vLmnl8QR0feszlC+9zAfGq1/0eetdxn3yB72/1KS2XquRZo3eZ5ebmQkdHMQRdXV0UFRUBABwcHGBjY4O4uDhxfnZ2NhITE+Hq6goAcHV1RWZmJpKSksQ+Bw8eRFFREVq2bCn2iY+PVziXGBsbC0dHR6XTZURERKR9NFoQff7555g7dy727duHO3fu4Pfff8fixYvx5ZdfAgAkEgmCgoIwZ84c7N69GxcuXMCgQYNga2uLHj16AACcnJzQuXNnDB8+HKdOncLx48cxevRo+Pr6wtbWFgDQr18/6Ovrw9/fHykpKdi2bRuWLVumcFqMiIiItJdGT5mtWLEC06ZNw6hRo5CRkQFbW1t8/fXXmD59uthn0qRJyMnJQUBAADIzM9GmTRtERUXB0NBQ7LNlyxaMHj0aHTt2hI6ODnx8fLB8+XJxvrm5OWJiYhAYGAgXFxdUqVIF06dPV+st90RERPT+0mhBZGZmhqVLl2Lp0qUl9pFIJJg1axZmzZpVYh9LS0tERkaWuq7GjRvj6NGjbxoqERERfcD4XWZERESk9VgQERERkdZjQURERERajwURERERaT0WRERERKT1WBARERGR1mNBRERERFqPBRERERFpPRZEREREpPVYEBEREZHWY0FEREREWo8FEREREWk9FkRERESk9VgQERERkdZjQURERERajwURERERaT0WRERERKT1WBARERGR1mNBRERERFqPBRERERFpPRZEREREpPVYEBEREZHWY0FEREREWo8FEREREWk9FkRERESk9SppOgAioveBy8RNGl2/vi4w2dUcbtO2Ir9Qc3Ek/TBIcysnKkc8QkRERERajwURERERaT2NFkQ1a9aERCJRegUGBgIAnj9/jsDAQFSuXBmmpqbw8fFBenq6whipqanw9vaGsbExqlatiokTJ6KgoEChz+HDh9GsWTMYGBigTp06iIiIqKhNJCIioveARgui06dP48GDB+IrNjYWANCrVy8AwPjx47Fnzx7s2LEDR44cwf3799GzZ09x+cLCQnh7eyM/Px8nTpzAxo0bERERgenTp4t9bt++DW9vb7i7uyM5ORlBQUEYNmwYoqOjK3ZjiYiI6J2l0YuqraysFKbnz5+P2rVro127dsjKysK6desQGRmJDh06AAA2bNgAJycnnDx5Eq1atUJMTAwuXbqEAwcOwNraGk2aNMHs2bPx7bffIjQ0FPr6+li9ejUcHBywaNEiAICTkxOOHTuGJUuWwMvLq8K3mYiIiN4978xdZvn5+fjf//6H4OBgSCQSJCUlQSaTwcPDQ+xTv3591KhRAwkJCWjVqhUSEhLQqFEjWFtbi328vLwwcuRIpKSkoGnTpkhISFAYQ94nKCioxFjy8vKQl5cnTmdnZwMAZDIZZDJZicvp66q61eolX7+m4ygtR2Wh6fg/lDwCmt8G5lJ9PpRcajr+DyWPgOa34X3IpSp5lgiCIKgjoLe1fft29OvXD6mpqbC1tUVkZCT8/PwUChMAaNGiBdzd3bFgwQIEBATg7t27Cqe/cnNzYWJigv3796NLly6oV68e/Pz8EBISIvbZv38/vL29kZubCyMjI6VYQkNDMXPmTKX2yMhIGBsbq3GriYiIqLzk5uaiX79+yMrKglQqLbXvO3OEaN26dejSpQtsbW01HQpCQkIQHBwsTmdnZ8POzg6enp6lJtRt2taKCK9E+rpAcAtzLD6VpdHnlMTP7vtWyzOPL7xtHgHmUo65VB++v9WD+6T6lJZL+RmesngnCqK7d+/iwIED+O2338Q2Gxsb5OfnIzMzExYWFmJ7eno6bGxsxD6nTp1SGEt+F9rLfV69My09PR1SqbTYo0MAYGBgAAMDA6V2PT096Onplbgdmtwh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\n" }, "metadata": {} } ] }, { "cell_type": "markdown", "source": [ "Chech number of replicas with pandas" ], "metadata": { "id": "xafvNDuKUy5D" } }, { "cell_type": "code", "source": [ "df[\"Characters\"].value_counts()" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "1ed9p9TEUprc", "outputId": "ffc23c6b-79ea-468d-a90d-779111eadab8" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "OTHER 11349\n", "RACHEL 8920\n", "ROSS 8885\n", "CHANDLER 8063\n", "JOEY 7989\n", "MONICA 7963\n", "PHOEBE 7178\n", "Name: Characters, dtype: int64" ] }, "metadata": {}, "execution_count": 24 } ] }, { "cell_type": "markdown", "source": [ "# Text analysis" ], "metadata": { "id": "BevbIPv7YJOx" } }, { "cell_type": "code", "source": [ "!pip install pyLDAvis -q" ], "metadata": { "id": "kYatSxZ0YdA4", "colab": { "base_uri": "https://localhost:8080/" }, "outputId": "79a7c351-4615-44ae-8c66-54a8cc4d50f7" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m2.6/2.6 MB\u001b[0m \u001b[31m10.2 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m13.0/13.0 MB\u001b[0m \u001b[31m29.5 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", "\u001b[2K \u001b[90m━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━\u001b[0m \u001b[32m345.4/345.4 kB\u001b[0m \u001b[31m26.4 MB/s\u001b[0m eta \u001b[36m0:00:00\u001b[0m\n", "\u001b[?25h\u001b[31mERROR: pip's dependency resolver does not currently take into account all the packages that are installed. This behaviour is the source of the following dependency conflicts.\n", "bigframes 0.21.0 requires pandas<2.1.4,>=1.5.0, but you have pandas 2.2.1 which is incompatible.\n", "google-colab 1.0.0 requires pandas==1.5.3, but you have pandas 2.2.1 which is incompatible.\u001b[0m\u001b[31m\n", "\u001b[0m" ] } ] }, { "cell_type": "code", "source": [ "import string\n", "import re\n", "from pprint import pprint\n", "\n", "# Enable logging for gensim - optional\n", "import logging\n", "logging.basicConfig(format='%(asctime)s : %(levelname)s : %(message)s', level=logging.ERROR)\n", "\n", "import warnings\n", "warnings.filterwarnings(\"ignore\",category=DeprecationWarning)\n", "\n", "import nltk\n", "from nltk import pos_tag\n", "from nltk.stem import wordnet\n", "from nltk.corpus import stopwords\n", "nltk.download('omw-1.4') #this is for the .apply() function to work\n", "nltk.download('punkt')\n", "nltk.download('averaged_perceptron_tagger')\n", "nltk.download('wordnet')\n", "nltk.download('stopwords')" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "v4AMwZ6fYNUe", "outputId": "2e1bbd4a-50c4-422f-f39f-a549c96f0207" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "[nltk_data] Downloading package omw-1.4 to /root/nltk_data...\n", "[nltk_data] Downloading package punkt to /root/nltk_data...\n", "[nltk_data] Unzipping tokenizers/punkt.zip.\n", "[nltk_data] Downloading package averaged_perceptron_tagger to\n", "[nltk_data] /root/nltk_data...\n", "[nltk_data] Unzipping taggers/averaged_perceptron_tagger.zip.\n", "[nltk_data] Downloading package wordnet to /root/nltk_data...\n", "[nltk_data] Downloading package stopwords to /root/nltk_data...\n", "[nltk_data] Unzipping corpora/stopwords.zip.\n" ] }, { "output_type": "execute_result", "data": { "text/plain": [ "True" ] }, "metadata": {}, "execution_count": 25 } ] }, { "cell_type": "markdown", "source": [ "Write text for every character" ], "metadata": { "id": "34wRPiH8Vrju" } }, { "cell_type": "code", "source": [ "for character, lines in scripts_by_character.items():\n", " with open(f'english/{character}.txt', \"w\") as text_file:\n", " text_file.write(lines)" ], "metadata": { "id": "peIHnDcWVrMK" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Make text anslysis for Rachel Green" ], "metadata": { "id": "BNleY6s4WGwM" } }, { "cell_type": "code", "source": [ "with open(\"./english/RACHEL.txt\", \"r\") as f:\n", " text = f.readlines()[0]\n", "text" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 163 }, "id": "fM3CXENpWJmz", "outputId": "1e6f9114-1ccc-4f92-b0a8-002897989aa6" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "'Oh God Monica hi! I just went to your building and you weren\\'t there and then this guy with a big hammer said you might be here and you are, you are! Hi, sure! Oh God... well, it started about a half hour before the wedding. I was in the room where we were keeping all the presents, and I was looking at this gravy boat. This really gorgeous Lamauge gravy boat. When all of a sudden- Sweet \\'n\\' Lo?- I realised that I was more turned on by this gravy boat than by Barry! And then I got really freaked out, and that\\'s when it hit me: how much Barry looks like Mr. Potato Head. Y\\'know, I mean, he always looked familiar, but... Anyway, I just had to get out of there, and I started wondering \\'Why am I doing this, and who am I doing this for?\\'. So anyway I just didn\\'t know where to go, and I know that you and I have kinda drifted apart, but you\\'re the only person I knew who lived here in the city. Ooh, I was kinda hoping that wouldn\\'t be an issue... Daddy, I just... I can\\'t marry him! I\\'m sorry. I just don\\'t love him. Well, it matters to me! C\\'mon Daddy, listen to me! All of my life, everyone has always told me, \\'You\\'re a shoe! You\\'re a shoe, you\\'re a shoe, you\\'re a shoe!\\'. And today I just stopped and I said, \\'What if I don\\'t wanna be a shoe? What if I wanna be a- a purse, y\\'know? Or a- or a hat! No, I\\'m not saying I want you to buy me a hat, I\\'m saying I am a ha- It\\'s a metaphor, Daddy! Look Daddy, it\\'s my life. Well maybe I\\'ll just stay here with Monica. Well, maybe that\\'s my decision. Well, maybe I don\\'t need your money. Wait!! Wait, I said maybe!! I\\'m all better now. Please, no, go, that\\'d be fine! Well, I was kinda supposed to be headed for Aruba on my honeymoon, so nothing! Well actually thanks, but I think I\\'m just gonna hang out here tonight.. Barry, I\\'m sorry... I am so sorry... I know you probably think that this is all about what I said the other day about you making love with your socks on, but it isn\\'t... it isn\\'t, it\\'s about me, and I ju- Hi, machine cut me off again... anyway... Oh...see... but Joanie loved Chachi! That\\'s the difference! Isn\\'t this amazing? I mean, I have never made coffee before in my entire life. Hello, Paul. So, like, you guys all have jobs? Wow! Would I have seen you in anything? I can see that. You look like you slept with a hanger in your mouth. Oh, yeah. Oh wow. Are you in trouble. Oh, look, wish me luck! I\\'m gonna go get one of those job things. Guess what? Are you kidding? I\\'m trained for nothing! I was laughed out of twelve interviews today. You would be too if you found John and David boots on sale, fifty percent off! They\\'re my new \\'I don\\'t need a job, I don\\'t need my parents, I\\'ve got great boots\\' boots! Uh, credit card. Um... my... father. I know that. That\\'s why I was getting married. Thank you. I don\\'t think so. You gonna crash on the couch? Hey Mon, look what I just found on the floor. What? Sorry- No, you have it, really, I don\\'t want it- Okay. I knew. I did. Yeah, maybe... Goodnight. Would anybody like more coffee? I\\'m just serving it. Everything you need to know is in that first kiss. Yeah, well, word of advice: Bring back the comedian. Otherwise next time you\\'re gonna find yourself sitting at home, listening to that album alone. Has anybody seen my engagement ring? Oh God, oh God, oh God oh God oh God oh God.... Oh, like I wasn\\'t dreading tomorrow enough, having to give it back to him... \\'Hi Barry! Remember me? I\\'m the girl in the veil who stomped on your heart in front of your entire family!\\' Oh God and now I\\'m gonna have to return the ring, without the ring, which makes it so much harder... I know I had it this morning, and I know I had it when I was in the kitchen with... Ohhhhh, don\\'t be mad... Oh, I am sorry... Oh, but look how straight those noodles are! Well now, how-how do you fit into this whole thing? So what are you gonna do? You\\'re twins? All right, you guys, I kinda gotta clean up now. The lights, please.. I\\'m just cleaning up. Uh.. okay, sure! Thanks! Oh.. a little.. A lot. So, got any advice? Y\\'know, as someone who\\'s recently been- dumped? Oh, you\\'ve got Carol tomorrow.. When did it get so complicated? Remember when we were in high school together? I mean, didn\\'t you think you were just gonna meet somone, fall in love- and that\\'d be it? ..Ross? Oh! Man, I never thought I\\'d be here.. Barry? Are you sure? I\\'m- uh- I\\'m okay... You look great! I dumped him. Oh, not much. I-I got a job. Why are- why are you so tanned? Oh no. You went on our honeymoon alone? Mindy?! My maid of honour, Mindy?! Oh! Well, um.. You\\'ve got plugs! And you\\'ve got lenses! But you hate sticking your finger in your eye! Okay.. Wow. What? Anyway, um, I guess this belongs to you. And thank you for giving it to me. Hi, Mindy. Hi, it-it\\'s Rachel. Yeah, I\\'m fine. I-I saw Barry today. Oh, yeah, yeah he-he told me. No, no, it\\'s okay. I hope you two are very happy, I really do. Oh, oh, and Mind, y\\'know, if-if everything works out, and you guys end up getting married and having kids- and everything- I just hope they have his old hairline and your old nose. Okay, I know it was a cheap shot, but I feel SO much better now. What? He said \\'we should do it again\\', that\\'s good, right? Since when? And everybody knows this? Alright, don\\'t tell me, don\\'t tell me! Decaf cappucino for Joey.. Coffee black.. Late.. And an iced tea. I\\'m getting pretty good at this! Good for me! Yeah, but if you spent it, it would be like shopping! Chandler, what are you doing? This Alan again? How\\'s it goin\\'? Well, then can we meet him? What bank is this? And did you notice...? What future boyfriends? Nono, I th- I think this could be, y\\'know, it. I mean, it-it was like, it was like he made us into a team. Well, no. That\\'s impossible. You can never be too Alan. It\\'s worse than the thumb! Well, I-I could live without it. \"Indeed there isn\\'t\"... I should really get back to work. Ohh-ho-hooohhh. The hair comes out, and the gloves come on. Chandler? It\\'s Alan, he wants to speak to you. God, he\\'s good. Yeah. I think he\\'s across the hall. Uh, Joey.. We didn\\'t change.. I just can\\'t believe this! I mean, with the holidays coming up- I wanted him to meet my family- Remember when we went to Central Park and rented boats?.. That was fun. See, there\\'s always one guy. \"If I had a wish, I\\'d wish for three more wishes.\" Look look look look look, my first pay check! Look at the window, there\\'s my name! Hi, me! God, isn\\'t this exciting? I earned this. I wiped tables for it, I steamed milk for it, and it was totally- -not worth it. Who\\'s FICA? Why\\'s he getting all my money? I mean, what- Chandler, look at that. Oh my God! What are you guys doing here? LESLIE) Look at you, you are so big I can\\'t believe it! So what\\'s going on with you? So c\\'mon, you guys, tell me all the dirt! Okay. What? Guys, I\\'m not. I\\'m not! This is what I\\'m doing now. I\\'ve got this job- Okay, I\\'m not just waitressing. I\\'m.. I, um... I write the specials on the specials board, and, uh... and I, uh... I take the uh dead flowers out of the vase... Oh, and, um, sometimes Artelle lets me put the little chocolate blobbies on the cookies. What\\'s that? Okay. Oh, God, ask them what they want. But I haven\\'t used my card in weeks! They wanna know if I\\'m okay. Okay.. they wanna know if I\\'m okay, okay, let\\'s see. Well, let\\'s see, the FICA guys took all my money, everyone I know is either getting married, or getting promoted, or getting pregnant, and I\\'m getting coffee! And it\\'s not even for me! So if that sounds like I\\'m okay, okay, then you can tell them I\\'m okay, okay? Alright, c\\'mon! Let\\'s play Twister! Monica, what is so amazing? I gave up, like, everything. And for what? ...Jack from downstairs? Okay, but Pheebs, Pheebs, Jack gave up a cow, I gave up an orthodontist. Okay, I-I-I know, I know I didn\\'t love him- But see, it was a plan. Y\\'know, it was clear. It was figured out, and now everything\\'s just kinda like- Yeah. Okay, but Monica, what if- what if it doesn\\'t come together? Okay, see, see, you guys, what if we don\\'t get magic beans? I mean, what if all we\\'ve got are.. beans? I\\'m so sorry, you guys. I didn\\'t mean to bring you down. Thank God. Food. No, no, that\\'s not what we ordered... We ordered a fat-free crust with extra cheese. Uh, Pheebs? Who\\'s George Snuffalopagus? Hello? Who are we spying on? Oh, him, the little guy? Oh, I love him! Yeah. Oh please, they\\'re having sex. So, whaddya think George is like? How long? Okay, okay, okay, I got one! Anyway- The valentine Tommy Rollerson left in your locker was really from me. Hello? Like he was really gonna send you one? She was a big girl. I was laughing! You made me laugh! He is so cute! Oh, okay. Will you take my place? Nooo! Hello? Oh, yeah, no, I know, I-I haven\\'t been using it much. Oh, well, thanks, but, I\\'m okay, really. I\\'ve got magic beans. Never-never mind. Ohhh... I\\'m fine. Ooh! Look! Look! Look! Look, there\\'s Joey\\'s picture! This is so exciting! God. I feel violated. Oh, c\\'mon. She\\'s a person, you can do it! What is it? Tah-daaah! Look! I cleaned! I did the windows, I did the floors... I even used all the attachments on the vacuum, except that little round one with the bristles, I don\\'t know what that\\'s for. Well, whaddya think? I dunno.. I-I thought it looked better there. And I- and also, it\\'s an extra seat around the coffee table. Okay, uh, you let me go grocery shopping, and I buy laundry detergent, but it\\'s not the one with the easy-pour spout. ..You\\'re, you\\'re \\'mah mah mah\\' what? Who is being loud? Ooh, do I sense a little bit of resentment? Oh, Joey, you know what, no-one is gonna be able to tell. Uh, Mon, you-you gonna leave your shoes out here? Really? Just casually strewn about in that reckless haphazard manner? Everybody. Shh, shhh. Err, Central Perk is proud to present the music of Miss Phoebe Buffay. Wow, this is so cool you guys, the entire city is blacked out. Wow, you guys this is big. Ooo Ooo. That had to hurt. Ok ok, somebody somebody. A pool table? Er Rossss? Oh come on, I already went. Yes I did! Come on. Alright, errrr the weirdest place. . . . would have to beeee. . . . oh . . . the foot of the bed. Huh, I`ve just never. . . had a relationship with that kind of passion, you know, where, where you have to have somebody right there in the middle of a theme park. Alright well, see, I mean, Barry wouldn`t even kiss me on a minature golf course. No..he said we were holding up the people behind us. I mean d`you think. there are people that go through life never having that kind of. Really? Yeah, right! Ok. You don`t ? Really? Ya do? Oh Ross, your so great, nuh. What are we Shushing? What? What? Ahhhhhhohhh. Ur huh Erm, so nice. Ok. Ohhhhh. Ohhh look at that little girl ohhh. During a blackout? She`ll get trampled! Oh, no the Melons, they hate all living things! Hi, we just found this cat, and we er, looking for the owner. Bob buttons? Cah. Here kitty kitty kitty, here kitty kitty, where`d ya go little kitty kitty kitty. Kitty, kitty, kitty, come `ere kitty kitty kitty kitty kitty kitty kitty.. kitty kitty..hi? Oh wow! Everybody, this is Paolo. Paolo I want you to meet my friends, this is Monica And Joey. And, and Ross. Hur, hur hur, he doesn`t speak much English. Ohhhh, look at that. ROSS: So, er, where did er, Paolo come from .. Oh, ..Italy, I think? Hur hur hur. Well, the that cat, the ca cat, turned out to be Paolo`s cat, Int that funny. I think it`s his cat. Oh I found him. It was Paolo`s cat. Oh Paolo, this is Phoebe. Hur hur hur hur. Er Ohhhhh. I have absolutely no idea. Oh my God, you guys, whata my doin` whata my doin` this is so un-meeeeee? Cah. God, the first time he smiled, at me, those three seconds were more exciting than three weeks in Burmuda with Barry. Oh, God, you know, I know It`s totally superfical, and we have nothing in common, and we don`t even speak the same language, but Gohohohodddddd. Whoa ha ha ha ha ha harrrrrr! Um... yeah. Well, I mean, when I first met you, y\\'know, I thought maybe, possibly, you might be... Yeah, but then you spent Phoebe\\'s entire birthday party talking to my breasts, so then I figured maybe not. Oh my God! Calling from Rome! Bon giorno, caro mio. Monica, your dad just beeped in, but can you make it quick? Talking to Rome. I\\'m talking to Rome. Yes, Chandler, that\\'s exactly what it is. It\\'s your hair. So, um, did she... Aw. Hey, Pheebs, want this? Sure. I just sharpened her this morning. Oh, you-you mean your earrings? Hm-m. Yes. Paolo sent them from Italy. Oh no! My new Paolo shoes! Oh, well you know who I love the most? You! Pheebs, could you maybe hand me a cracker? Hey, who\\'s this little naked guy? Aww, look at the little thing. Wow, Monica, you look just like your grandmother. How old was she there? It\\'s so that I can spend Thanksgiving with my family. See, every year we go skiing in Vail, and normally my father pays for my ticket, but I sort of started the whole independence thing, you know, which is actually why I took this job. Ok, I, I hear what you\\'re sayin\\'. I\\'m with you. Um, but I, but I\\'m trying really hard. And I think I\\'m doing better. I really do. Does anybody need coffee? Oh, look at that. Excuse me, sir. Hi, you come in here all time. I was just wondering, do you think there\\'s a possibility that you could give me an advance on my tips? Ok, ok, that\\'s fine. Fine. Hey, I\\'m sorry about that spill before. Only $98.50 to go. Absolutely. Shoop, shoop, shoop. Only a hundred and two dollars to go. Yeah, well it was. I, I broke a cup. No, not even close. Forget Vail, forget seeing my family, forget shoop, shoop, shoop. Thanks, you can just put it on the table. Thanks, you can just put it on the table. Oh my god, oh, you guys are great. Thank you. Thank you so much! Wait, wait, Chandler, this is what you\\'re havin\\' for Thanksgiving dinner? What, what, what is it with you and this holiday? Oh my god. Saw what? I got the tickets! I got the tickets! Five hours from now, shoop, shoop, shoop. Ok, I\\'m gonna get my stuff. Ok, good-bye you guys. Thanks for everything. Oh, sorry! Oh, sorry! I can\\'t, I gotta go. Ok. I loved the moment when you first saw the giant dog shadow all over the park. We\\'re waiting for you to open the door. You got the keys. Yes, you do. When we left, you said, \"got the keys.\" No, no, no, you said, \"got the keys\". Oh, I gotta get my ticket! All right, listen, smirky. If it wasn\\'t for you and your stupid balloon, I would be on a plane watching a woman do this right now. But I\\'m not. No, I didn\\'t. I wouldn\\'t say I had the keys unless I had the keys, and I obviously didn\\'t have the keys. Aside from the fact that you said you had them? Well, you should have. Because! Because! Oh, god, this is great! The plane is gone, so it looks like I\\'m stuck here with you guys. What? By all means. And a crappy New Year. Oh, he is precious! Where did you get him? Hey, do you guys know what you\\'re doing for New Year\\'s? Gee, what?! What is wrong with New Year\\'s? Well, for your information, Paolo is gonna be in Rome this New Year, so I\\'ll be just as pathetic as the rest of you. Phoebe, you\\'re on. Okay, hi. Ladies and gentlemen, back by popular demand, Miss Phoebe Buffay. Wooh! Pheebs, I can\\'t believe he hasn\\'t kissed you yet. I mean God, by my sixth date with Paolo, I mean he had already named both my breasts! ...Ooh. Did I just share too much? Yeah! Okay, here we go... There. Now there is. Five. Sorry. Paolo\\'s catching an earlier flight. Oh, c\\'mon. We\\'ll have, we\\'ll have a big party, and no-one\\'ll know who\\'s with who. Rome. Jerk missed his flight. No. Okay. I was at the airport, getting into a cab, when this woman- this blonde planet with a pocketbook- starts yelling at me. Something about how it was her cab first. And then the next thing I know she just starts- starts pulling me out by my hair! So I\\'m blowing my attack whistle thingy and three more cabs show up, and as I\\'m going to get into a cab she tackles me. And I hit my head on the kerb and cut my lip on my whistle...oh...everybody having fun at the party? Are people eating my dip? Vrrbddy, the bll is drrbing. The bll is drrbing! I can\\'t kiss anyone. ...I think that bitch cracked my tooth. Oh, she\\'s coming up! She\\'s coming up! No way, forget it. Chandler, I gotta tell you, I love your mom\\'s books! I love her books! I cannot get on a plane without one! I mean, this is so cool! Oh, hi sweetie. Hi! Sorry- sorry we\\'re late, we, uh, kinda just, y\\'know, lost track of time. Mrs. Bing, I have to tell you, I\\'ve read everything you\\'ve ever written. No, I mean it! I mean, when I read Euphoria at Midnight, all I wanted to do was become a writer. Hey. What\\'re you guys doing out here? Well,sounds like you two have issues. Goodbye, baby. Hey. Yeah. Thought I\\'d give it a shot. I\\'m still on the first chapter. Now, do you think his \\'love stick can be liberated from its denim prison\\'? Hey. Okay. I am so hot! Central Perk is proud to present Miss Phoebe Buffay. Okay, that was Phoebe Buffay, everybody. Woo! Okay. Now this is just the first chapter, and I want your absolute honest opinion. Oh, oh, and on page two, he\\'s not \\'reaching for her heaving beasts\\'. Alright, alright, so I\\'m not a great typist... Alright, that\\'s it! Give it back! That\\'s it! Honey, you can say it, Poconos, Poconos, it\\'s like Poc-o-nos Yes, my sister\\'s giving us her place for the weekend. I know... I mean, we are way past the fling thing, I mean, I am feeling things that I\\'ve only read about in Danielle Steele books, you know? I mean, when I\\'m with him, I\\'m totally, totally... Pheebs! Oh, right, that\\'s me! \"Ooo\", what? Hi Pheebs! No, these aren\\'t all my suitcases. This one\\'s Paolo\\'s. Well, sure...just a sec, though, \\'cause Paolo\\'s on his way over. Oh, Pheebs, Pheebs... Why have I never tasted these before? All right, well, you\\'re right, these are the best oatmeal cookies I\\'ve ever had. I guess you don\\'t. I need some milk. No...oh!, I feel so stupid! Oh, I think about the other day with you guys and I was all \"Oh, Paolo, he\\'s so great, he makes me feel so...\" Oh, God, I\\'m so embarrassed! Pheebs, if I had never met him this never would have happened! I don\\'t know...right, he\\'s the pig! Oh, God, he\\'s such a pig, He\\'s like a big disgusting... ...pig...pig man! Oh, but he was my pig man...how did I not see this? Ok, Ok, Pheebs... Oh, God... No, no, trust, me, it\\'s, it\\'s, it\\'s much better that I know. Uh, I just liked it better before it was better... Hey. Ooh, I\\'ve been better... Oh, Ross... I am so sick of guys. I don\\'t want to look at another guy, I don\\'t\\' want to think about another guy, I don\\'t even want to be near another guy. Oh Ross, you\\'re so great! Oh... ...medium...hmm...any cookies left? No. I just need to be by myself for a while, you know? I just got to figure out what I want No, I know, I know, and I\\'m sure your little boy is not going to grow up to be one. What? Uh...no. No, no, in fact, you\\'re not having a boy. Daaargh! That\\'s it! You just barge in here! You don\\'t knock, you have no... ...respect for anybody\\'s privacy... No, you wait. This is ridiculous... What?! What ?! Aaarrggh! He\\'s so cute. And he seems to like you so much... OK. Any of you guys want anything else? No, I\\'m sorry, we\\'re all out of those. Anybody else? OK. OK. Can we change the subject, please? OK, Phoebes, I was hoping for more of a change. Nice? They were... nice? I mean, tha... that\\'s it? I mean, mittens are nice! Now, I know. I mean, why can\\'t parents just stay parents? You know? Why do they have to become people? Why do you have... Why... can\\'t you stop staring at me breasts? Did you not get a good enough look the other day? Come on. He\\'s right. Tit for tat. You\\'re right... I mean, you\\'re right. It wasn\\'t just the Weebles, but it was the Weeble Play Palace, and, and the Weebles\\' Cruise Ship, oh, which, which had this little lifeboat for the Weebles to wobble in. Hi, I\\'m Rachel. The bathroom\\'s up there. Hey, listen Ronnie, how long would you say Chandler\\'s been in the shower? Oh, great. Fasten your seatbelts. It\\'s pee-pee time! Hey Mr.Trib. Chandler Bing, it\\'s time to see your thing... I thought it was Chandler You were supposed to be in there so I could see your thing! Wow. Just think. In a couple of years we get to turn into them. What happened? Do what, do what? No! Phoebes! Don\\'t you remember why you dumped the guy? Well, what are you guys doing tomorrow night? Ok, ok, Roger was creepy, but he was nothing compared to Pete Carney. He was the weeper. Remember that guy who used to cry every time we had sex. \"Was it good for you?\" How did we end up with these jerks? We\\'re good people! Phoebes, this woman is voluntarily bald. Or? Burning\\'s good. Yeah, I got stuff to burn. Oh my god. Janice, hi! Oh, Joey, look who it is. Ok, Pheebs, you know what, if we had that, we wouldn\\'t be doing the ritual in the first place. Ok, Barry\\'s letters. Adam Ritter\\'s boxer shorts. Hey he\\'s wearing a sweater. And here we have the last of Paulo\\'s grappa. Really? So, um, will you bring the truck? Oh, my god. Oh, they\\'re firemen guys. Oh, yeah, I\\'ve done that. I\\'ve never done that. Um, Pheebs, so, you guys just don\\'t get along? So, is this just gonna be you and Carol? Well, isn\\'t that gonna be weird? Oh, cool. \"Urkel\" in Spanish is \"Urkel\". Well someone was supposed to write \"Rache, take down the lights\" and put it on the refrigerator. How long has that been there? So Pheebs, what do you want for your birthday? Ok. Let me put it this way. Anything from Crabtree & Evelyn? Oh, well, that shouldn\\'t be so hard, now that you\\'re dating. Sweetheart, you\\'re fired, but how \\'bout a quickie before I go to work. You don\\'t even have cats. We\\'ll try to keep it down. Are you seein\\' her again tonight? It\\'s just occurring to you? Oh, you\\'re gonna be great! Oh, how\\'d she take it? Ok, Pheebs, can I ask? So, he\\'s going out with her. I mean, is it really so terrible? Please, they\\'ve been going out a week. They haven\\'t even slept together yet, I mean, that\\'s not serious. No no no no no. You wanted me to take them down, so I\\'m takin\\' \\'em down. Ok? Whoa! I\\'m ok! I\\'m ok! Mr. Heckles, Mr. Heckles could you help me please? Ow ow ow. Ow ow ow. Ow ow ow. Ow ow ow. Ow ow ow. Ow ow ow. You. Yeah. Oh, yeah, check it. Definitely, I want some of that. Monica: You don\\'t have insurance? Why, how much is this gonna cost? Well what are we gonna do? Um, unless, unless I use yours. Well, now, wait a second. Who did I just put as my \"In case of emergency\" call person? Well, all right, then, forget it. Might as well just go home. Ow! Thank you. Thank you. I love you. Hi, this is my friend Rachel. Aren\\'t you a little cute to be a doctor? I meant young, young, I meant young, young to be a doctor. Oh, Good Rach. Right. So, he said it was just a sprain, and that was it. Not stupid. The very cute, cute, cute doctors asked us out for tomorrow night, and I said yes. What? Monica, they are cute, they are doctors, cute doctors, doctors who are cute! Was that the cake? I hope it\\'s ok. Ok, coming! Oh, that\\'s great. Look at that. You know what, it\\'s feeling a lot better, thank you. Well, listen, why don\\'t you two sit down, and we\\'ll get you some glasses....STAT. Ok, listen, I\\'m thinking, why don\\'t we just tell them who we really are. I mean, it\\'ll be fine, I really think it\\'ll be fine, I really do. Would you stop being such a wuss? I am not a baby. You know what? You know what? Every day, you are becoming more and more like your mother. I\\'ve been here about six years, and Rachel moved in a few months ago. Uh, I\\'m a uh, chef at a restaurant uptown. Yeah it is. Mostly because I get to boss people around, which I just love to do. And by the way, have I mentioned that back in high school, I was a cow. I use my breasts to get other people\\'s attention. Daddy, daddy, why? Why would I sleep with Billy Drestin? His father tried to put you out of business! You are dead! Hello? Uh, yeah, uh, hold on a second. Let me see if she\\'s here. It\\'s the woman from the hospital admissions office. Oh, god, what do we do, what do we do? No, you do it. What? You were right, this was just not worth it. Ok, let me just change. Hi, remember us? And I\\'m just gonna pay for this with a check. I know. I\\'m just not that bright either. What? Oh. Hi. Miren! El viejo desnudo est haciendo el hula hoop! (Look! The naked old man is hula hooping! OK, OK, I checked, we have Earl Grey, English Breakfast, Cinnamon Stick, Camomile, Mint Medley, Blackberry, and er, oh wait, there was one more, erm, Lemon Soother! You\\'re not the guy who asked for the tea, are you? .... OK. Thank you...Oh cool. Free sample of coffee. Oh. Right.... Oh great. Country club newsletter. My mother sends me the engagement notices for inspiration.... Oh my god... Oh my god, it\\'s Barry and Mindy! Barry who I almost... Mindy my maid of... What? Oh! I\\'m sorry. Oh. This is so stupid! I mean, I gave Barry up, right? I should be happy for them.... I am. I\\'m happy for them. No.... Oh.... Oh, I guess it\\'d be different if I were, with somebody. Oh. I don\\'t know. I guess it\\'s not about \"no guys\", it\\'s about the \"right guy\" you know? I mean with Barry, it was, it was safe, and it was easy, but there was no heat. You know with Paulo, that all there was, was heat. I, I mean it was just this raw, animal, sexual... Ah. I mean, do you think you can ever have both? You know, someone who\\'s, like, who\\'s like your best friend, but then also can make your toes curl? Hey guys, how was the movie? And I will see you tomorrow! Now, now the one in the feather boa, that\\'s Dr.Francis, now she used to be a man. OK? Oh look see, now there\\'s Raven. We hate her. We\\'re glad she\\'s dying. An... Wh... M... Marcel? Are you playing with Monica\\'s shoes? You know you\\'re not supposed to p...Whoa! Whoa! Marcel? Did you poo in the shoe? Oh my god. Bad, bad. Oh god. Oh. Sorry Barry. A little engagement gift. I\\'m sure you didn\\'t register for that! I don\\'t know, I don\\'t know, we were watching TV, and then he pooped in Monica\\'s shoe... I don\\'t know... The left one. Oh, oh, those little clunkly Amish things you think go with everything. Come on you guys, what am I going to do? What are we going to do? Oh my god. Come on you guys. He\\'s gonna be home any minute. He\\'s gonna kill me. Wha, wha, wh, what am I gonna do? What am I gonna do? Does anybody wanna trade? Oh. OK. He\\'s a, he\\'s a black Capuchin monkey, with a white face... ...with, with Russian dressing, and pickles on the side. OK. Thanks... Hi! Oh, great! It went great. Really great... Hey! Is that wine? Oh, I would love some, but you know what? You know what? Let\\'s not drink it here... I\\'m feeling kinda crazy. You wanna go to Newark? Oh god, Ross. I cannot do this... Oh god. OK. Alright, alright. OK. Ross, please don\\'t hate me... Ah. You know Marcel? Well, I, kinda , kind of lost him... I know, I know, I\\'m sorry... Ross. I\\'m doing everything that I can. I\\'ve got everybody looking for him, and then I... Who is it? See, I\\'ve even got Animal Control... Uh-huh. Why? Do you not like them? OK. Well, now, see, you never ever ever told us that... Hi! Thanks for coming! Oh. Oh yeah! You know what? That was a complete misunderstanding. It turned out it was a hat! Cat! What did I say? Cat. Yeah! Louisa? Oh my god! Monica! It\\'s Louisa! Yes! No. WHAT? Marcel! Oh, Ross, you don\\'t know that. Ross, you know, I\\'ve said I\\'m sorry, like, a million times. What do you want me to do? Huh? What do you want, you want me to break my foot too? Is that it? OK, here, I\\'m gonna break my foot, right now, there... ... Ow! Oh god, oh my god! There, are you happy now? You know? It\\'s not like I did this on purpose... Ross. Ross! ROSS! Hey! Then what\\'s with all the bananas? Oh, come on, Louisa. Alright, look, OK. In high school, I was the Prom Queen, and I was the Homecoming Queen, and the class president, and you... were also there. If you take this monkey, I will loose one of the most important people in my life. You can hate me if you want, but please do not punish him. Come on Louisa, you have a chance to be the bigger person here. Take it! Alright. Well then how about I call your supervisor and I tell her that you shot my friend in the ass with a dart? You know, with the right pair of pumps, that would be a great little outfit! Oh Ross, come on. No, no, it was my fault. I almost lost your... Sure. That\\'ll be good. Barry? ! Oh, that is so sick. Y\\'know, it was, uh.. it was actually really great. He took Then we took a walk down to Bendall\\'s, and I told him not Right,.. well,.. we never actually got to that... Oh, it was Yeah, but it was different with him today! And he wasn\\'t, Why? All right. All right all right all right all right, I know Wow... Wow! I\\'m not crazy, right? I mean, it was never like that. Ooh, and it\\'s so nice having this little sink here... Oh, it\\'s just... Oh, Barry, this was not good. Well, what about Mindy? No, not that, I mean, what about you and Mindy? No. No no no no, no. I mean, don\\'t do that. Not, I mean Oh, Barry..! Come on, this is all way too.. I had a bra. What?! Pretty well, actually... Oh, do I? ....We ended up having sex in his chair. I don\\'t know! I mean, we still care about each other. Please. If she said to you, \"Ross, I want you on this couch, Hello? Mindy! Hi! Hey, how are you? Yes, yes, I\\'ve heard, Oh, she wants to see me tomorrow...Oh, she sounded really Get down? Thanks, but I gotta go to work and get my eyes scratched Please. I haven\\'t heard from her in seven months, and And now, y\\'know, I\\'m like... I\\'m like the other woman! I Right, I\\'ll see you guys later... Mindy. Hey, you.... So, what\\'s up? Sure we should... So. Okay. Of course! Was that all you wanted to ask me? Ohhhh!! ...What? What? Oh sure it is! Um, what- what would make you think that? Really. Mindy, if it\\'ll make you feel any What? What\\'s what you were afraid of? What? Uh.. Oh, Mindy, you are so stupid. Oh, we are both so Smell familiar? Oh, I am so sorry. Hey. Got a second? Uh, we are here to break up with you. Uh- which one of us are you talking to there, Barr? Even when we were having sex in that chair? Please! During that second time you couldn\\'t have picked Well, the first time didn\\'t really count... I mean, y\\'know, Okay. Okay, we\\'ll be here! Hating you! Did you see how What are you talking about?! Mindy, the guy is the devil! Oh God. And I hope Barry doesn\\'t kill you and eat you in Aruba. Yeah. Yeah! Y\\'know, ever since I ran out on Barry at the wedding, You DON\\'T KNOW? Monica, would you calm down? The credit card people said that you only have to pay for the stuff that you bought. Oh no, not in my room! I\\'ll get him. Stop it! Marcel! Bad monkey! Let\\'s just say my Curious George doll is no longer curious. Oh, Monica. You are not still going over that thing. What? You\\'re not an artist. Oh, Monica, c\\'mon, you do cool things. Oh, it\\'s so late for \\'Shall we\\'... Nooo... Hey. What, what, so that you can dance with the woman that stole your credit card? Go to the post office! I\\'m sure her picture\\'s up! ...Okay, Monica, y\\'know what, honey, you\\'re kinda losing it here! I mean, this is really becoming like a weird obsession thing. Which one do you think she is? What does she mean? She could be you. What? You just click when they click. Nope. We took her to lunch. No way. No way did you do this. Go Monana! Well, you ladies are not the only ones living the dream. I get to go pour coffee for people I don\\'t know. Don\\'t wait up. Oh, somebody will. Where the hell\\'ve you been? Are you drunk?! Oh God, oh. Great, Monica, y\\'know what, you could\\'ve called, I have been up here, I\\'ve been worried... Monica? Monica! Yes, yes, it does. Okay, look, the restaurant called, they wanna know if you\\'re gonna be showing up for work? Okay Monica, what are you doing? You\\'re gonna lose your job! This is not you! Hello? Yes, she is, hold on a second, please. Monana, it\\'s for you, the credit card people. What? Marcel, this is for you. It\\'s, uh, just, y\\'know, something to, um, do on the \\'plane. No. Shut up! All right, all right, all right. Last night, I had a dream that, uh, you and I, were... Well, you were pretty damnedy good. Well, last night you seemed to know your way around the table. Get off. What are you playing with? Off to see young Ethan? Just a touch. Mon, I don\\'t understand. I mean, you\\'ve been dating this guy since like, what... his midterms? I mean, why all the sudden are you so... Oh. Could tonight be the Night? So, did you shave your legs? Aha! No, forget it. All right, fine. Um, you were not the only one there. Joey was there too. No. No, it was just the three of us. He, he, he. You know what? There were times when it wasn\\'t even me. Mon, Ethan called again. Mon? Ethan called again. I, I didn\\'t say any... I sw... I did not say anything, I swear. Where are you going? Hey, did you guys check out those new handdryers in the bathroom? True story. Let\\'s dry \\'em again. Oooooooooh. Oh, that\\'s nice. Oh, oh. Huh, Ross. Ross? You are. Well, um... We, we, we were just... What? What? I don\\'t know where the phone is. Ross? What, so I can\\'t lokk nice? There might be doctors there. Rossy, Rossy. Oh, Ross, relax. It\\'s probably like two dollars for the first contraction, and then fifty cents for each additional contraction. What, it\\'s ok when Chandler does it? Hi, I thought you might like some ice chips. And if you need anything else, I--do not believe we\\'ve met. Hi. I\\'m uh Rachel Green. I\\'m Carol\\'s ex-husband\\'s sister\\'s roommate. Oh, that\\'s funny! Hey. Yeah, well, it\\'s an important day. I wanna look nice. Um, has uh Dr. Franzblau been by? Well, where is he? He is supposed to be here. What if the baby needs him? Yeah, why? No, honey, they\\'re not, but don\\'t worry, because we are going to find them, and until we do, we are all here for you, ok? Ok? Ok, so anyway, you were telling me about Paris, it sounds fascinating. No, no, not at the moment, no, I\\'m not. Are you? Right, yeah, I\\'ve heard that about cute doctors. Oh. I\\'m a waitress. Yeah, gotcha. Ok. That\\'s fine. Yeah, honey, they wouldn\\'t miss this. Oh, god, I can\\'t believe one of us actually has one of these. Oh, I know. Look at him. You guys wanna get some coffee? Oh my god. Oh my god. Excuse me. Emergency! Excuse me! Oh, there you are! Hi! Oh, so, so, how was China, you? What? I am? Oh, look at that, yes I am. Enough about me, enough about me, Mr. Back from the Orient. I wanna hear everything! These are, these aren\\'t for you. These are for you. Welcome to our country. Ok, well, not a problem. We\\'ll just use them to stop the bleeding. Ok. Baggage claim? Ok. Airport, airport. Ross, not alone, Julie, arm around her. Cramp, cramp. You, you, you said he liked me. You, you slowpokes! And the chicken poops in her lap. Oh, I\\'m so sorry. I just gave away the ending, didn\\'t I? Oh! It\\'s just, I just heard this story in the cab, and it is all I can think about. Julie! Julie, isn\\'t that great? I mean, isn\\'t that just kick- you-in-the-crotch, spit-on-your-neck fantastic? Yeah, sure. Did you talk to him? Then, no. Here\\'s your lemonade. Oh. Well than, you better go take that back because they\\'re gonna charge you for that. Go go go go, come on! Well, what did you find out? Sorry, I thought you were talking to me. Ok, ok, ok. How did this happen to me? How did this happen to me? A week ago, two weeks ago, I was fine. Ross was just Ross, just this guy. Now he\\'s Rrrooossss, oh, this really great guy that I can\\'t have. I know you did. I\\'m just gonna deal with it, I\\'m just gonna deal with it. I gotta get out of here. Uh, morning. Do you guys think you could close your eyes for just a sec? Well, I sorta did a stupid thing last night. Ok, Paulo, why don\\'t you just go get dressed, and then you be on your way, ok, bye-bye. I don\\'t know, I just kinda ran into him last night. At his apartment. Is this juice? I know, I know I\\'m a pathetic loser. Yeah, he\\'s back. Is that a problem? I\\'m glad it\\'s not a problem. How is she? I\\'m ok. When I saw him get off that plane with her, I really thought I hit rock bottom. But today, it\\'s like there\\'s rock bottom, then 50 feet of crap, then me. Come on. How can I just tell him? What about Julie? I don\\'t know, I don\\'t know. Wait, are you leaving? Well, first of all, Paulo and I are not back together. It was just a stupid thing I did, and if I could go back in time and do it again, well, I wouldn\\'t. Um, second of all, what? No. No, I think that was the whole all. No. No no no no no. That\\'s Rodney McDowell. Andy McDowell is the guy from Planet of the Apes. You\\'re welcome. Yeah, I forget which ones. Thank you. What a bitch. Hey, guys, what\\'s up. Good, Pheebs. What\\'d you buy? You went shopping for fur? You bought boobs? Oh, this is so cute. Did you just say Hi, Jew? Phoebe, that is juice, squeezed from a person. They took Ben to the park. Where\\'ve you been? Oh, no problem. You can borrow it, by the way. Here are your keys, hon. Mon, if uh you were at lunch alone, how come it cost you uh 53 dollars? And sorta just put the receipt back in your pocket Monica, what is with you? Who\\'d you have lunch with? Who? What? You were with Julie? Oh. Oh my god. Yeah, right. Oh, please, you wanted to get caught. Oh, so you just sort of happened to leave it in here? Ok, Monica. I just have to know one thing. Did you go with her to Bloomingdales? Oh! Ok, ok, ok, I just really, uh, I just really need to not be with you right now. Well that works out good, because I\\'m not listening. Oh, I\\'m sorry, did my back hurt your knife? Yes. Yes. Monica, you don\\'t get it. It\\'s bad enough that she\\'s stolen the guy who might actually be the person that I am supposed to be with, but now, she\\'s actually, but now she\\'s actually stealing you. I love you too. I\\'d do anything for you, you know that. So. I just thought the two of us should hang out for a bit. I mean, you know, we\\'ve never really talked. I guess you\\'d know that, being one of the two of us, though, right? Really? Me? Well, you\\'re not totally paranoid. Um, ok, uh, oh god, um, when you and uh Ross first started going out, it was really hard for me, um, for many reasons, which I\\'m not gonna bore you with now, but um, I just, I see how happy he is, you know, and how good you guys are together, and um, Monica\\'s always saying how nice you are, and god I hate it when she\\'s right. Yeah, that\\'d be great. I\\'d love it. All right, Julie. What a manipulative bitch. Come on, they were not that huge. You don\\'t have birds. All right, bye-bye. \"Oh, my, god.\" We won. We won! How did this happen? Ok, so let\\'s talk money. Have you ever seen so much crap? Monica, Monica, look at this lamp. Is this tacky or what? We have to have this. What? Come on, it\\'s not like I\\'m asking for this girly clock or anything, which, by the way, I also think is really cool. Well, what about my stuff? You still think of it as your apartment, don\\'t you? Yes you do. You think of it as your apartment, and I\\'m just somebody who rents a room. Ok, while you \"mmm\" on it for awhile, I\\'m gonna go find a place for my new lamp. What? Monica, let it go. Well, then, you\\'ll just have to eat the other lamps. I am. Let me just get my coat. Oh, please, Monica. You\\'ve always hated my lamp, and then, all of a sudden, it\\'s just magically broken? Hey Chandler. Monica just broke my seashell lamp. Ok, you win. Chandler, you have just described virtually every man that we have ever gone out with. She\\'s right. She\\'s right. You are no different than the rest of them. Yeah. You\\'re not gonna end up alone. You are ready to make a commitment! What you got there? Something else that\\'s not yours that you can break? Thank you. It\\'s really not that big! Mom, would you relax. That was 10 blocks from here and, the, the woman was walking alone at night, I would never do that. Mom, c\\'mon, stop worrying. This is a safe street, this is a safe building, there\\'s nothing OH MY GOOOD, oh my God, oh I gotta go, I gotta go, I gotta go. OK, that\\'s fine, you just read the paper, I\\'m gonna get a pot, it\\'s not for you. OK, that\\'s fine, read the Family Circus, enjoy the gentle comedy. Aaahh, oh my God, oh my God, oh my God, oh my God, oh my God, oh my God, oh my God, oh my God, aaaaahh. It\\'s open you guys. Hi, hi can I help you? Uh, no she doesn\\'t but I can, I can get a message to her. What? What! Oh as, as opposed to your other multi-functional nipples? Ooh, Julie\\'s so smart, Julie\\'s so special. Ohh, I\\'m gonna have to get over it. God, see I didn\\'t know that\\'s I had to do, I just have to get over it. Bye-bye Julie. Hey. Hey, c\\'mon, cut it out. What? Sure. What? C\\'mon, talk to me. Why? Who\\'s not having. . . Are you and Julie not, are, are you and, are you and Julie not having sex? Wow. Is it, is it \\'cause she\\'s so cold in bed. Or, or is it \\'cause she\\'s like, kinda bossy, makes it feel like school? No, no no no, don\\'t need to know the details. No, no, no, no I don\\'t think it\\'s weird, I think, I think umm, in fact, in fact you know what I think? I think it\\'s sexy. Let me tell you something. As a woman there is nothing sexier than a man who does not want to have sex. Oh yeah. In fact you know what I\\'d do? I\\'d wait. Yes, absolutely. I would wait and wait. . . then I\\'d wait some more. Oh yeah, I don\\'t care how much she tells you she wants it, I don\\'t care if begs, she pleads, she tells you she, she\\'s gonna have sex with, with another man. That just means it\\'s working. More than jewelry. Oh, God, no problem. So you\\'re gonna go with the uh, waiting thing? What did, what did he say? Great, people having sex, that\\'s just what I need to see. Well, well um, you know, these movies are offensive and uh, degrading to women and females. And uh, and the lighting\\'s always unflattering. And, Monica help me out here. No, no, I mean, no, c\\'mon you guys, I mean, c\\'mon look it\\'s only eleven thirty. Let\\'s just talk, we never just hang out and talk anymore. Maybe that\\'s all we do, what about Julie? Well, you have been in our lives for nearly two months now and we don\\'t really know you. I mean, who is Julie? I mean, what do you like, what don\\'t you like? We wanna hear everything. So. I mean, who here does not have the time to get to know Julie? OK Julie, so now let\\'s start with your childhood, what was that like? Nah, uh, uh, uh, uh. Now, what exactly is in a cobb salad? What? So, it\\'s pretty late, you\\'re probably uh, not still planning on. . . Oh, well, are hey, are you nervous? Uh, OK, I mean uh, what, how are you gonna handle it. I mean, are, are ya gonna, are ya gonna talk about it before hand, are you just gonna pounce? Nothing, I mean, um, it is your first time with her and, you know if the first time doesn\\'t go well, well then that\\'s, that\\'s pretty darn hard to recover from. Maybe you should put it off. I know, yeah, sorry. Maybe it, maybe it doesn\\'t have to be this tough. I mean, maybe you were on the right track with this whole, you know, spontaneous thing. I mean, women really like that. Yeah, I mean, you know it, I mean, if it were me I, I, you know, I\\'d want you to, I don\\'t know, like catch me off guard, you know, with like a really good kiss, you know really, sort of um, soft at first, then maybe um brush the hair away from my face, and look far into my eyes in a way that let\\'s me know that something amazing is about to happen. And then, I don\\'t know, I mean you\\'d pull me really close to you so that, so that I\\'d be pressed up, you know, right against you. And, um, it would get kind of sweaty and uh, and blurry, and then it\\'s just happening. Ohh, God. Hi, Julie. Yeah, whoosh! So uh, what are you guys doing for dinner tonight? Do you guys ever get the feeling that um, Chandler and those guys just don\\'t get that we don\\'t make as much money as they do? For Ross, Ross, Ross. Hey. What? Oh, you know what, we haven\\'t even looked yet. Yeah, these are pretty ch-ching. Ok, I will have the uh, side salad. Uh, I don\\'t know. Why don\\'t you put it right here next to my water? Um, everyone? Ok, look you guys, I really don\\'t want to get into this right now. I think it\\'ll just make everyone uncomfortable. That\\'s \\'cause you have it. Basically, there\\'s the thing, and then there\\'s the stuff after the thing. Ok. Thank you. Ross, you have to understand that your nice thing makes us feel this big. Ok, we never shoulda talked about this. Me neither. What? Come on, you do what you want to do. Do we always have to do everything together? Fine. Happy birthday. Oh, well, it pretty much sucked. How was yours? Oh yeah. I used to babysit him. Hey, how\\'s his dad? On someone\\'s lips? Where\\'d you get the hickey? What party? Who gave you that hickey? Oh! What, as part of your poor friends outreach program? Oh! Ok. What\\'s up? But what about Phoebe? Ok, ok, so you\\'re not a fan, but I mean, come on, you cannot do this to her. Oh, no no no no. Oh no no no no. I have to do this to her? Honey, I\\'m sorry. Terry is a jerk, ok? That\\'s why we\\'re always saying \"Terry\\'s a jerk!\" That\\'s where that came from. Ok, you know what, lemme, let me just see what else I can do. All right, look, look. Why don\\'t you just let her go on after Stephanie whatever-her-name-is. I mean, you won\\'t even be here. You don\\'t pay her. It\\'s not gonna cost you anything. Come on, Terry, I\\'ll even clean the cappuccino machine. Of course I clean it. I mean, I,I will cleeeean it. I mean, I will cleeeean it. Done. Yeah. Who\\'s workin\\' for you babe? What? Oh, no, no no. I meant that he\\'s gonna be paying that other woman beause she\\'s a professional. Well, but Pheebs. Ok, everybody, let\\'s give a uh nice warm Central Perk welcome to-- Uh, to Stephanie Schiffer. Hey. Here. I thought you might be cold. Whoa, look at you, you did pretty well. Do you? Well, you know, honey, I don\\'t think everybody gets Smelly Cat. You know, I mean, if all you\\'ve ever actually had are healthy pets, then, whoosh! Well, people missed you in there. And in fact, there was actually a request for \"Smelly Cat\". Well, from me. And I know it\\'s not your big money song, but it\\'s my favorite. So, how was the party. Hey Phoebs, how\\'d it go with Scott last night? Yeah, but how much can you tell from a look? What? C\\'mon you guys, I don\\'t care, I have a date tonight. Yeah, Monica\\'s settin\\' me up. Oh what, my whole insane jealousy thing? Well, ya know, as much fun as that was, I\\'ve decided to opt for sanity. Oh yeah, c\\'mon, I\\'m movin\\' on, he can press her up against that window as much as he wants. For all I care, he can throw her through the damn thing. Together? Both of you? Together. Ohh, well, isn\\'t that just lovely. That\\'s something the two of you will be able to enjoy for a really, really, really, really, really long time. Well. Woah, look at that! I gotta go, I gotta date, with a man. Um, OK, you guys have a really uh, have a really good night and you two have a uh, have a uh, really good cat. OK, we\\'re not supposed to take these when we leave. How long do cats live? Cats, how long do they live figuring you don\\'t, you know, throw \\'em under a bus or something? That\\'s just great. Oh, right, clink. Oh, no, Michael, it\\'s not you. I\\'m sorry, it\\'s just, it\\'s this thing. It\\'s probably not as bad as it sounds but this friend of mine is, is getting a cat with his girlfriend. I mean he just started going out with her. Ah, hah-hah-hah-ho, yeah, he wishes. Oh, I\\'m sorry, look at me. OK, Michael, let\\'s talk about you. OK, OK. So, you ever get a pet with a girlfriend? I mean, it\\'s a cat, ya know, it\\'s a cat. Why can\\'t they get one of those bugs, ya know, one of those fruitflys, those things that live for like a day or something? What\\'re they called, what\\'re they called, what\\'re they called? Yes! Thank you. Oh, you\\'re not having fun, are you? Oh, look at me, look at me. Oh, I\\'m on a date with a really great guy, all I can think about is Ross and his cat and his Julie. I just want to get over him gosh, why can\\'t I do that? Yeah! Closure. That\\'s what it is, that\\'s what I need. God, you\\'re brilliant! Why didn\\'t I think of that? How do I get that? Closure, that\\'s what it is. Closure. Hello, excuse me. Excuse me, hel. . . woo Hello, excuse me. Hi, I\\'m sorry, I need to borrow your phone for just one minute. I can see that. I, just one phone call, I\\'ll be very quick, I\\'ll even pay for it myself. OK, you\\'re bein\\' a little weird about your phone. Thank you. OK Machine. Just waiting for the beep. Ross, hi, it\\'s Rachel. I\\'m just calling to say that uhm, everything\\'s fine and I\\'m really happy for you and your cat who, by the way, I think you should name Michael. And, you know, ya see there I\\'m thinking of names so obviously, I am over you. I am over you and that, my friend, is what they call closure. Ahhhh. Uhmm, I think there was a restraunt, I know there was wine. . . I don\\'t know, I, I feel like I had a dream about you last night but I, I don\\'t remember. Did we speak on the phone last night? Did you call me? Huh. Oh yeah, go ahead. Oh my God. Oh my God Ross, no, hang up the phone, give me the phone Ross, give me the phone, give me the phone, give me the. . . Ohh God. Ohh, ohh. Ohh, OK, OK, OK, well, basically, lately, I\\'ve uh, I\\'ve uh, sort of had feelings for you. Yeah, what, so, you had feelings for me first. Chandler told me. When you were in China. Meeting Julie. Are you over me? Wait, so, you\\'re going? OK, OK. Hi. Oh, that\\'s um, interesting. Alright, I got it Ross. What? Hey, I was doin\\' great before I found out about you. You think it\\'s easy for me to see you with Julie? I didn\\'t know then. And how come you never said anything to me. Right, you, you only had a year. We only hung out every night. Hey, there was one Italian guy, OK, and do you even have a point? Yeah, what\\'re you saying, you just sort of put away feelings or whatever the hell it was you felt for me? Alright, fine, you go ahead and you do that, alright Ross. \\'Cause I don\\'t need your stupid ship. Good. And ya know what, now I\\'ve got closure. It was unbelievable! Oh, it ended very well. Well, at first it was really intense, you know. And then, oh, god, and then we just sort of sunk into it. No, actually first they started on my waist. And then, they slid up, and then, they were in my hair. Hey, you. Good. How are you? Hey. Did uh, Ross call? Why didn\\'t he call? He\\'s gonna stay with Julie, isn\\'t he? He\\'s gonna stay with her and she\\'s going to be all, \"Hi, I\\'m Julie, Ross picked me, and we\\'re gonna to get married, have a lot of kids and dig up stuff together.\" Oh my god. Oh my god, I can\\'t believe you let me put this in my mouth. Hey, do you guys have...hi. Where you goin\\'? Oh. Well, what\\'s the other thing, what do I think? Really? Oh, god. Oh, oh, this is good, this is really good. Let me get my coat. Ok, he\\'s goin\\' to get my coat. He\\'s goin\\' to get my coat. Oh my god, you guys. I can\\'t believe this. This is unbelievable. What\\'s that? What\\'s that? What? I saw my name. What is it? Well what is it? Let me see. Ross, Chandler wrote something about me on his computer and he won\\'t let me see. And I\\'m in it? Then let me read it. Come on. All right, you know what? This isn\\'t funny anymore. There\\'s something about me on that piece of paper and I want to see it. All right, you know what, that\\'s fine. If you guys want to be children about this, that\\'s fine. I do not need to see it. What is this? Ross, what is this? Kind of ditzy? Too into her looks? Spoiled? Just a waitress? Oh! I do not have chubby ankles! She is not Rachem. What the hell\\'s a Rachem? Is that some stupid paleontology word that I wouldn\\'t know because I\\'m just a waitress. When somebody does not buzz you in, Ross, that means go away. That doesn\\'t mean please climb up the fire escape. Not interested. No. That\\'s what I said. No, you guys, you really don\\'t have to go, we\\'re done talking. No, you don\\'t, Ross. Imagine the worst things you think about yourself. Now, how would you feel if the one person that you trusted the most in the world not only thinks them too, but actually uses them as reasons not to be with you. Oh, well, that\\'s, that\\'s mighty big of you, Ross. I said don\\'t go! Well, then, I guess that\\'s the difference between us. See, I\\'d never make a list. Is that him again? Tell him I\\'d come to the phone, but my ankles are weighin\\' me down. Hey. Uhh, the mailman, the super. What? Ooh, goooosh, ooh, these are cookies smashed in the sports section. Horrible and degrading list of reasons not to be with me? Phoebe, I thought your dad was in prison. How have you never been on Oprah? Well, that doesn\\'t sound like a very merry Christmas. No, nothin\\'. Oh, by the way Mon, I don\\'t think the mailman liked your cookies. Here are the ornaments your mom sent. Wha... forget it Ross, no, I am not gonna stand here and make a list of. . . OK, you\\'re whiney, you are, you\\'re obsessive, you are insecure, you\\'re, you\\'re gutless, you know, you don\\'t ever, you don\\'t just sort of seize the day, you know. You like me for what, a year, you didn\\'t do anything about it. And, uh, oh, you wear too much of that gel in your hair. Yeah, and you know what? You\\'re right, I do feel better, thank you Ross. Oh, gosh, it\\'s hot in here. Did you just break the radiator? I\\'ll call the super. Hi, Mr. Treeger. Hi, it\\'s Rachel Green from upstairs. Yes, somebody, uh, broke our knob on the radiator and it\\'s really hot in here. Yes, it\\'s, it\\'s hot enough to bake cookies. Well, do you think we could have a new one by 6? What, no, no, Tuesday, we can\\'t wait until Tuesday, we\\'re having a party tonight. Hi, welcome to our tropical Christmas party. You can put your coats and sweaters and pants and shirts in the bedroom. Mr. Treeger. Oh, yeah, well hey, welcome to our sauna. Yeah, I\\'m with Mon. What\\'cha gonna\\' do? Nice seizing. . . gel boy. Huh-huh, no act--no, uhh, that, that is basil. Huh-hoo, yeah, no, it\\'s still basil. Wiper blades. I don\\'t even have a car. Joey, would you slow down, they\\'re not gonna be sold out of papers at one o\\'clock in the morning. Joey, honey, they don\\'t know what they\\'re talking about. We went through a lot of wine tonight, you guys. I had one glass. OK, so that\\'s. . . that\\'s what, two bottles, and yet somehow we went through five? Ehhumm, I don\\'t know, why don\\'t you taste it. Oh, well too late, sorry, you already had some. Yeah, we\\'re gonna, we\\'re gonna get some cake. Uhmm, well actually I\\'m already done, but I, I kinda got plans. Yeah, I uhh, I have a, I have a date. What, what is so strange about me having a date? Noo, no, I\\'m not mad at him, I\\'m, I\\'m not really anything at him anymore. I don\\'t know. Whatever I was feeling, I\\'m. . . not. Oh I know, I\\'m sorry you guys. You\\'re just gonna have to get used to the fact that I will not be dating Ross. Here he is. Hi. Guys, this is Russ. What\\'s the matter? What, isn\\'t he sober? Ohhh, OK. Maybe it was just the kind of story where you have to be there. Hi Russ, I\\'ve just got two more tables to clean and then we\\'ll go, OK. Hi. Hu-ahh, waitressing? Huh, Bob Sagett? Oh. Well, we\\'re not seeing each other, so. . . Well, yeah, this is the deal. Um, Russ, you ready? Bye. What? No, Phoebs, I\\'m dating Russ. Steve sleeve. Pheobe, what the hell are you talking about? Other than there names being similar, I\\'m sorry, I do not see what you\\'re seeing. Ooh, ooh, ooh, ooh. Did Joey say what he was gonna do when he left? I don\\'t know, who would I have to sleep with? Why would I have to sleep with you? Oh God, even his knock is boring. What happened? Did I miss it? Did I miss it? I\\'m sorry, what? That\\'s great! What do you mean? Ok, who ordered what? Oh god. I know, but it\\'s just it\\'s the first time, and I just don\\'t want her to think that because I didn\\'t marry Barry, that my life is total crap, you know? Mom! Pretty much. This is Joey, and Phoebe, and this is Chandler, and you remember Ross. Oh Mom! Really? Yeah, well just be glad he\\'s not playing a smaller instrument. I know. And Mom, I realize you and Daddy were upset when I didn\\'t marry Barry and get the big house in the suburbs with all the security and everything, but this is just so much better for me, you know? For...me. Well, what do you mean? Oh god. I think I\\'m gonna be sick. None. No! They didn\\'t even talk to each other. God, how was I supposed to know they were having problems? I just can\\'t believe this is happening. I mean, when I was little, everybody\\'s parents were getting divorced. I just figured as a grownup I wouldn\\'t have to worry about this. Well, then, you know, couldn\\'t she have just copied my haircut? These are from Halloween three years ago. No, that was his costume. See, he\\'s actually an orthodontist, but he came as a regular dentist. Actually, what I think you said was, \"don\\'t touch that, and get the hell out of my kitchen.\" Hey, Mon, you want some help? She\\'s still with you? God! Oh! What\\'s new in sex? Oh, I\\'m sorry. You know what? I cannot have this conversation with you. I mean, god, you just come in here, and drop this bomb on me, before you even tell Daddy. What? What do you want? Do you want my blessing? You want me to talk you out of it? Then what? What do you want? Why on earth would I understand this? Oh. Hey, Mom? Having fun? There\\'s more alcohol, right? I had a wedding. Oh, Ross, you had to, I mean, he was humping everything in sight. I mean, I have a Malibu Barbi that will no longer be wearing white to her wedding. Ya know, in crazy world, that means you\\'re married. Oh, Phoebe, that really cute guy is here again. And she\\'s not crazy? Oh my God. Not at all inappropriate! Well, so what\\'re you gonna do? No no no, wait, I wanna see what happens. Well how can that be, you were just kissing Sabrina? Oh, I know, I know. Yes, yes it is true. And I know this because, because he pretended to be Drake to, to sleep with me. You\\'re kidding. OK. Now just how big of a star is Marcel? What what what what? Ya think? No, was he any good in it? Wow, so why don\\'t you go talk to him? What, so you go over there, you tell him you think he\\'s cute, what\\'s the worst that could happen? OK, I\\'m doin\\' it for ya. Excuse me. Hi. Um, this is gonna sound kinda goofy but uhhm, my friend over there, who cooks by the way, um, she thinks you\\'re cute. I, I don\\'t know, um, do you think you\\'re cute? OK, we\\'re kinda gettin\\' off the track here. Um, I was supposed to come here and tell you my friend thinks you\\'re cute. So what should I tell her? Agh, what a jerk. I kept talking about you and he kept asking me out. I mean, naturally, you know, I said no. He just kept asking, and asking, and asking, and asking, and asking, and asking. Jean-Claude she said yes, I\\'ll see you tonight. Thank you. And then Jean-Claude took me to that place Crossroads and that\\'s where we hung out with Drew Barrymore. Does anybody need anything? That is so unfair. Alright, I feel that this is totally unjustified. She gave me the green light, I did nothing but-. Do you think I can\\'t see you in the TV set? That is the most ridiculous. I did not sell you out. Would you let me talk. OK, well, you wouldn\\'t let me finish and I was jus- Ow. That hurt Ow, you stop flicking. Oh, what do you, you want me to stop seeing him, is that what you want? You want me to just call him up and tell him that you\\'re seeing him instead? That\\'s what you want? Oh that\\'s what you want. Fine. No. No. OK, OK, that is my favorite sweater, that is my third date sweater. OK, you wanna play? OK, let\\'s play, let\\'s play. You give me back my sweater or it\\'s handbag marinara. Oh yeah. Well, at least I wasn\\'t too chicken to tell some guy I thought he was cute. I\\'ll help you throw out your purse. Well, I\\'m sorry I went out with him when I knew you liked him. OK, well, bye. OK, well, bye-bye again. Impressive. Oh yeah. Hi. Oh, well, you know, they\\'re just separated so, you know, never know, we\\'ll see. What, what incident? What? What are you, what are you doin\\'? What? Saving, saving, saving me from the pleasant conversation with the interesting man, saving me? OK, Ross, listen to me, I am not yours to save. What? OK, you know what, are, are you being like, the blind date guy again? Ross, there is no us, OK. No, listen to me. I fell for you and I get clobbered. You then fall for me and I again, somehow, get clobbered. I\\'m tired of being clobbered, ya know, it\\'s, it\\'s just not worth it. NO but Ross. We are never gonna happen, OK. Accept that. No, no, ACC-cept that. Hey. I\\'ve got something that\\'s gonna make you happy. Guess what Gunther found? Hi. Oh my God. They had to reduce it because of, of my deviated septum. Oh. Ahh, so do you, beautiful. What? Oh, that\\'s OK, it\\'s just the shoulder, it\\'s not my dress. Oh, thanks. So, uh, what are you gonna do this summer? Is my hook unhooked? These things keep falling down, I can\\'t. . . Oh, the guys are here. Oh my God, look there\\'s Roy Gublik. Where\\'s Chip, why isn\\'t he here yet? I can\\'t go to my own prom without a date, I can\\'t, it\\'s too late. I can\\'t believe I don\\'t get to go to my own prom, this is so harsh. Hi you guys. Hey you. So, uh, how was your day? Really? Mine too. OK. It is our first official date. Our first date. Hi. God, oh God Monica, I forgot. This is our first date. Oh, thank you, thank you, thank you, thank you. See Phoebe, Phoebe. C\\'mon, I\\'m not saying it was a bad movie, I\\'m just saying, you know, it was a little. . . hard to follow. I know, I just didn\\'t want to wear my glasses on my first date. Monica. Honey, I\\'m just checking. Monica. Monica. I\\'m sorry. Oh God, I\\'m sorry, it\\'s just that when you moved your hands down to my butt, it was like woah, Ross\\'s hands are on my butt. Sorry. Well it\\'s not, honey I\\'m sorry, I guess I\\'m just nervous. I mean, it\\'s you, ya know, it\\'s us. I mean, we\\'re crossing that line, sort of a big thing. OK. I know, I know, I know, I know. I was just thinking about when they were there the last time, I\\'m sorry. I\\'m sorry, I\\'m sorry. OK, OK, look, woah, I promise, I\\'m good, I\\'m not gonna laugh anymore. OK put your hands back there. Just one cheek. Alright, just put your hands out and I\\'ll back up into them. C\\'mon touch it. Oh, come on squeeze it. Rub it. Oh, come on, would you just grab my ass. Hi you guys. Hi. Listen, I was um, thinkin\\' about. . . OK, listen, I\\'m sorry about last night and I really want to make it up to you. Well, I was thinking maybe a um, a romantic dinner with um, candles and wine and then uh, maybe going back to my place for um, dessert. What\\'s this. Hi you guys. Alright you guys, I\\'m takin\\' off my shirt. Ya know, Dr. Burke kissed me once. When I was um, 7, I crashed my bike right out in front of his house and to stop me from crying he kissed me right here. I know. It\\'s OK, it\\'s fine. Oh. Yeah well, you know what, so is uh, Sorentino\\'s. No, you know what, it\\'s late, everything\\'s gonna be closed. Why don\\'t we just do it another night? We won\\'t? OK, that\\'s dead right? What is this? What are we doing? Grape. Oh, God. Ah, so what are we looking at? Really? Oh it\\'s OK. You were worth the wait, and I don\\'t just mean tonight. This time it\\'s not so funny. Ah, oh God. Oh, honey, oh that\\'s OK. Oh, thank God. Hi you. I can\\'t believe I\\'m waking up next to you. What? OK, ready when you are. Yes, but you can not tell Ross \\'cause I want to surprise him. Hi. Well hey, you don\\'t - you don\\'t think they\\'re kind of cool? Well I. . . Uh-huh. Uh-huh. No. Well, yeah, maybe. What\\'s 1922? Yes I do, it\\'s just that Ross is. . . No. You? I know, so do I. Oh Phoebe, I\\'m so glad you made me do this. OK, lemme se yours. Phoebe we just saw mine, let me see yours. You didn\\'t get it? Why didn\\'t you get it? Phoebe, how would you do this to me? This was all your idea. Really? You don\\'t say, because mine was licked on by kittens. Oh. Is Ross here? Oh really, OK. What? You didn\\'t get one. That is not a tattoo, that is a nothing. I finally got her back in the chair, bairly touched her with a needle, she jumped up screaming, and that was it. Oh, what a load of crap. That is a dot. Your mother is up in heaven going, \\'Where the hell is my lily, you wuss?\\' OK, Phoebe, that is not a tattoo, this is a tattoo. Maybe. But just a little one. Phoebe got the whole world. Well? Really? I guess. Yeah, who\\'s gonna eat all our food, and tie up our phone lines, and - is that my bra? What the hell you doin\\' with my bra? Hey, nice pillow. So now tell me, is this genuine Muppet skin? Hey, nice toilet. OK, here we go. Honey, I\\'m sorry, they were all out of apple pie, someone just got the last piece. Oh God. Ross, OK, if you care about me at all, you will get the pie out of the man\\'s hood. Pie in the hood, pie in the hood. Go. What\\'s goin\\' on? Well, you\\'re not sixteen, you\\'re both adults now. Or ya know, he\\'s rubber and you\\'re glue. I\\'ve never wanted you more. Look, Chandler, he has moved on, OK, you have to too. It\\'ll never last, he\\'s just a rebound roommate. Pretty uhm, different huh? Would you guys stop. Oh my God. Now I\\'m mommy in this little play? Alright look, I refuse to get sucked into this like, weird little Geller dimension thing OK. So I\\'m gonna go and take a nice long hot bubble bath because you kids are driving me crazy. Well, how did you find out? OK, Phoebs. But what about you? And you\\'re no friend to those with noses. Great set tonight Phoebs. Phoebe\\'s dead. Wow, I am so glad I\\'m not Monica right now. Uhhhooo. Well, there\\'s you. Ok, uh, Billy Dreskin, Pete Carney, Barry, and uh, oh, Paolo. Oh honey, are you jealous of Paolo? Oh, c\\'mon, I\\'m so much happier with you than I ever was with him.ROSS: Really? Oh please. That Paolo thing was barely a relationship. All it really was was just, ya know, meaningless animal sex. Ok ya know, that sounded soooo much better in my head.CHANDLER: Eddie, I didn\\'t sleep with your ex-girlfriend. Ross, Ross, please listen to me. Ross, you are so much better for me than Paolo ever was. I mean you care about me, you\\'r loving, you make me laugh.ROSS: Oh, hey, if I make you laugh, here\\'s an idea, why don\\'t you invite Paulo over and have a little romp in the sack and I\\'l just stand in the corner and tell knock-knock jokes.RACHEL: God, Ross, look, what you and I have is special, all Paolo and I ever had was...ROSS: Animal sex, animal sex? So what\\'re you saying, I mean, you\\'re saying that like, there\\'s nothing between us animal at all I mean there\\'s not even like, uhm, a little animal, not even not even like, like chipmunk sex?RACHEL: Ok, Ross, try to hear me. Ok, I, hey, I\\'m not gonna lie to you. Ok, it was good with Paolo.ROSS: Knock-knock. But, what you and I have is so much better. Ok, we have tenderness, we have intimacy, we connect. Ya know, I swear this is the best I have ever had.ROSS: Until now. Oh, hi. Oh my God, honey that\\'s great. Oh they\\'re in the top drawer. Hurry. Ooooh yeah. Ok, I, I will do your laundry for one month. Ok, ok, ok, I will, I will, I, hey, I will clean the apartment for two months.MONICA: Alright, I tell you what, I\\'ll give this to you now if you can tell me where we keep the dustpan.RACHEL: Agghhh. Rock-paper-scissors? Yeesss. So, he\\'s on the show, he knows what happens. Oh good. Joey. Oh c\\'mon Joey, we care about you. Well, maybe they can find a way to bring you back. Yeah, Joey honey, I don\\'t know if this\\'ll mean anything to you but you\\'ll always be pre-approved with us.JOEY: No, that means nothin to me. Hey. Whe-ell, look at you, finally got that time machine workin\\' huh? Hey. Woah, woah, woah, what book is this? Men just take out wind? Wow. Well that sounds kinda cool, kinda like The Hobbit. Oh, God, oh, God, I mean it\\'s just so. Uhh, I mean this is like reading about my own life. I mean this book could have been called \\'Be Your Own Windkeeper Rachel\\'. NO! No, why do we always have to do everything according to your time table? No, see this isn\\'t about the movie theatre, this is about you stealing my wind. Yes, my wind. How do you expect me to grow if you won\\'t let me blow? Ok, I just, I just really need to be with myself right now. I\\'m sorry. You\\'re right, I don\\'t have to apologize. Sorry. Damnit! Yeah you like totally let him wash his feet in the pool of your inner power. Ok, ok, ok, moving on, moving on, next question. Ok number 29, have you ever betrayed another goddess for a lightning bearer? Ok, number 30. Not uh, not to my recollection. Only \\'cause you took up half the circle. Well not when they find out you slept with Jason Hurley an hour after he broke up with Monica. Here are your cakes. No, I know, they\\'re from me. Look you guys this is not good. I mean we have enough trouble with guys stealing our wind without taking it from each other. You know. Thank you. So are we good? We\\'re good? Ok, let me take these cakes back \\'cause they\\'re gonna take that out of my paycheck. What? That\\'s not the end. Hey Phoebs, whatcha got there? Hey. Wow, he must like you the best. No luck huh? Oh, yeah sure, Ok. Uh, I\\'m holding Ben. Ok. This is how I would hold a football. Ok, I\\'m sorry, I\\'m just not very good with babies. I mean I haven`t been around them, I mean, you know, since I was one. Really? What? You think about stuff like that? Two, two babies? Then what\\'s gonna happen? Uh-huh. Wow. Wow, that\\'s great. Great. Ok, wow, you know what. I\\'m off my break now so uh, um here you take this and um, I am gonna go pour these very nice people some coffee. Ok. Oh look at that, I don\\'t have a pot. I don\\'t have a pot. Well, hey, maybe I\\'ve got one at home, or in Scarsdale. Hey is that a door? Aghh. Yeah well, Ross just made plans for the whole century. I don\\'t know, you tell me. One minute I\\'m holding Ben like a football, the next thing I know, I\\'ve got two kids, I\\'m living in Scarsdale complaining about the taxes. Ross, you have planned out the next 20 years of our lives, we\\'ve been dating for six weeks. Yes, but I, I think about who\\'s apartment we\\'re gonna sleep at tomorrow night and, and where we\\'re gonna have dinner next Saturday night. I do not think about what our childrens\\' names are gonna be. You know what our childrens names are gonna be. What was the book? Ok, Ross, Ross, ok listen, what we have is amazing. But I do not want to have everything decided for me. I spent my whole life like that. It\\'s what I had with Barry, that was one of the reasons I left. I, I like not knowing right now and I\\'m sorry if that scares you but if you want to be with me you are gonna have to deal with that. Thank you. I didn\\'t know that. Fine, I will. Oh yeah. Well I love you too. Yes it is. Well you better. Ok Ross, just so you know, calling it a poopie diaper doesn\\'t make this process any cuter. Ok, we can do this now, can\\'t we Ben? Yes we can, yes we can. There. I did it. I did it. Look at that, oh, stays on and everything. Hi. I\\'m sorry, what did you just say? Did you just say hi? Oh my God, Ross, Ross, Ben just said \\'Hi\\'. Ben just said hi. Ye-, no, my Uncle Hi. Oh, I\\'m sorry, I guess I just bring it out in him. Guess what. Ben just said his first word. You know, actually it\\'s more like, hi. Hi. Hi. Hi. Take care. Did, did he just, did he, did he just say, he said bye. He said bye. You said, you said bye to me. You said bye to me. Ok honey, you really need a job. Ok, so uh, who wants the last hamburger? Hey, how\\'d the interview go? So don\\'t do it. What\\'s the matter with you? Noo. Oohhh. Hi. What? Monica, what are you talking about? You don\\'t know the first thing about the stock market. We love you, we\\'re here for you. Ohh, what is in that? No no, \\'cause mayo, that would make it gross. Run Phoebe run. Are you kidding me? Ok, here, I know what we can do. Ok, doggie get the- aahhh. Ok go get the sandwich, get the sandwich doggie. Good doggie get the sandwich, get the...ok, Joey, the dog will lick himself but he will not touch your sandwich, what does that say? What\\'s the matter? Yeah Phoebe, I completely understand. Time is money my friend? How did you make $17. What happened to uh, MEG.? Hey Phoebs. Oh hey, how\\'s the dog? Oh, thank God. Ok, so Phoebe, now are you gonna call your dad and let him know that his dog is ok? She\\'ll be a much better friend when the market closes. Why the voice. What? For what? Why, when did you get out of the game? Oh no. Ok. Look uhh, Mon I\\'m, I\\'m really sorry. I, I don\\'t have it. Nobody does honey. Look at her. Agh, it was the graduation from hell. Ya know, I mean this is supposed to be a joyous occasion. My sister\\'s graduating from college, nobody thought she would. It\\'s a true testament to what a girl from long island would do for a Celica. My parents happened. All they had to do was sit in the same stadium, smile proudly, and not talk about the divorce. But nooo, they got into a huge fight in the middle of the commencement address. Bishop Tutu actually had to stop and shush them. But you know what, you know what the good news is? I get to serve coffee for the next 8 hours. Ohh, thank you for the wonderful dinner. Ohh, thank you for my beautiul earrings, they\\'re perfect. I love you. Now I love you even more. Oh my gosh, wow. Monica. Oh my god. Mom. This is so great. Wow you, you. I had no idea. No, I knew. What? Why. Daddy. Both of them are here, both of them, both of them are here? I can\\'t believe this is happening. I do. Well, I have to be, I don\\'t really have a choice, I mean, you know, I could look at the bright side, I get two birthday parties and two birthday cakes. What? Listen honey, can you keep dad occupied, I\\'m gonna go talk to mom for a while. Uhh, let\\'s just stay clear of \\'I\\'m the guy that\\'s doing you daughter\\' and you should be ok. Well those are very popular frames. Yeah, like a chimney. You want me to see a therapist? Ok mom, you know what, fine, I\\'ll make an appointment ok, but you know what, right now, I gotta go, I gotta go do a thing. Daddy, daddy, you know what, I really wanna hear more about this, I really do, but I just have, I just have to do a, some stuff. This is it, isn\\'t it? I mean, this is what my life is gonna be like. My mom there, my dad there. Thanksgiving, Christmas. She gets the house, he\\'s in some condo my sister\\'s gonna decorate with wicker. Oh, Chandler how did you get through this? Ya know, I just, so weird. I mean I was in there just listening to them bitch about each other and all I kept thinking about was the fourth of July. It\\'s just this thing. Every year we would go out on my dad\\'s boat and watch the fireworks. Mom always hated it because the ocean air made her hair all big. My sister Jill would be throwing up over the side and my dad would be upset because nobody was helping and then when we did help he would scream at us for doing it wrong. But then when the fireworks started, everybody just shut up, you know, and it\\'d get really cold, and we would all just sort of smush under this one blanket. It never occured to anybody to bring another one. And now it\\'s just... Oh ok. Ok. Ok, I\\'ve got one. Wow, those things almost never come true. Ok, Chandler, Mon, there\\'s only one bananna nut muffin left. You went out with a guy in the Navy? So wait, this guy goes down for like two years at a time? Well I\\'ve had it. Oh, this lipstick looks just great on you. You see, you look beautiful. For god sakes, dim the lights. Oh, stop that, stop that right now. No sorry hon, Monica\\'s orders. And there\\'s a peach cobbler warming in the oven so the plate\\'s gonna be hot but that shouldn\\'t be a problem for you. So uh, Ryan, were you shipping off to? Well do you get to look through one of those like, those periscope thingys. It was nice to meet you. So do you uh, think we can get you one of those uh, uniform things? Oh yeah. Ok. Oh I\\'m sorry, we\\'re clo-... Hey sailor. I\\'ll say. Well then uh, we better make this night count. Oh wait, I forgot to turn off the cappucino machine. Anchors away. Oh no no, my purse, my purse, my purse, my purse, my purse, my purse. Oh, you know what. I forgot to turn off the bathroom light. Hey Joey, how\\'d the audition go? Yeah, right. I can not believe I have to walk down the aisle in front of 200 people looking like something you drink when your nauseous. Because I promised Mindy I would. Look you guys, I have to go, I\\'m the Maid-of-Honor. And besides you know what I just need to be in a room again with these people and feel good about myself. Nooo! Wow! What\\'s that like? Afraid to ask him? Hey! Hi. Yeah, when I was in the bathroom I saw the window that I crawled out of at my wedding, and God, I just started thinking that I shouldn\\'t be here, you know I shouldn\\'t, people are going to be looking at me and judging me and, and thinking about the last time. God I know, you\\'re right. Okay, I\\'ll see you after the thing. Thank you, Okay, Okay. Why the hell didn\\'t you tell me! Oh my God this is sooo humiliating. I think the only thing that tops that was, was, was when I was in the eight grade and I had to sing the Copa Cabana in front of the entire school. I think I got about two lines into it before I ran and freaked out. Oh my God, my entire life is flashing before my eyes. Oh Ross, would you stop, you got me, I\\'m dating you. Oh hi, Mr. Wineburg, hi Mrs. Wineburg. Okay, now that is the third time someone has said something like that to me today. Oh, hi! I know. Oh honey, I\\'m so proud of you, Min. Yeah, I love that story. Um, I got a question for you guys. Why do people keep is saying that is good to see me up and about? Insane! What?! What. Why are you adding, why are you adding, why are you adding, why are you adding? Oh dear God. See you in the parking lot. Ya, know what Barr, I\\'m not gonna leave. I probably should, but I\\'m not, see \\'cause I promised myself that I would make it through at least *one* of your weddings . See now, tonight, all I really wanted was to make it though this evening with a little bit of grace and dignity. Well , I guess we can all agree that\\'s not gonna happen. There\\'s nothing really left to say except.... \"Her name was Lola. She was a showgirl. With yellow feathers , feathers in her hair, and a dress cut down to there. She would...\" \"...marenge, thank you honey, and do the cha-cha. And while she like to be a star, Tony always tended bar. At the, wait, wait, everybody..\" At the Copa, Copa Cabana The hottest spot north of Havana. At the Copa, Coo-pa Ca-ban-a, music and fashion were always the passion, at the Copa.... Chandler, relax, Chandler, she\\'ll be here. Hey-hey! Oh, look at you, all sexy. Ooooh! Wow!! Oh, hi. How come you didn\\'t come over earlier? Yeah, I just have to get dressed. Yeah! Once, I figure out what I\\'m wearing. You guys, does this look like something the girlfriend of a paleontologist would wear? Uh, no. Wait, you know what, this is the outfit that makes my calves look fat. Nevermind. What?! Is this a little too... Pheebs, what happened? Ooooh! Honey, well we\\'ll find you something. Do you wanna wear my black jacket? No, you\\'re right. Well, we\\'ll find something. Let\\'s just get you out of that. Come on. Monica, can Phoebe borrow your green dress? Pheebs, you go with Monica and try on her green dress. If that doesn\\'t work, you can wear my gray silk one. Oh, gosh, what am I wearing?! Well, hon-ey. I\\'m just trying to look nice for your big night. Ross, that was a Halloween costume, unless you would like me to go to this thing as Little Bo Peep. Yeah, which, by the way Chandler, I would like back one of these days. Oh, it\\'s perfect! But not for tonight. No honey, we\\'re sorry, we didn\\'t mean it. I love you. I love you. Okay, Pheebs, quick, what shoes should I wear? The black or the purple? Yeahh, but, but those really go better with pants. Maybe I should wear pants? But I... All right. I\\'m not gonna gooo. No, I think I\\'m gonna catch up on my correspondence. I\\'m not gonna gooo, so I think that will accomplish the not going. Well, ever since I was humiliated and yelled at in front of my friends, I\\'m just, I don\\'t know, not in a museum benefitty kind of mood. It\\'s fine. I\\'m not mad. I\\'m just not going. Right. Um, hum. No. Right. Right, and the humiliating. Um, hum. Right. Yes, Ross. No, no, no, now wait, wa, wa, waa-it a minute, wait a minute, wait a minute, wait a minute. That actually, uh, that sounds interesting. I think you *should* drink the fat. No, no, no, wait! Okay, okay. Don\\'t! I\\'ll go, I\\'ll go! You were really gonna do that, weren\\'t you? You were gonna drink the fat. And I still have about five seconds to spare. Okay, that was about seven seconds. Come on. Oh! And, uh, by the way.... I\\'m going commando, too. I didn\\'t know there were docks. Did you tell the doctor you did it jumping up and down on your bed? Monica\\'s making jam. Mon? \\'Gone for more jars. Back later. Monica Geller.\\' What? What, what, what? Oooh. Honey, come on, I have to be at work in like ten minutes Oh, all right, well it\\'s not like I\\'m employee of the year or anything. Oh, oh, that\\'s what you\\'re talking about. Hey. Okay, walk us through it, honey, walk us through it. Nooo! Well you know, after about thirty or forty fights, you kinda catch on. Oh honey, I\\'m sorry we can\\'t help you there, \\'cause we\\'re cuddlily sleepers. Okay, I\\'m late for work. All right are you guys gonna come down? Good luck Chandler. Bye hon. You\\'re so pretty. Well, what happened to your jam plan? Are you serious? Down at the docks again? Honey, I\\'m sorry, but he\\'s right. I love you, but you\\'re crazy. When did you go to a sperm bank? Phoebe, what are you doing? Pheebs, this guy has been obsessed with your sister, for God knows how long, okay, you don\\'t just give up something like that. Oh my God, what happened? Wow! Spinning that sounds like fun. Ross\\'s what? Honey, you got a little thing on your... Yeah. Hello. Noo way, Kevin. Ross, you are so pathetic. Why can\\'t your son just play with his doll? What\\'s the big deal? Why don\\'t you wanna see Janice? Men are unbelievable. Amazingly, that makes sense. Sure Pheebs, you know, that\\'s what it\\'s there for, emergencies and pretend agents. Very nice touch. Unbelievable. Honey, this will help. Okay, wait a minute, wait a minute, wait a minute. Maybe it\\'s not so bad. How did you leave it? Yeah, well that\\'s that lo-cal, non dairy, soy milk junk. We sort of, we save the real stuff for those really terminal cases. Yeah, you do. This is a very critical time right now. If you feel yourself reaching for that phone, then you go shoe shopping, you get your butt in a bubble bath. You want her back you have to start acting aloof. Right. So, what you have to do is, you have to accidentally run into her on purpose. And then act aloof. Oooh, honey, you\\'re not a total loser. Oh. G.I. Joe? Do you really think he\\'s gonna fall for that? Yeah, it is. Shhh...I don\\'t know what to do, this is totally unprecedented. Yeah. Yes, and grumpy. He\\'s soo lucky, if Janice were a guy, she\\'d be sleeping with somebody else by now. Hey Pheebs. Any sign of your brother? I thought you only met him once? Well relax, he\\'ll be here. Well, actually Gunther sent me. You\\'re not allowed to have cups out here, it\\'s a thing. Now, you do realize that she\\'s a cartoon, and way out of your league? Oh, I don\\'t know, I guess, Chris O\\'Donnel, John F. Kennedy, Jr., Daniel Day Lewis, Sting, and Parker Stevenson. Hardy Boy. What about you honey, who would be on your list? Hi! Well, so, now, do you guys have a lot of big plans? Three of your five, what? Oh my God! You are giving this a lot of thought. So? Yeah, \\'cause that\\'s why you won\\'t get Isabella Rosselini, geography. Well, it\\'s about time. All right let me see. Uma Thurman, Winona Ryder, Elizabeth Hurely, Michelle Pfieffer, and Dorothy Hammel? Okay honey, you do realize she only spins like that on ice. Oh! Come on! Okay sir, um-mm, let see if I got this right. Ah, so this is a half-caf, double tall, easy hazel nut, non-fat, no foam, with whip, extra hot latte, right? Okay, great. You freak. Oh-oh, you lie. Ross, it took you ten years to finally admit you liked me. You know what honey, you go ahead, we\\'ll call her an alternate. Okay. Honey, he\\'s about to go hit on Isabella Rosselini. I\\'m just sorry we don\\'t got popcorn. Excuse me, there was no time! Does anybody need more coffee? Oh, um, no, no, no, no excuse me, hello. Hi. My friend ordered an onion, not an olive, and uh I ordered a rum and Diet Coke, which I don�t think this is. That�s all right. I mean hard is it to get a couple drinks right, huh? Ummm, I think it�s time to see the ring again. Yeah, I know. Oh, I don�t know. Well maybe it�s just the idea of Barry for the rest of my life. I don�t know I think I feel like I need to have one last fling, y\\'know, just to sorta get it out of my system. I�m serious, I really, I think I need just to have some... meaningless, sex y\\'know, with the next guy that I see. Yeah, so? Monica! Look! Hi! What do ya think? Yes, his name is Barry, he�s a doctor, thank you very much. Thank you. So how-how �bout you, are-are you seeing anybody? Oh, but that�s okay. Yeah. Oh, yeah, sure, sure, sure, sure. Listen, can we please have lunch the next time I�m in the city? Okay! Bye! Don�t say anything. I don�t wanna speak, I don�t wanna think. I just want you to take me and kiss me and make love to me right here, right now. What? Oh, sorry. Um, Barry. I love how he cares so much about stuff. If I squint I can pretend he\\'s Alan Alda. \\'Okay. Okay, daddy we\\'ll see you tomorrow night. Okay bye-bye.\\' Are ah, having dinner with my Dad tomorrow night, I hope that\\'s okay. Ross, my father doesn\\'t hate you. But honey he calls everybody by a nickname! Okay, look, I know, all right, just one dinner, please, just one night for me, please. I just want him to love you like I do. All right, well not exactly like I do, but, but, if you do come to dinner, I\\'ll love you like I do in that black thing that you like. Thank you. Hi Daddy! You remember Ross. Yeah, actually Daddy Ross is allergic to lobster. Okay. Aw honey stop! It\\'s not that bad. Yeah. That\\'s Daddy. Yes, it bothers me Ross, but y\\'know if he was a regular at the coffee house, I\\'d be serving him sneezers. So. Ross, I\\'ve bugged him about this a million times, he\\'s not gonna change. Well um, I don\\'t. Yeah it is, it is. We really, really have to do something about that. Oh Daddy, no he didn\\'t mean anything by that, he really didn\\'t. You had to do it, didn\\'t you? You couldn\\'t just leave it alone. Ross, tonight was about the two of you getting along. Oh, would you just see my chiropractor, already. Um. yeah. All right, look, here\\'s the bottom line Ross, this is fixable, if we act fast, okay. So, I\\'ll invite him to brunch tomorrow and you can make nice. Okay, look, Ross, I realise that my Father is difficult, but that\\'s why you have got to be the bigger man here. Okay, well can\\'t you just try it one more time Ross? For me? For me? Okay, well you are just gonna have too, okay. Because I already got a Mother and a Father who cannot stay in the same room together, okay, I don\\'t wanna have to have a separate room for you too!! Hi Daddy. What? What? He\\'s interested in you. He-he likes your hair, he just wants to know how you got here. What?! He\\'s got this thing. And I keep telling him to go to my chiropractor... Excuse me, Dr. Bobby happens to be an excellent doctor. Well that\\'s his last name. It\\'s Robert Bobby. And um, excuse me, he helps me. With my alignment. I\\'ve got one leg shorter than the other. What? It\\'s true, my right leg is two inches shorter. I\\'m sorry, let her? No. Yeah honey, I\\'m standing right there! Why didn\\'t you just tell him about the mole I haven\\'t got checked yet. Here you go Pheebs. Who else wants one of my special homemade brownies? Phoebe, what? Umm...what?! And all these people actually died? Phoebe, your in pain, would you just go to the dentist, just go. I promise. Joey, you can\\'t keep this to yourself, if you know about this, you have to tell him. Whoa! Wait! Hello! What about me? Look Benny, spoon. Spoon. Come on! All right, y\\'know what I think he\\'s bored. Okay. Okay honey, he\\'s fine, he\\'s fine, let\\'s just put him down. Come here, Ben. See that\\'s a good boy. How could you do that to him!! Ross trusted me, what is he going to say?! We\\'re not?! All right, I like that. So we\\'re okay, we\\'re okay, we\\'re okay, aren\\'t we? No, we\\'re not okay, we\\'re not okay, there\\'s a bump, there\\'s a bump. I cannot push it in! Okay, okay, okay. Okay. Or. We could put a hat on his head. We need a hat.. Oh, oh, oh, I\\'ll get \\'Rainy Day Bear\\'!! Oh God, oh God, it\\'s sowed on though. Okay. Oh, it\\'s just like a bloodbath in here today. Right. See Pheebs, I promised you no one would die, didn\\'t I? Okay, I heard that. Uh-huh. Look at that! Look at that! We all do it. Okay, I\\'m stopping now. Oh yeah! Y\\'know, if it\\'s not a headboard, it\\'s just not worth it. Monica, number one, I don\\'t think Ben understands the concept of bribery, and number two, I... What?! I also said number one. Hi! He\\'s perfect, he\\'s never been better. Well maybe he\\'s just taking a nap. Well, we have gotta find out if he\\'s alive. Are you, are you, are you sure it\\'s ah, a new bump? I mean, no offense, I\\'ve always thought of Ben as a fairly bumpy headed child. I did! I did!! I watched! I watched! I watched Monica bang his head against that thing! I hope it\\'s still funny when you\\'re in hell. I\\'ll get the hat. Hey-hey, now he\\'s showing us his poking device. No Mon, you want to put them in concentric circles. I want to do this. Oh! That would be sooo much fun! Let\\'s do it! Ross? Do you wanna play football? Um, there was a Geller Cup? Wait no, honey, honey throw it to me, throw it to me. That almost hit me in the face. Monica, I\\'m your best friend. Ross! You don\\'t pick me! You\\'re stuck with me! Are you okay? Over here! I almost caught that one! Wait, what am I gonna do? Wait, how long? Okay. Yeah, I know, go long. Y\\'know, it\\'s like all I\\'m doing is running back and forth from the huddle. Can I see that for second. Now, does it really matter? All right, so are we not having dinner at all? I went really long. I can not believe your trading me!! Are you gonna let me play? Yeah!!! Kill \\'um!!! No! Come on! Don\\'t make me go long. Use me. They never cover me. God, I\\'m not lame, okay. I can do something. I can throw, would you let me throw, come on this is my game too. Thank you! Break! I\\'m so sorry! Are you okay? I\\'m sorry, they were just all coming at me, and I didn\\'t know what to do. Okay. I got a touchdown! We did it!! We should defiantly play football more often. Maybe there\\'s a like league we could join or something. Oh shoot! I work Monday nights. What? Yeah. Oh, sure! Do you need me to train somebody new? Eh, do you believe that? I\\'m gonna get back to retraining. Gunther, Gunther, please, I\\'ve worked here for two and a half years, I know the empty trays go over there. Huh. Well, y\\'know that\\'s actually a really good idea, because that way they\\'ll be closer to the mugs. Y\\'know what, you should have the other waitresses do that too. Gee, I always heard them talk about that, I just always thought that it was a club they went to. Oh God, I\\'m, I\\'m sorry. I\\'m training to be better at a job that I hate, my life officially sucks. Well, yeah! I\\'m still pursuing that. Well, I\\'m also sending out.... good thoughts. The fear? Well then how come you\\'re still at a job that you hate, I mean why don\\'t you quit and get \\'the fear\\'? I don\\'t know, I mean I would give anything to work for a designer, y\\'know, or a buyer.... Oh, I just don\\'t want to be 30 and still work here. Yeah. Can\\'t I just look at the handles on them? Okay, fine. Gunther, y\\'know what, I am a terrible waitress, do you know why I\\'m a terrible waitress? Because, I don\\'t care. I don\\'t care. I don\\'t care which pot is regular and which pot is decaf, I don\\'t care where the tray spot is, I just don\\'t care, this is not what I want to do. So I don\\'t think I should do it anymore. I\\'m gonna give you my weeks notice. Gunther, I quit. Okay, stop what you\\'re doing, I need envelope stuffers, I need stamp lickers..... Hey-hey-hey that\\'s funny! Your funny Chandler! Your a funny guy! You wanna know what else is really funny?! I don\\'t know, I don\\'t know, weren\\'t you the guy that told me to quit my job when I had absolutely nothing else to do. Ha! Ha! Ha! Ha! Ha!! No, it\\'s not gonna be okay Ross, tomorrow is my last day, and I don\\'t have a lead. Okay, y\\'know what, I\\'m just gonna, I\\'m just gonna call Gunther and I\\'m gonna tell him, I\\'m not quitting. You and your stupid fear. I hate your fear. I would like to take you and your fear.... No. Oh my God! Yes, I would love that, oh, that is soo sweet, Joey. Thanks. Oh, I blew it. I wouldn\\'t of even hired me. I can\\'t! It\\'s too late! Terry already hired that girl over there. Look at her, she\\'s even got waitress experience. Last night she was teaching everybody how to make napkin.... swans. Hello? Yeah, this is she. Oh! You\\'re kidding! You\\'re kidding! Oh thank you! I love you! I got the job! Here we go. I\\'m serving my last cup of coffee. There you go. Enjoy. Um, excuse me, everyone. Ah, this is my last night working here, and I ah, just wanted say that I made some really good friends working here, and ah, it\\'s just time to move on. Ah, and no offence to everybody who ah, still works here, you have no idea how good it feels to say that as of this moment I will never have to make coffee again. Wow. Noo, that\\'s our unbelievably loud upstairs neighbor. Good luck. Yeah, right away Mr. Kaplan. I know! Op. Oh, you got me. Oh, that sounds great. Oh thank you so much Mr. Kaplan, thank you so much. Oh God, I hate my job, I hate it, I hate my job, I hate it. Oh, I wanna quit, but then I think I should stick it out, then I think why would such a person stay in such a demeaning job, just because it\\'s remotely related to the field they\\'re interested in. Oh honey, come on, I\\'m sorry, I didn\\'t.... I don\\'t mind paying my dues, y\\'know, its just how much am I gonna learn about fashion by walking Mira, the arthritic seamstress, to the bathroom. Hi! Is my misery amusing to you? It\\'s not funny, this is actually my job. Oh well then, so I\\'m just going to go back to talking to my friend here. And you can go back to enjoying your little hamburger. Yes?! Do you want my pickle? The most unbelievable thing happened to me today. Hi! So I\\'m out having lunch at Monica\\'s and this guy starts talking to me, and it turns out he works for a buyer at Bloomingdale\\'s and there happens to be an opening in his department. So I gave him my phone number and he\\'s gonna call me this weekend to see if he can get me an interview! I know! Uh-huh! Yeah! His name is um, Mark something. What!? To be nice. I didn\\'t have to, because I was wearing my \\'I heart Ross\\' sandwich board and ringing my bell. Well, I assume I\\'ll have to take showers with him, but y\\'know, that\\'s true of any job. I mean that\\'s unbelievable. Dark, big hair, with the airplane earrings. That\\'s all right. Hey. Did he call? Did Mark call? Oh. Oh my God, is that Phoebe? Music. Very nice. So, how are you? Oh yeah, what\\'s it about? Yeah, I do. I can\\'t believe Mark didn\\'t call. It\\'s Sunday night, and he didn\\'t call. Yeah, right. Look at you, you\\'re practically giddy. Yeah, and you don\\'t mind if I call, because you only want good things for me. Hello, Mark? Hi, it\\'s Rachel Green. Oh no, don\\'t you apologize. Yeah, I\\'ll hold. He left my number at work, but he was helping his niece with her report on the pioneers. Yeah, oh my God, tomorrow! That, no, it\\'s perfect. Oh God, thank you soo much. Great! Bye! I got the interview! He even offered to meet me for lunch tomorrow to prep me for it. I got to figure out what I\\'m going to wear. Yeah! Right! Okay, I\\'ll see you guys later. Woo hoo! Hey! What are you doing here? Oh. Hi. Oh well, the woman I interviewed with was pretty tough, but y\\'know thank God Mark coached me, because once I started talking about the fall line, she got all happy and wouldn\\'t shut up. Me too! I know. Yeah. Yeah. Hi Mark! Oh, I did! Oh my God!! Eavesdropping. Pheebs, the ceiling tiles were falling down. Honey, I\\'m sorry. Okay. Hey. Umm. Does everybody hate these shoes? Tell him. Thank you, thank you, thank you, Pheebs. No, no, no, no turtles scare me. I don\\'t need that today. Oh honey, thank you, but Mark\\'s taking me out. Yeah, it\\'s kinda like a \\'good luck on your first day\\' sort of thing. Is this actually a lunchbox? Oh. Yeah. What kind of discount do we get? Oh!! I love this job! Wow! My first call. Hi honey! Oh, he\\'s just goofing around. Oh honey, this is his office too. I told you we\\'re Joanna\\'s two assistants. Oh! Oh my God! What did I just do? I think I just shipped 3,000 bras to personnel. Oh honey, I gotta go. Mark, I need you! Ow! Ross!! Oh, yeah, sure, it\\'s umm... Oh no, no-no-no, that\\'s not, not, not, what he is doing. He\\'s just, he\\'s just really romantic. Yes. All right Ross!! I get it!! You\\'re hurt! Oh, please, Ross it was so obvious! It was like you were marking your territory. I mean you might have well have just come in and peed all around my desk! Look, I know what\\'s going on here, okay, Mark explained it all to me. He said this is what you guys do. Ohhh! That is soo sweet! Ross! So ah, did you have fun at the bachelor party last night? Right. Hello. A big idiot. Honey, why is it hard, I mean we\\'ve been together for almost a year now? Honey, that\\'s very sweet, it just seems to me though, that if two people love each other and trust each other, like we do, there\\'s no reason to be jealous. Where ya going? Ohh, with who? There was a woman at the... The stripper?! You have a play date with a stripper?! Sure, is she married? Oh. Noo, I y\\'know I don\\'t see why she has to play with you, that\\'s all. I mean doesn\\'t she have any y\\'know other stripper moms friends of her own? I\\'m not jealous. All right this is about, umm, people feeling certain things y\\'know about strippers. And y\\'know, and um, I... Ugh. Wait, wait, wait. Well, there\\'s a kiss that he won\\'t forget for a couple of hours, y\\'know. Oh my God, I gotta go to work! Oh I don\\'t know honey. It\\'s gonna be really late. I know. I\\'m sorry. Look, I\\'ll make a deal with you all right? Okay? For every night that you\\'re asleep before I get home from work... I will wake you up in a way that\\'s proved very popular in the past. Right. Somebody got in late last night. When did this happen? Monica, what are you doing? Hey. Do you have any ice? Yeah, I know. I had the greatest day though, I got to sit in on the meeting with the reps from Calvin Klien. I told my boss I liked this line of lingerie, she ordered a ton of it. How was your day? Hmm. Umm, why do you have a copy of The Shining in your freezer? But ah, you\\'re safe from it if it\\'s in the freezer? How often do you read it? Well, umm, I guess I read Little Women more than once. But I mean that\\'s a classic, what\\'s so great about The Shining? Okay. Ah, well we\\'ll just see about that, okay. I will read The Shining, and you will read Little Women. All right. Okay. Yeah. Oh, Danny just went into room 217. Oh, no, meh-nah-nah-nah, come on you\\'re gonna ruin it! Joey! I can\\'t believe you just did that! All right, okay, Laurie proposes to Jo, and she says no, even though she\\'s still in love with him, and then he ends up marring Amy. Eh. Beth dies. Um-hmm. What?! No. She doesn\\'t die. Because, I wanted to hurt you. Oh my.... Sorry. I\\'m sorry. I\\'m sorry, I was just thinking you\\'re day could still pick up. What? Awwww. Joey? Do you want to put the book in the freezer? Okay. Hi, sweetie! I\\'ve got some bad news. I can get a quick bite to eat, but then I have to come back up here. Nooo, he\\'s leaving for a better job. Well we\\'re gonna miss you around here. Yeah, you bet. Funny book? Yeah, at the lecture, I told you that last week, you said you didn\\'t mind. Oh, please tell me it\\'s not because I\\'m going with Mark. Oh my God!!! Ross!! Because, he\\'s my friend. Okay, well if I stop playing with Joey and Chandler, can I play with Mark? I don\\'t know, you thought \\'See you Saturday\\' was funny. Look honey, Mark is in fashion okay, I like having a friend that I can share this stuff with. You guys would never want to go to a lecture with me. Really!? Okay. Honey, I would love for you to go with me. What? Oh. Nodded off!! Ross you were snoring. My father\\'s boat didn\\'t make that much noise when it hit rocks! Well okay, how about four hours in a freezing museum auditorium listening to Professor Pitstains and he\\'s \\'Hey everybody! Remember that thing that\\'s been dead for a gazillion years. Well there\\'s this little bone we didn\\'t know it had!\\' Okay, see now, what I just heard: blah-blah-blah, blah-blah-blah-blah-blah, blah-blah-blah, blah, blah. Oh, that is so... Y\\'know if what I do is so lame, then why did you insist on coming with me this morning? Huh? Was it so I just wouldn\\'t go with Mark? It\\'s not dumb. But, maybe it\\'s okay that you\\'re not a part of it. Y\\'know what I mean? I mean it\\'s like, I-I-I like that you\\'re not involved in that part of my life. Honey see, it doesn\\'t mean that I don\\'t love you. Because I do. I love you, I love you so much. But my work it\\'s-it\\'s for me y\\'know, I\\'m out there, on my own, and I\\'m doing it and it\\'s scary but I love it, because it\\'s mine. I, but, I mean is that okay? What?!! Hello. Oh, hi. Well, there was a disaster in shipping and I\\'ve got to get this order in. Honey, I\\'m so sorry, but it looks like I\\'m gonna be here all night. No-no-no, no, honey please, I\\'ve got, I\\'ve just have so much to deal with. No, no, no, I\\'m looking at a purchase order right here and it clearly states that we ordered the Rivera bikini in a variety of sizes and colours. And.... What does it matter, what I\\'m wearing?! Can I please speak to your supervisor? Thank you. We\\'re holding. Oh!! My God, what are you doing here? Ross honey, this is very nice, but, but I-I got a crisis. Honey, honey, I\\'m sorry, I know it\\'s our anniversary but I told you on the phone I don\\'t have time to stop. But I don\\'t, hmm... Oh, who approved that order?! Well there is no Mark Robbinson in this office. Get me Mark on the phone! Well, let me just check that with what I got here, all right see 038 is not the number for this store, 038 is Atlanta. And I... None for me. I\\'m sorry, as I was saying the store number is wrong, and I\\'m sorry but that\\'s... Oh my God!! Excuse me, I\\'m sorry, I\\'m gonna have to call you back, I\\'ve got a Schemp in my office. What are you doing? Ross you\\'re not listening to me, I don\\'t have time to stop. I don\\'t have ten minutes!! Hey, Ross!!! I told you I don\\'t! Look, I cannot do this right now, okay, I\\'ve got a deadline, would you just go home, I\\'ll talk to you later. Good bye! Hi. Look um, about what happened earlier... I was gonna give you a chance to apologise to me. You had no right coming down to my office Ross. You do not bring a picnic basket to somebody\\'s work! Unless maybe they were a park ranger! But I told you, I didn\\'t have the time! Wh, Ross what do you want from me? You want me, you want me to quit me job so you can feel like you have a girlfriend? Just a job! Ross do you realise this is the first time in my life I\\'m doing something I actually care about. This is the first time in my life I\\'m doing something that I\\'m actually good at. I mean. if you don\\'t get that... Well neither do I! Oh my God. Oh my God. I cannot keep having this same fight over and over again, Ross, no, you\\'re, you\\'re, you\\'re making this too hard. I don\\'t know, I don\\'t know. Look, maybe we should take a break. No. A break from us. Hello! Oh. No! Sorry, I just thought you were somebody else. Hi! Yeah. Well, umm..... Yeah, I\\'m fine. No! Really, no, please, please, that\\'s, that\\'s okay. Oh, yeah, I\\'m not, I\\'m not hungry. Oh. Okay, bye. Oh, and then, we got into this big, stupid fight. I just, it was awful. I told him he treats me like a park ranger, or something, oh and then I told him I wanted to take a break, I don\\'t want to take a break. No. And then I called him, and he wasn\\'t there. Oh, thank you that\\'s very helpful, I\\'m glad you came over. Hello. Hi! Oh, I\\'m so glad you called. Nobody. Umm, honey, look he just came over to.... Oh, be home, be home, be home, be home, be home, be home. Be home. Be home, be home, be home. Oh, you\\'re not home. You want me to just quit my job so that you can feel like you�ve got a girlfriend? Oh my God. Oh my God. I cannot keep having this same fight with you Ross! Look, urrgh, maybe we should take a break. No. A break from us. Then, we had this big, stupid fight, and I said I wanted to take a break, I don�t want to take a break. Nobody. Umm, honey, look he just came over to.... Hey. Well, we never actually got to dinner. No, we kinda broke up instead. God, Monica it�s on the ceiling. Yeah, but it�s okay, because when Ross left Mark came over. No. No, no-no, it�s okay, calm down. Mark and I talked, and I realised how much I love your stupid brother, and, yeah, we got our problems, but I really want to make it work. Hi, it�s me. I�ve been trying to reach you all night. I feel awful. Please, Ross, you gotta know there is nothing between me and Mark. This whole break-up thing is just stupid. Eh, I�m just so sorry I put you through it. And, I y\\'know, I don�t want to get back together over a machine. So, I love you. And y\\'know what, I�m gonna, I�m gonna go to bed now, but ah, on my way to work tomorrow morning, I�m gonna stop by around 8:30. Bye. Hi. Ohhh, you got my message. So what do you say? Can I be your girlfriend again? I can�t talk to you. I can�t even look at you right now! Just get away from me! A mistake?! What were you trying to put it in? Her purse?! Ross, you had sex with another woman! Y\\'know what, I want you to leave! Get outta here! Just get out! Now!! Okay! All right! How was she? Was she good? Come on Ross! You said you wanted to talk about it, let�s talk about it!! How was she? Good different? Whoa!! Whoa, whoa, wait a minute. What time did your little friend leave? Oh my God. She was there? She was still there? She was in there, when I was in there?! And yet she was worth jeopardising our relationship!! We were on a break! You think you�re gonna get out of this on a technicality? Well, you sure had a hell of a time at the wake! God! And to have to hear about it from Gunther!! Oh, that is so sweet. I think I�m falling in love with you all over again. All right. Let�s say I had slept with Mark. Would you have been able to forgive me? You�d be okay if you knew that Mark had kissed me, and been naked with me, and made love to me? You knew that our hot, sweaty, writhing bodies were.... I�m thinking, I�m gonna order a pizza. Fine. Hi! Yes, I�d like to order a large pizza. With ah, extra anchovies. Yeah, and could you please chop some up and just put it right there in the sauce? Well, I should think so. You slept with someone. That�s.... That is neither here nor there. No Ross!! Don�t! You can�t just kiss me and think you�re gonna make it all go away, okay? It doesn�t work that way. It doesn�t just make it better. Okay? I think you should go. I really think you need to go now. Yeah, what the hell did I know! No. I can�t, you�re a totally different person to me now. I used to think of you as somebody that would never, ever hurt me, ever. God, and now I just can�t stop picturing with her, I can�t, it doesn�t matter what you say, or what you do, Ross. It�s just changed, everything. Forever. Then how come it is? Hey! Okay, let me just get a cup of coffee. Closer than here? Wait, I�m not just gonna drink somebody�s old coffee. Is he here? Oh. Here�s your moisturiser. Hi! You guys are gonna love meee! Okay, check it out, Thursday night, five tickets, Calvin Klein lingerie show, and you guys are coming with me. Okay, I said that out loud right? Oh, well okay. Well, there you go. Hm-mm. Ohh! Oh, it�s okay. And heels. No, hey, come on, if he asked you first, that�s only fair. Hi! Uhh, do you guys have plans for the weekend? Because I have my sister on hold, and she said that we could use her cabin for the weekend and go skiing. Huh? I�m asking you first, right?!. I mean I�m playing by the rules. Chandler! You�re smoking? What are you doing?! Okay. No. Thank you. Well, they never have any paper in there y\\'know. So my rule is �no tissue, no tuschy.� Well, if everybody�s going. What?! What, no, no, no, mine are deceptively small I mean, I-I-I actually sometimes, st-stuff my bra. No, I stuff outside the bra. Chandler, what are you doing? There is a trash can right there. What, what�s it, what�s going on? So you know how to fix it? Great! Yeah, we are definitely on Route 27. I don�t know, I�m sorry, I always slept in the back when we drove up here. Ugh, okay, well somebody will come and save us. No! No, I am not getting in a car with Ross, we will just have to live here! No you guys, I am not getting in a car with him, you�ll have to think of something else. Op, op, car! Car!! Ugh!!! What is he doing here?! All right!! Fine! Fine. Ask me what? You guys are unbelievable. No! He cannot come. Why would you even want to come Ross? You�re a horrible skier. All right, let�s go! Oh, I�m sorry, were you speaking to me or sleeping with someone else? Y\\'know Ross why don�t you put that on your answering machine! What?! Really Joey? No, I think it�s very obvious who�s wrong here. Yeah. Thank you. Well, I�m really sick of your smoking, so I brought something that is going to help you quit. Come on, it�s a hypnosis tape. This woman at work used it for two weeks straight and she hasn�t smoked since. What�s your problem? Ross, I watched you get hypnotised in Atlantic City. Oh right, �cause you always pull your pants down at the count of three and play Wipe-out on your butt cheeks. Oh, y\\'know what, I didn�t want cinnamon on this. Oh my God!! Great! Well, that shouldn�t be a problem. I mean I work in fashion and all I meet are eligible straight men. Well, I mean, are you sure you want to go out with her? I mean that ain�t a pretty picture in the morning, y�know what I mean. That wig all in disarray, and boobs flung over the night stand, y\\'know. I think you should definitely go out with this guy. Monica, last Saturday night, what happened on Walker: Texas Ranger? All right. Hey, how are those tapes working out for ya? Yeah? Thank you. Hey Mon, let�s give Pete a chance Come on, he was funny, he seems really nice, and that check thing was adorable. We use it!! Oh my God, Monica�s gonna go out with a millionaire. Oh my God, I can�t believe this is a real $20,000 check, oh this is just so exciting. Oh yeah, sure, that too. Oh my God! The millionaire�s here! Hi!! Just one drink?! Thank you. Hi! All right, let�s go shoppin�!! Oh, okay. Wow! Umm.... I know. Well, I told him I would think about it, but I�m gonna tell him no. I mean I think I�d say no to anybody right now. Oh, but it was so strange. I mean I�m standing there with this charming, cute guy, who�s asking me to go out with him, which I�m allowed to do, and I felt guilty. Y\\'know, like I�d be cheating on Ross or something. I don�t have any issues with my Father. Hi! Yeah. Ahh, here�s a box of your stuff. Oh, y\\'know, it�s just like hats, and a shirt, and CD�s, just sort of stuff that you�ve left here. No. Ross, it, it just seems that y\\'know it�s time we-we y\\'know, move on. I mean, I mean don�t� you think? Yeah? Good. Ross, you got that for free from the museum gift shop. Okay, all right, give me the mug! I�ll keep the mug. You know how much I love that T-shirt! You never even where that T-shirt! Oh, you are a petty man. You are a petty, petty.... Petty... Petty... Small... You are so just doing this out of spite. Huh? You have not worn that T-shirt since you were 15!! It doesn�t even fit you anymore! yeah-yeah-yeah!! Oh. That�s so Monica can keep track. That way if one on them is missing, she can be like, �Where�s number 27?!� Y\\'know what? I can�t do this. Well, oh, Mark, I�m doing this for the wrong reasons, y\\'know? I�m just doing it to get back at Ross. I�m sorry, it�s not very fair to you. Oh God. I�m sorry about this. You sure? Hey! Oh, great. Although I did sit down where there wasn�t a chair. Oh, well, I guess I had that one coming. I�m just gonna throw it out, it�s probably just a bunch of shampoo and... No. Nothing. Hey, Sophie! Thanks for lunch, Chandler. Y\\'know, you didn�t have to walk me all the way back up here. Honey um, honey, you do realise that we don�t keep the women�s lingerie here in the office? Summer catalogue! Joanna, this is my friend Chandler Bing Joanna. Bye, Chandler. Oh, nothing, he�s just goofy like that, I actually, hardly notice it anymore. No!! No! He�s not married, or involved, with anyone! Well, I�ll ask him for you, if you want me too? Hey! I need to talk to you! Oh, sorry. I meant Chandler. Okay, my boss, Joanna, when you left, she started asking questions about you... That was surreal. Okay, what do think? Are you interested at all? Oh thank you, Chandler, this is so great, she�s gonna love me. Wow!! What�s this? All right! O-o-o-okay, how did it go? Tell me everything. Hmm. What?! Oh, I.... Oh, I know... Ohh, gee. I wonder why she thinks you�re going to call her? You can�t just say, �Nice to meet you, good night?� Well, they always called. No. Sorry. Okay, okay. Umm, well ah, maybe he, maybe he feels awkward because you are my boss. Well... No. I... Call her! Call her now! Why hasn�t he called Rachel? Why? Why? I don�t understand. Why? He said he�ll call. Why? Why? Chandler I�m telling you she has flipped out, she�s gone crazy! Come on, this isn�t funny. She thinks it�s my fault that you haven�t called her. You have to call her! Well then you�re going to have to take her out again. I don�t care! I don�t care! You are going to have to take her out again and end it, and end it in way that she knows it�s actually ended. And, I don�t care how hard it is for you, do not tell her that you will call her again! That�s fine! I know. Sophie�s desk. Chandler!! Are you gonna call her! Chandler!! Okay, you are going to tell her and you�re going to tell her now. So who�s idea was it to put everybody in the diner on skates? What a jerk! You want me to kick his ass? And you�re still not attracted to him at all? Yeah, but Mon that�s totally different. He was you�re health teacher. Oh, I am, my side still hurts from when you crashed into me yesterday. I know. Ow!! Got a job on a river boat? Oh I see, so this suit is making a point. Now that you�re on you�re own, you�re free to look as stupid as you like. Yeah, come here! Yeah. Oh! Was how you invented the cotton gin?! Oww! Oww! I�m fine, I�m fine. Yes I am! Look, I�m fine. Watch. Look at that. Whoa-whoa! No. I have got to get ready and go to a dinner at my bosses house. It�s a very big deal, there�s a lot of people there I have to meet. Well, I will go to the hospital tomorrow, it�ll still be broken then. But y\\'know, I could use a hand getting ready. Look, either help me or go. Okay, but before you go, could you help me first? Y\\'know what? I cannot do this with my left hand! Would you please, help me with this too? Okay. Let�s use this brush. Yeah. Careful. Light. Okay, do you know how, just sweep it across the lid. Okay? Just sweep it. Oh-ho! Hey! That�s just poking me in the eye! Okay, just sweep it. Right. Okay, now make it even, �cause we don�t... We don�t want it-it to be too much, we want it to be subtle. Since when, since when do you think I don�t wear enough of this? Blow it. Sophisticated like a hooker? Sure. Sure, I�ll just sit next to the trans-sexual from purchasing. Oh wait, Ross, would you just stay and help me get dressed? Okay. Okay, great! Umm, okay, just turn around. I don�t want you to see me naked! Yeah, but that was different. Y�know? I mean, we were, we were going out then, now I think it�s weird. What? Ross! Stop that! Come on! I don�t want you thinking of me like that any more! Stop it! Cut it out! Cut it out! Rosss... All right. Fine. O-kay!! See what you did, I�m gonna be doing it by myself now. Okay? That�s it. Ow!!! Oh-ow! Ow! Ow! Ow! Ow! Ow! Okay, I do. I really do. Okay. Oh wait, wait-wait, you�re not gonna come with me? Okay. Thank you. Oww!!!! God! I�m sorry, I just can�t go to the hospital lookin� like this. Okay, you�d tell me the truth. Right? Okay. What thing? What thing? What thing? What is this thing? Oh my God! Ross, why didn�t you tell me that? I cannot believe you. That is the sweetest thing, I just.... Okay. Oh, I�m sorry I spoiled you�re evening. Um-hmm, yeah. See ya. Oh, Phoebe, are you still on hold? I was supposed to call my Dad back like two hours ago. What�s Flimby�s? Okay. Hang up! That�s it! Come on! No. No, not at all, not at all. I actually was gonna bring someone myself, so. I meant, me plus one! Okay, bye-bye! Okay, I need a date! Oh, hi! How are you? Hey. Yeah, looks that way. First ones here! Wooo!! Oh! Tommy, this is Ross. Ross, Tommy. Okay, uhh, I think I�m going to run to the ladies room. Oh, hi! Hey. Gosh, you look soo familiar. We�re not actors. Hey! What time is it? Tommy�s supposed to be here soon, we�re going to lunch. You don�t?! Umm, or, maybe, I should stay away from all men. What�s your favourite thing about summertime? Yeah! Tommyyyy! Say, what�s your favourite thing about summer? Ross, would you just stop it! It�s getting really old. Phoe-be!! Hey guys! What\\'s... Hi! Wow! Have you ever rescued anyone from a burning building before? Wow, he\\'s cute, Pheebs! But I thought you just started dating that Kindergarten teacher. What-Pheebs?! Two dates in one day? That\\'s so unlike you. Hi! And? Well honey, then why don\\'t you break up with one of them? So Pheebs, pick one of them. This place is amazing. Ahh... Chandler\\'s on the couch!! Monica\\'s gonna marry a millionaire!!! Mon you definitely have to make it a theme wedding, and the theme could be, \"Look how much money we�ve got!\" Y\\'know, I mean you could put, you could put money in-in the invitations! You-you could have like little money place settings. And ah, you could start with a money salad! I mean it�ll be dry, but people will like it. Oh please, what do you know! You married a lesbian! OH MY GOD!!! Sorry, I was just imagining what it�d be like to catch the money bouquet. Hi! Okay, don�t be mad at me, but I couldn�t resist. Yes, and I know that you�d say no if he asked you, but I�m sorry; how great would you look walking down the aisle in this Donna Carin. Oh my God. You didn�t break up with that fireman? Wow! How�d it go with Pete?! So, come on, what was the big news Pete wanted to tell you Mon?! Or should I say Mrs. Monica Becker? Why?! What is it? Yes!! Y\\'know I don�t, I don�t understand guys, I mean I-I would never congratulate Monica on a great stew by y\\'know, grabbin� her boob. Yeah. Oh, ah with who? Oh-oh-oh, which one is Bonnie again? Oh! That�s fine. Well that was depressing, I think I just bought a soft pretzel from one of the kids from Fame. Ready to go to the movies? This is Bonnie? This is Bonnie? You�re Bonnie? Oh no, I�m sorry, you look a lot different from the last time I-I saw you. Oh, that must be it. You said she was bald. How could you not tell me that she has hair? Ohh, well, this is just perfect! Yeah, I said what was okay when I thought she was some weird bald chick. I mean, y\\'know, that girl has hair got all over head! Why, does she have a bad personality? Oh my God! Phoebe look, it�s Ross and that girl. Phoebe! Come on Phoebe, look at that! They are not breaking up, look at them. Okay that�s, you know what that is? That is a, that is a second date, that�s what that is! Look at that, she just put her hand on his thigh... Ohh! Phoebe, this is all your fault! Now he loves her, he�s gonna marry her, and this is all your fault. You said she was bald!! Phoebe, we can�t, we just can�t just let it happen! Okay, we have to do something! We have to break them up! Okay? Just go in there and like, shave her head! You owe me one bald girl!! Yes. Yes. I just y\\'know, I didn�t expect him to be this happy so soon. Ufff. Ooo-ooh! What? Oh! Oh, I can�t watch this. I mean is that woman capable of talking about anything else but sex? That is so cool. Ohh, big, fat bummerrr. Hey! Ross gave it to me. Ohh, thank you. Well excuse me, my fashion-impaired friends, I am here to tell you that hats are back. Oh yeah, now everybody wants to be under this hat! Allll done! Okay, who\\'s next?! Come on, please?! I\\'m boredddd! You let me do it once before. Yes! Just once! Take it like a man, Ross! Oh, come on! Really?! Oh, yeah. Okay, your band is playing at Arnold\\'s, collect three cool points. Which means, I have five, and that means I get Joey\\'s boxers! All right, I\\'m gonna make more margaritas! I\\'m just making margaritas. What?! Oh, come on! Monica, please? He is, isn\\'t he? I don\\'t know, I don\\'t know, I mean maybe it\\'s just being here at the beach together or, I don\\'t know. But it\\'s like something... Well! Is everybody else having just the best time?! Well I assume the ah, happy couple isn\\'t up yet. Did you guys hear them last night? Oh, great. I\\'m going for a walk. Oh, ah nothin\\'. I just felt like hangin\\' out here and reading. Ohhhh, sorry I missed that. Ohh-ha-ha! Y\\'know, I gotta tell ya, I just loved your look when you were bald. Ohh! Really?! I mean you definitely should do that. Yeah! Awww, stop. Come on. Now go shave that head! Aww Pheebs, that sucks! Hi! That was her idea, I just gave her a nudge. Hey! Come on see, she doesn\\'t look that bad. I don\\'t know. All right! Ross, do you think it\\'s easy for me to see you with somebody else? Yeah, because I was mad at you, not because I stopped loving you! Noo. Oh, y-yeah, so, you-you love me! Noo! Maybe! I, I don\\'t know. Ross, I still can\\'t forgive you for what you did, I can\\'t, I just, but sometimes when I\\'m with you I just, I feel so... I just, I feel, I-I just... I feel... Well! Good night. I\\'m going upstairs. Oh, you\\'re welcome a million. Oh my God. Whoa! What?! Why?! Here?! Now?! Well, can\\'t you tell her that you are not in the mood? Whoa-ho. I don\\'t know. Oh, making it worse! Oh, was it awful? I wrote you a letter. It\\'s just some things I\\'ve been thinking about. Some things about us, and before we can even think about the two of us getting back together, I just need to know how you feel about this stuff. Well, I\\'ll be waiting for you, just come up when you\\'re done. Hey! What happened to you? Why didn\\'t you come up? You just finished? So umm, does it? Does it? What are you talking about, Ross, you just said that you read it twice! Look, y\\'know what, either it does or it doesn\\'t, and if you have to even think about it... Are you sure? I know. How was the beach? Ooh, I have to go pack. It really does? All right, that\\'s it, you guys! What happened out there? Oh-hooo, I missed you. Ooh, I was soo nervous about that letter. But the way you owned up to everything, it just showed me how much you\\'ve grown. Y\\'know? You have! Ross, you should give yourself credit. I mean my Mom never thought this would work out. It was all, Once a cheater, always a cheater. Ooh, I just wish we hadn\\'t lost those four months, but if time was what you needed just to gain a little perspective... Yeah! You and that girl from that copy place, which yesterday you took full responsibility for!! What?!! You fell asleep?! Y\\'know I can\\'t believe I even thought about getting back together again! We are so over!! Oh, oh, and hey-hey-hey, those little spelling tips will come in handy when you\\'re at home on Saturday nights playing Scrabble with Monica!! Sorry!! I just feel bad about all that sleep you\\'re gonna miss wishing you were with me! And hey! Just so you know, it\\'s not that common! It doesn\\'t happen to every guy! And it is a big deal!! Good! \\'Cause I\\'ve got a product report to read, it\\'s like eight pages, I hope I don\\'t fall asleep. Wow! Look at that, Chip Matthews called. I wonder what he wants? I bet he sensed that I was ready to have sex with another guy. Okay. Are you sure you wanna hear this? Chip! Hi, it\\'s Rachel. Rachel Green. Yeah, umm, you left me a message. Yes you did, my roommate wrote it down. Monica Geller. Ohh. Why? I love that thing. Something to do with numbers? What? You mean the mom you met in Montauk. She was a cat?! Umm, when were you gonna tell me that you\\'re going out with Chip Matthews? Nooo! It\\'s not okay! I can\\'t believe you would want to after what he did to me! Monica! I couldn\\'t find him for two hours! He was having sex with Amy Welch! I mean why, of all people would you want to go out with Chip?! Okay, that doesn\\'t help me, because we went to the same high school. They had to have that specially made?! Oh my God, they told us that was for the mascot! Oh, you go out with him. Yeah. Just, if it\\'s possible, could you leave him somewhere and go have sex with another guy? I believe it. Yes, I do. Oh sure I am, because you always have to be right. Jurassic Park could happen. You guys, you\\'re never gonna believe what I just found tacked up on a telephone pole! Look kinda familiar? You guys, there\\'s a little girl in Soho looking for this cat. I mean, you know what that means?! Do we have to tell her? I hate when Ross is right! Pheebs... All right!! Jeez! Hello, Chip. I\\'m great! I\\'m great. I\\'ve got a great job at Bloomingdale\\'s, have wonderful friends, and eventhough I\\'m not seeing anyone right now, I\\'ve never felt better about myself. She\\'ll be out in a second. So, Chip, how\\'s umm, Amy Welch? Wow! They really got you guys. Your T.V. The chairs. So, how was your date? Um-hmm. Oh honey, I\\'m sorry. Ohh! That\\'s so great! I\\'m sorry, sweetie. You could.... say you\\'re sorry to her mom. So honey, what are you gonna do about the little girl? I\\'ll go with you. Oh! Good thing Chandler�s not here, he always wins at this game. Hey! Umm, do you guys have any juice? My boss, Joanna? Wow, that must�ve been awkward. You ah, you didn�t say �Yes� to that did you? What is she doing here? I don�t understand! Last time you went out with her you said she was a �big, dull dud.� Well, last time I almost got fired. You must end it, you must end it now! Chandler!! Promise me, you will end it. Thank you. That�s weird, she locked the door. Okay, swear you won�t tell, but when Mark left he gave me a key to Joanna�s office. Do you wanna see the list? What?! You promised you would break up with her! And the fact that you were jeopardising my career never entered your mind?! Y\\'know what Chandler, you got yourself into those cuffs, you get yourself out of them. Oh, Chandler!! All right, this is it! You never see Joanna again! You never come into this office again! You give me back my Walkman! Well, then I lost it. You buy me one! Does it hurt? Wait a minute! What are you gonna tell Joanna? When she sees that you�re gone, she�s gonna know that I let you out, and that I was in here, and I�m gonna get fired! No, there�s nothing to make up, she�s gonna know that I have a key to her office, I�ve got to get you locked up back the way you were! Chandler! Chandler, please, I have to get you locked up back the way you were, I am sooo gonna lose my job, she�s very private about her office. Now I know why. What if I clean your bathroom for a month? Foot rubs for a month! I�ll take all of your photos and put them into photo albums! Sophie sit!! No! God, would you just calm down! I ah, will buy and wrap all of your Christmas gifts. I ah Oh! I�ll squeeze you fresh orange juice every morning! Yeah!! D�oh!! I�ve got it! I have so got it. There�s gonna be rumours about this, there�s no way to stop it. Sophie knows, Monica and Phoebe know. Oh, I called them. And when they ask me what I saw, I can be very generous or very stingy. I can make you a legend. I can make you this generation�s Milton Berle. Ohh, not compared to you. So did you break up with Joanna? What?! It�s me! Good morning! Yeah, sure. Umm, they didn�t have poppy seed bagels, so I Oh my word! Oh, yeah! Yeah! Okay. What? Oh yeah, I know, but the garbage was full. Well, I thought you liked doing it. Right! Oh! Hey, Mr. Treeger. Ummm. Oh! I`m sorry. It`s a little old but.... I`m sorry. I didn`t, I don`t come in here a lot. No. I didn`t. I never said that. Okay, I`m sorry. Yes! And he said really mean things that were only partly true. That`s easy for you to say, you weren`t almost just killed. Oh Pheebs, is that a new ankle bracelet? Oh! My hero! What happened? What?! You got us evicted!! That`s not true! Go!! Well, why doesn`t he practice with a girl? Yeah, right, he almost danced me right down that garbage chute. Hey! So, did you quit? Oh, umm, I was just y`know working out and umm, Oh, that`s it. Where?! What was that? You just did a little dancy thing. You are soooo enjoying this. Ooh, this is soo sweet, Joey our little twinkle-toes. What are you ever gonna use that for?! You got fired?! Sweety... Yeah? May fifth, why? Ross, you guys went out once. You took your kids to Chucky Cheese, and you didn\\'t even kiss her. Well, have fun! Yeah, she\\'s... You love her. Hi guys! This is Josh. Josh, these are my friends, and that\\'s Ross. Ross, didn\\'t you ah, play soccer in High School? Oh no wait, that\\'s right. You just organized their game schedules on your Commodore 64. Okay. I\\'ll miss you. I know, isn\\'t he great? It\\'s so nice to finally be in a fun relationship, y\\'know? There\\'s nothing boring about him, and ah, I bet he\\'s never set foot in a museum. Y\\'know what else is really great about him, oh, what is the word for the adult that doesn\\'t have dinosaur toys in their bedroom? What was that? Oh. Stop it! Yeah! I am soo gonna marry that guy. Ohhh! I think he\\'s stealing from me. Because he\\'s stealing from me! Ughh! Well where\\'s Amanda? I mean y\\'know, I\\'m thinking. You could bring her, and you guys could go up to your old room, and not make out. Why don\\'t you just marry her? Oh no, wait a minute you can\\'t, I\\'m sorry I forgot, she\\'s not a lesbian. Ohh, that is soo sad. Hey, so he stole a couple bucks from me! At least he bought me something with it! Sorry. Y\\'know... Yeah. No! Okay. Okay. Yeah, so what is she, like a... like a spokesmodel, or an aerobics instructor, what? Well maybe she and her friends are just having a contest to see who can bring home the biggest geek. Oh, The Velveteen Rabbit! Oh my God, when the boy\\'s love makes the rabbit real! Huh. Well, then you\\'d better keep it away from Ross\\'s hair. So this is pretty rare. How did you get that? Oh, honey, that\\'s so sweet. Oh my God! What happened? Yes, you have to get her something, and it should be something really nice. And not one of your coupons for an hour of \"Joey Love.\" No! I\\'m sorry, honey, it\\'s just that last week I got all but three answers and I really want to finish a whole one without any help. Hey, how\\'d it go? You know what we should all do? Go see a musical. And you know which one we should see? The 1996 Tony award winner. Do you happen to know the name of that one? No.... Yes! Rent! What? Oh, I\\'m sorry, I can\\'t, I\\'m busy. What did you get her? Okay, honey, what he means by that, is ...while this is a very nice gift, maybe it\\'s just not something a boyfriend gives? Any luck? All right, look. Why don\\'t you just return the book, let Joey give her the clock pen, and you give her something worse than that. Like... a regular pen. Aw, honey, that\\'s so sweet. Oh! Pathetic! I did it! Oh! I finished it! I did it all by myself! And there\\'s nobody to hug! Hey! Hey, you guys, I finished the crossword all by myself! Hug me! Thanks! Thank you! Hey, how\\'d the catering go? Yeah, I mean, you should play in public! Oh, I can`t believe I ever let him touch me with those fingers. Why not? Phoebe, the place has emptied because of him. Yeah, Phoebe you`re awful! I know, I remember that! Well, Chandler, you`re gonna have to tell him. Because you do. Phoebe, his music could not get any worse. There are rats in the basement that are hanging themselves. What? So are things with you and Joey any better? Oh wow, eight hours? So you could probably really use one of those plug-in telephone headsets huh? You shouldn\\'t. Well, I\\'m gonna take a nap, turkey makes me sleepy. I know, but all that work you\\'re doing to get it ready, I just... People are trying to sleep in here! Honey, maybe we should take you to a doctor. Ooh, so cute, that I\\'m thinking about jamming this pen in my eye. I know, it\\'s sick. Because it\\'s Richard\\'s son! It\\'s like inviting Greek tragedy over for dinner! Is he okay in there? So now, what exactly is the point of the box? Why? Okay. Here it is! I love it. I wear it all the time. Huh, well maybe it uh, it changed. Well isn\\'t it better that I exchanged it for something that I enjoy and that I can get a lot of use out of? Credit. Ooh, I like those sunglasses. Fancy soap? I thought we were savin\\' that for the Pope! Sick-sick-sick-sick. Ross, can you pass me the yams? Would you stop?! What is the matter with you?! Okay, fine. Don\\'t say that I have no sentiment! This is a movie stub from our first date! This is an eggshell from the first time you made me breakfast in bed! This is from the museum from the first time we were together. Okay, maybe I exchange gifts sometimes, but I keep the things that matter! Joey, had reasons. What?! Oh, he sees her! No? Oh! Oh, uh, Joanna I was wondering if I could ask you something. There\\'s an opening for an assistant buyer in Junior Miss. Well, actually, I meant for me. The hiring committee is meeting people all day and.... God, I am so glad you don\\'t have a problem with this, because if you did, I wouldn\\'t even consider applying. And that\\'s I\\'m so glad there\\'s no problem. Ohh! That\\'s great! Really?! Well, I, umm... Thank you. Well, they uh, they-they do more than that. Yes, Joanna really has been an incredible mentor to me. I-I-I of course, I have more responsibilities than that. Yes, I realize that. I love working with designers! Umm, Joanna? I wanna talk about that interview. No! It didn\\'t! That\\'s what I want to talk to you about. Now, just to brief you I may cry, but they are not tears of sadness or of anger, but just of me having this discussion with you. There\\'s nobody here! Do you want me to quit? Well of those things that you said in the interview, I mean if you believe any of them, I must not be a very good assistant. Y\\'know what? I am just gonna pack up my desk, and I will be gone by the end of the day! Well, I guess there\\'s no use to me sticking around \\'til the end of the day! What? My drinking? Said what? Exactly. Oh my God!! Ohh, that is it! I\\'m leaving! You are just a horrible person! Say more things like that. I\\'d need an expense account. And an assistant. Hey Mon, little question for ya! How do you think this suit will look on an assistant buyer? Oh my God!! You just ruined the thing I was practicing the whole way home, but I\\'m soo happy! Ohh, you\\'ve waited soo long. Hey, Pheebs, quick question for ya. How do you think this suit would look on an assistant buyer at Bloomingdale\\'s? Yes!!! Ohh, it\\'s gonna be so great! I\\'m gonna get to help decide what we sell, I\\'m gonna have an office with walls and everything. I\\'m gonna have walls! I\\'m an assistant buyer!! Oh, hi Mrs. Lynch! Is Joanna in already? Heard what? Oh my God! How?! Oh my God! Oh, I cannot believe it! Oh, God. Oh, God. Oh God. Yes, so close. Mrs. Lynch, I know that this is an emotional and difficult time, for all of us. But by any chance did Joanna send any paperwork your way before it happened. Yes-yes, just a few seconds and she\\'d still be with us nothing about an assistant buyer? Oh, Sophie, I guess you didn\\'t hear about Joanna. Hey, y\\'know, at least you have somebody to miss that stuff with! I hate being alone this time of year! Next thing you know it\\'ll be Valentine\\'s Day, then my birthday, then bang! before you know it, they\\'re lighting that damn tree again. Ohh, I want somebody! Y\\'know, I want a man!! I mean, it doesn\\'t even have to be a big relationship, y\\'know, just like a fling would be great. Well, believe me, it\\'s been a long time since I\\'ve been flung. Yeah! Wait a minute, it\\'s been a long time that I\\'ve been single. How come you never offered this before? Okay! No accountants. Oh, and no one from like legal. I don\\'t like guys with boring jobs. Hey, honey! What\\'s the matter? Fine, I was just trying to be nice! Whoa! Well, wait a minute, you\\'re the boss! Why don\\'t you just yell at them? Or, fire them? Pheebs, that\\'s great! But y\\'know umm, Rachel doesn\\'t rhyme with draddle. Oh yeah! Really?! So, will I like any of these guys? Chandler! Ohh, I like swimmer\\'s bodies! Op, I like credit cards! Well, so what does he do? Your company has a fine foods division? Chandler!! You have the best taste in men! Patrick and I had such a great time last night! I mean I think this could maybe turn into something serious. Well, y\\'know, possibly. You didn\\'t tell him that, though? Right? You told this guy that I was looking for a fling?! You don\\'t tell the guy that! Oh, between you telling him that I wanted to have a fling and me putting out on the first date oh, he\\'s so gonna get the wrong idea. Chandler! Patrick just uh, ended things with me. Did you or did you not tell him that I was looking for a serious relationship? You idiot!! You don\\'t tell a guy that you\\'re looking for a serious relationship! You don\\'t tell the guy that! Now you scared him away! Y\\'know, you should never be allowed to talk to people! Oh! See just I\\'m right back where I started! Aww, this sucks! Being alone, sucks! Really? No. Cute guys in little shorts? Sure. Well that sounds fun too. What?! Chandler, what is the matter with you?! Well you said *black*. Why would he want his blue blazer black? Don\\'t you have to be a dinosaur expert or something? Honey, this is really an incredible thing to do for them but there are things to think about. Wow, I don\\'t know if I could ever do that. You know, I always figured the first time I had a baby, it would be with someone I love and that baby would be like, a keeper. Why don\\'t you talk to someone who\\'s had a baby. Like your mom. I am so jealous. You guys are just, really, right *there*, aren\\'t you? Chandler, that is so nice. Why, just because you\\'re not mature enough to understand something like that? Yeah. Yeah, when we\\'re in the audience, he doesn\\'t talk to us, but he does wave. Yeah, not for girls anyway. Guys agree like that. Let me see that. Oh yeah. Well, you know, sometimes that helps. Well, if you go to Disneyland, you don\\'t spend the whole day on the Matterhorn. Oh, TOES!! Yeah, for some people. Oh. Oh, I can\\'t watch this. It\\'s like \"Sophie\\'s Choice.\" Oh, it was only okay. Depends who asked. Oh, Mon. Sure. Yes. You\\'re not asking me, are you? Yes, totally. What the hell is that?!! What the hell is that? Is that you? Ohhhhhhh! BACK OFF!!! Get up! Get up! Get up! God damn it! Get up, get up, get up, get up, get up!! What is that noise? Well, I\\'ve been up since six. Thanks to somebody\\'s dumb-ass rooster. Yeah! Especially not with all of these knives and cookbooks around. What? I\\'m so not impressed. Everybody snacks when they shop. How many guesses do you get? No! There\\'s no orange juice in there! We win!! Okay, well, we won that one. Yeah, and none of these stupid grocery questions, real personal questions. Fine! We\\'ll ask Phoebe. I know! I know, it\\'s such a huge, life-altering thing. Tails! We\\'ll take Literature!! Chandler gets it! It\\'s Chandler Bing! It\\'s All Relative!! I\\'m sorry! Monica, I don\\'t want to lose 200 dollars. Monica?! Okay, so let\\'s play for some pepper! Stop spending my money! Oooohh that\\'s interesting. Throw in the duck too! Well, he gets the other one all riled up. Monica, betting the apartment, I don\\'t know about this. Why? Do you have the answers written on there? All right, let\\'s do it. Okay. All right! 14? Space cowboy! Oh gosh, it has something to do with numbers. He carries a briefcase. Oh-oh-oh, he\\'s a transponce, transpondster! Oh my God. Oh my God! I can\\'t believe you guys are actually think you\\'re moving in here! Well I-I-I\\'m not moving. No, it was a stupid bet! We were just playing a game! Noooo. What?! I don\\'t care, I\\'m not going anywhere. No! Put that box down! We are not going anywhere! This is my apartment and I like it! This is a girl\\'s apartment! That is a boy\\'s apartment, it\\'s dirty and it smells. This is pretty. It\\'s-it\\'s so pretty! And look, and it\\'s-it\\'s purple! And I\\'m telling you, you with the steady hand, I am not moving, and now I have got the steady hand. That\\'s right! You do what the hand says! How did it go? Y\\'know what, you are mean boys, who are just being mean! That is not true. She did! She forced me! Well it stupid, unfair question! Will you stop calling it your apartment! No it\\'s not! Oh, I think I saw some in here. I don\\'t know! But maybe if we keep that drawer shut, it\\'ll die. Bloomingdale\\'s eliminated my department. No, but they stuck me in personal shopping. Which is just a huge step down! Uh-huh. Monica, I\\'m quitting! I just helped an 81 year old woman put on a thong and she didn\\'t even buy it! I\\'m telling you I\\'m quitting! That\\'s it! I\\'m talking to my boss right now! Yes I am! Yes I am! Yes I am! Yes I am! Yes I am! Yes I am! Okay bye, call me when you get this message. Oh! Mr. Waltham, I ah really need to talk to you. Hi! Hi, I\\'m Rachel Green. What can I do for you Joshua? Oh, I\\'m so sorry. Well, at least that\\'s a great suit. Okay. No-no, that wasn\\'t me! Well, we should get started. Let me show you my underwear. The selection of underwear we carry. Oh-oh, sorry, it\\'s this way, it\\'s this way. I have the best job in the entire world! The most adorable guy came over today, and I got to dress him up all day! Oh, I wish he was a doll, then I could get a Rachel doll and bump them together and make kissy noises. Oh! And he has the most beautiful name, I never realised it, Joshua! Josh-u-a! Joshua! Josh. Hi-e!! Well, it was just something Josh said about v-necks, but you had to be there. It\\'s Joshua. Why? Honey, what is the big deal? Yeah, that\\'s true. Chandler, what did she say? Beefsteak Charlie\\'s? Whoops. Oh, hey, do you need help with that? Ooh, I just feel bad, I never vacuum. Hi! So I was with Joshua for an hour today, and he has not asked me out. It\\'s just so frustrating! Really? It doesn\\'t seem desperate? Hmm-mmm. Yeah but, I\\'ve never asked a guy out before. No. Have you? I don\\'t even know how I would go about it. You know what, I\\'m gonna do that, I\\'m gonna call him up, and I\\'m gonna ask him out. I can do that. Ask him out. How you doin\\'? Hi! Joshua? It\\'s Rachel Green from Bloomingdale\\'s. Yeah, umm, I was wondering if you umm, if you umm, left your wallet at the store today? Well, we found a wallet, and we, the license? Well, that is a good idea! Uh, well, let\\'s see here this says this license belongs to a uh, uh, belongs to a mister uh, Pheebs, and umm, yeah, so sorry to bother you at home. I\\'ll see you tomorrow. Bye. You\\'ve done that a thousand times? Ohh, God, I just got so nervous that he would say no. Really?! You think that will work? Would you like to go to a basketball game with me? You know, its funny, basketball, because I happen to have tickets too, Umm, who likes the Knicks. Oh! Well, as a single woman, who is available, I think you look great! Yep. Oh, yeah, look you great. Oh yeah. Yeah, this looks great. Umm, so you like it? Great. Sure. Yeah-eah-ha! Oh well, you don\\'t want to do that now?! Okay. Basketball! I uh, I have two tickets to the Knicks game tonight if you\\'re interested, just as a thank you for this week. Really? I have an extra ticket. An extra ticket. Not, two tickets, I have an extra ticket. He didn\\'t turn me down! He\\'s at the game isn\\'t he? I got the date, I\\'m just not on it! Wow! Monica! Honey, this is not your fault, just because you guys had a fight, it does not justify her sleeping with someone. Really? Yes! I will! Absolutely! Hello, Rachel. Hi, Joshua. I left my wallet here on purpose. Really? Yes, I just wanted to see you again. Oh, I\\'m glad. Rachel, I\\'d like to say something to you. Yes? How you doin\\'? How does going to a strip club help him better? Um-hmm. There we go. There it is. Yeah! Oh, okay. Uhh, well let\\'s see. You\\'re about well uh, this one is large. And this one Yeah! Okay, two larges coming right up! Yes. Sure. You got it. Great! Me, Fladermouse, great. I really... So? Ohh! Right! Right, sorry, I\\'ll be right back! Oh. No! Nothing! Yeah! That would be great! Well, I-I guess,I... Yeah, great, you betcha! What? Oh. Oh, right. Oh yay! Hey! Hey, Monica! Ohh, it\\'s Joshua invited me to this fancy club opening tonight. But, I already told Mr. Waltham that I would take his niece to this dumb old opera. So. What are you gonna do? No! Help me! Phoebe? Ugh! Ohh, gosh. You guys, come on, this is, I have to meet Joshua! This is my one chance for him to see the fun Rachel. Y\\'know the \"Wouldn\\'t it be great if she was my wife\" Rachel. Ohh, all right! Are Joey and Chandler back? Ohh! Hi! So. Ohhhh, come on!!! No! Wait! Wait-wait! Ross, please! I\\'ll be right there! Okay, Ross, please come on! I thought we have moved on! I thought we\\'ve gotten to a place where we could be happy for each other! I mean was that just me? Oh thank you! Thank you, thank you, thank you! Emily? I\\'m Rachel Green. There\\'s been a teeny-teeny change in plans. It turns out that I\\'m not free tonight. So, Oh well, no I, I\\'ll get her. Hey, whoa, slow down. No, keep moving. Wow! Well, I didn\\'t see Joshua last night, but I did punch a girl in the face. The whole night was horrible, it was pouring down rain, and when I got there, there was no Rachel Green on the list, but there was a Rachel Greep. No, there is no Rachel Greep, but then this other girl overheard us and she was all, \"I\\'m Rachel Greep! I\\'m Rachel Greep!\" and he let her right in. No, she was already in, but then this big bitch behind me tried to steal my umbrella, so I clocked her. Ohhh! I can\\'t believe this, all I wanted was a few hours outside of work to see Joshua, so he can go ahead and start falling in love with me. Honey, that\\'s you\\'re name. What? Who the hell is Emily, noooo!! They\\'re in Vermont!! How could this happen?! How, how did end up in Vermont with that awful witch?! I don\\'t get this! She was horrible! I don\\'t care! All right, y\\'know what I\\'m just upset that I\\'m getting nowhere with Joshua that y\\'know what still, you do not meet someone and go flitting off to Vermont! Oh, y\\'know, would you just for once, not remember every, little, thing!! Well, I just checked our messages and Joshua didn\\'t call. I mean you\\'d think he\\'d be worried about me not showing up at his club. Ugh, you know what makes it so much worse, Ross is all happy in Vermont! I can\\'t believe it! He still hasn\\'t called. It\\'s Joshua. No, I don\\'t. Yeah, come on! What\\'s going in on in there? See, I don\\'t know, for me it would have to Chantal. Oh my goodness, she had the smoothest skin! I mean when I stuck that dollar bill in her g-string and grazed her thigh! Well, are we all together? Like in a group? Oh, hey! What? Oh, hmm. Joshua. Yeah, I... Oh, thank goodness! Oh, no problem. I\\'m so glad I could help. Happy for you. No, happy for you! No-no-no, that\\' not Joshua. Chandler, there\\'s a guy right over there. Chandler, don\\'t worry! This doesn\\'t make you less of a guy! That does! What am I sitting on? I hate to think what this woman was scratching when this broke off. Hmm. Well, here\\'s another question for ya. Uhh, do you know what that silver knob on the toilet does? Okay, good. Now that since you know, when you come over would you mind actually using it? Guess who we ran into today?! You are not. You have never been able to break up with her. Hey! Y\\'know, you-you also could\\'ve used uh, lamps and then followed the light. It\\'s coming from Joey! Please, Ross, you-you got hurt playing badminton with my dad. I\\'m sorry. I\\'m sorry. You\\'re right, you are a tough guy. You\\'re the toughest palaeontologist I know. Oh, well maybe there was a dog lookin\\' at him. You are not going to believe it! Joshua came into work today, and guess what happened? No. But I was showing him some cufflinks and I felt his pulse. What are these? Okay, okay, okay should I be scared? Wow! If only more people knew. Hey! What-what are-what are these? Oh my God! Look at this! I don\\'t care! The wires have come loose in your head! And did you?! Oh my God. Hello, Mrs. Chatracus. Thank God. Well, Joshua�s coming in tomorrow and since I don�t have the guts to ask him out, I�m going to sell him a coat and put this note in the pocket. Oh, here�s that trench-coat that you wanted. Yeah? Oh no-no, no-no, they don�t want you to put your hands in the pockets until you are out of the store. Well, that�s because of a lot of, I know! Oh? Well, congratulations, so do you love her? Huh. Well, uh, that�s uh, that�s interesting. Oh, it�s just an anti-theft device. You need that, you need that too �cause obviously, a thief could just tear this up. Oops, sorry. Listen, we-we have to have a party tonight! Actually, we have to have one in five minutes, so everybody cancel your plans. We have to have a surprise Bon Voyage party for Emily. But it�s actually for Joshua. Look, he said he�s not ready to date, so I had to invite him to a party if I wanted to see him outside of work, and now I have the perfect opportunity to seduce him! Surprise!!! Well, it was all Ross�s idea. Uhh, because I�m trying to play hard to get. Oh, quick he�s looking over here, say something funny. Okay, y�know what, y�know what? This playing hard to get thing is not working. Umm, hand-hand me those cherries. Okay. Okay. Hi! Care for a cherry? No? Y�know, I can tie one of these into a knot using just my tongue. Oh, could somebody give me a hand with this zipper? Up! Yeah, I did. I needed my lucky dress. Ohh, God! Look at him, he�s so cute. I wanna go over there, grab him, and kiss him! How can I kiss him and not letting him know that I like him? What? It�s not Christmas! He�s not 11! What? You�re leaving?! No! You guys can�t leave yet! You have to stay, we-we got the whole big thing planned! So, Spin the Bottle works like this: I spin the bottle, it lands on Gunther, so I would have to kiss Gunther. All right. Who wants to go first? Yay! Emily! Okay, my turn!! It�s okay! It�s okay! It kicked once, it�ll kick again! All right, well, everybody just remember where they were sitting. Just a bug. No-n-n-n-no! I am finally thinking clearly. My lucky dress wasn�t working out to well for me, but for four years, this baby never missed. Hi! Ohh, yeah, well I wanted to give Emily a big American good-bye cheer. So okay! Ready! Okay! Gimme an �E!� Gimme an �M!� Gimme an �I!� Gimme an �L!� Gimme a �Y!� What do you get? Emily!! Emil, Whoa!! Okay! So that�s me as a cheerleader! Ta-dum! I�m fine! I�m fine! I�m just losing a tooth, it�s no big deal. I have a dentist! Y�know. I�m gonna go put some ice on it. Excuse me. What do I do now? What do I do now? All right, come on, let�s go get your coat. Oh, yeah! Real fun. Y�know, this bra, Really, bothers me. Y�know, this used to be my bedroom. Yeah. A lot of memories in here, a lot of memories. If these walls could talk, y�know what they�d say? Wanna hear some memories? Oh no-no-no! No, I got this all under control. Ughhhh!! Forget it! This is, this is not how this is supposed to happen. Can you not look at me when I say this? I thought that if I could get you here, I could seduce you. Well, I�m sorry, I thought you needed them! Why?! You like me? Yeah but-but-but you liked me! Oh my God, I can�t believe this, all this time, I liked you and you liked me! Oh no-no-no don�t say but! No-no, but�s never good! Let�s just leave it at, you like me and I like you. Oh, now see that�s a fancy but. But.... Okay. Ohh, here you are. I was looking for you before. Joshua�s gone so you and Emily are free to go. Oh, Ross, I�m sorry. I completely ruined your evening. Well, if it makes you feel any better, I made a fool out of myself. Is there room on that step for a pathetic loser? I�m so sorry. Well, maybe you didn�t want it to end? You seem to really like her. Ross, that girl just spent the entire evening talking to your friends, asking to hear stories about you, looking through Monica�s photo albums, I mean you don�t do that if you�re just in it for two weeks. Yeah, you got like 14 hours until she has to be at the airport, and you�re sitting here in the hallway with a 28-year-old cheerleader with a fat lip. Yeah. I don�t know, it was you and a bunch of albino kids. Hey. You�re a pathetic loser, right? Sit! Oh my gosh, Joshua! They�re not true? Oh. Oh! Oh, I love that but. You wanna go inside and have some coffee? Okay. Every time. All right, y�know what, come on, do we really have to watch this while we eat? Honey, what are you doing? That�s too heavy. Give it here. Oh, God. Is that the heartbeat? Oh wow! This is so cool. Well, so, are-are you sure that there are three?! What�s that song? It has been in my head all day long. Y�know who doesn�t even like dirty movies? My new boyfriend Joshua. No, he told me. He prefers to leave certain things to the imagination. Yes! I�m going to find out if he really thinks supermodels are too skinny. Hey, Pheebs! Hey! Well, so, why don�t you just turn it off? Well, what-what �cha got there? Honey, you�re not gonna make enough money to help Frank and Alice just by selling knives. Hey! Well, we were walking down the street and we saw that van that you guys used for catering and we realised... Okay. Relaxi-Taxi! Well, well I came up with it! Well, I... Okay, it�s not Relaxi Cab. It�s Relaxicab, like taxicab. Hey, Mon, if you were hoping to sleep with Joshua the first time tonight, which one of these would you want to be wearing. Sorry. I�m so exited! I�ve been waiting for this for months! I got my hair coloured! I got new sheets! I�m making him a very fancy meal. What am I making him by the way? I thought I was making him filet mignon? Wow, I really get crabby when I cook. Ohh, please! Cooking soothes me. Ahh. So, dig in! Hmmm! Oh I know, my God, this is so, this rice is so, I am so good. Oh, yeah, I�m sorry. They used to live here; sometimes they migrate back over. Yeah, sure, okay. Okay. All gone! So, farm birds, huh? Oh. Okay. So, can I serve you a little of, What? What? What? But, they�re across the hall! I mean that�s two doors away, it would take them a long time to peck their way back over here. Okay, y�know, would you feel better if we went someplace else? I mean we could pack all this stuff up and y�know go to your apartment. Your parents�? Ohh. Yeah that works. Wow! This place is fabulous! Whoa-whoa, there�s two living rooms? God, growing up here, this place must�ve been a real babe magnet. Ohh, you should know, this place is a real babe magnet. Wanna make out? That sounds like a plan. Umm, is there a place I can go freshen up? Ah. Hi you! I know, I can do more than cook. Ohh! It�s so nice to meet you. Hello. Hello. What? This-this, no, oh no, no-no-no, this is not, that�s-that�s not what it is. See, see, okay, I work in fashion, see and-and, this is a real dress actually. It�s-it�s, they�re-they�re wearing it in Milan, so part of my job is too wear the clothes, and then I see how people respond, and then I report back to my superiors at Bloomingdale�s, so. And obviously in uh, in-in this case, I am going to report back, \"USA not ready.\" Yes! Well, we were going to do that after, I mean umm, next. Oh, yeah, well, Yeah, no use wasting this baby, just lyin� around the house. Yes. Oh, yeah. And uh, the best part though, when the uh, waiter spilled water down my back, I jumped up, and my boob popped out. No, it�s all right. I got nice boobs. So? Huh. She�s totally right! When we were together, you got all freaked out about Mark and there was nothing going on. Absolutely! Absolutely! What, yeah, what, y�know what? I hope Emily is a lesbian. HEY!! Do you have to do that? It�s Saturday! I hate this apartment! I hate the color of these walls! I hate the fact that this place still smells like bird! I hate that singing guy! Stop it! I will kill you. I hate the fact that my room is so small. Monica, you don�t even have a bed, you sleep in a ball on the floor! I�m sorry. I�m so sorry. Hey! So. Hey, Pheebs! So, how are the elves? Yeah, my mom got my dad�s season tickets in the divorce, so she just gave them to me. Yeah. Do you guys want these? Ohh, well you got �em. Just give us our apartment back! Oh, come on! We know what these are worth. You�re bachelor pad?! Or I�ll give them to my new boyfriend, Joshua. All right, okay, look, what if you could keep the apartment and get the tickets? Let me finish. I�m talking about a bet, winner takes all. Oh, okay, well, I think we should let Phoebe decide, because she�s the only who�s impartial, and she�s so pretty. What? Shut up! We�re winning! Okay. All right, cut, let�s pick again, pick again. Come on apartment! Come on apartment! Oh! I know queen is high! We took our apartment back!! All right. We figured you might respond this way, so we have a backup offer. Let us keep the apartment and.... Yeah! Can you believe that something that stupid actually got us our apartment back? Yeah. Yeah, I-I heard. I think it�s great! Ohh, I�m so happy for you! Hey, Mon, I was just doing the dishes! Oh! It�s you. Hi. Yeah, yeah, I was just about to take a break anyways, so.... Oh. Yeah. Yeah. Definitely, well it definitely took me by surprise, but I�m okay. Yeah. Oh, that�s sweet. Uhh, hang in there? I mean maybe you didn�t hear about a serious relationship called me and Joshua? Oh, no-no-no, no-no-no, it has become, it has yeah. Oh no, those were four great dates. Yeah. Oh, yeah. And I mean, the connection, I mean y�know, emotionally, mentally, physically... I know isn�t it? It�s like I�m right there with Joshua. You are right there with Emily. And it�s y�know, it�s kinda like, it�s a tie! Well, I gotta get, I gotta get back to the dishes. Oh yeah? Fine. Oh yeah, no, what�s that? That would be great! Hang in there. You hang in there. No, just singing. Hi! Handling it? What do you mean, handling it? There�s nothing to handle. Now, maybe I would have a problem with this if it wasn�t for me and Joshua. Y�know, they�re not gonna get married anyway! Come on! They rushed into this thing so fast it�s ridiculous! I mean, they�re gonna be engaged for like what? A year? And somewhere along the way, one of them is gonna realise what they�ve done and they�re call the whole thing off. I�m telling ya, you�re gonna be dancing at my wedding before you�re dancing at there�s. Why not? Nothing. In a month? You mean, you mean 30 days? From now? Well, that�s great. Hi! Ohh, nothing, I just wanted to see you. See you and hug you. See you. Yeah! Sit! I�m more than okay, I am really, really happy! Wanna know why? �Cause I am really happy about us. I think we are, I think we are so on the right track! Y�know? I mean, I think we are working, I think we are clicking. Y�know? Yeah-yeah, y�know if-if there was just like one little area where I, that I think we need, we would need to work on; I-I would think it was we�re just not crazy enough! Well, yeah, right, y�know what? Yeah, you�re right, I mean, we no, we have our fun. Yeah! But if (Grunts uncomprehensively. I mean, I mean like craaaazy! Y�know? Okay, all right. This is gonna, this is gonna sound y�know, a little umm, hasty, but uh, just go with it. Umm. Ugh. What if we got married? Oh, I know, I know, it�s-it�s so, it�s so totally like, \"Whoa! Can we do this?\" Y�know, I mean, but I mean it just feels right! Don�t you think? It does! I mean, it just feels right, don�t you think? Well, I just called Joshua... Well, I did my best to convince him that I�m not some crazy girl who is dying to get married. I�m just going through a hard time. Well uh, his answering machine was very understanding. Ugh. I feel blue. Yeah, maybe, but I don�t think I even care. I don�t think he�s the one I�m sad about. Y�know, I know that I said that I am totally okay with Ross getting married, but as it turns out, I don�t think I�m handling it all that well. And I-I am just trying to figure out why. Well, yeah, y�know how Ross and I were on again, off again, on again, off again? I guess I just figured that somewhere down the road, we would be on again. Yeah, well, you uh, better make it for three. Three people. Joshua�s not gonna be there. Uh, well, I think, I think he broke up with me. Well, apparently he scares easy. It�s okay. Sometimes, things don�t work out the way you�d thought they would. Oh, hey, don�t you have to go pick up Emily? Yeah. Yeah! I got my girls. Ugh. What? Y�know, I gotta tell ya, this really does put in a better mood. Oh, okay! I�m not gonna marry Chandler! Okay, you guys, just relax. I doooo. Oh, wait, Joshua! Joshua! Yeah, well, that oughta do it. Oh God Monica hi! I just went to your building and you weren\\'t there and then this guy with a big hammer said you might be here and you are, you are! Hi, sure! I knew. I did. Yeah, maybe... Really? Oh Ross, you\\'re so great. OK. Ohhh!!!! Oh, look at the little cat! Look at it! All right, listen, missy. If you want this cart, you\\'re gonna have to take me with it! Yes! Did you see that? I could not have done this without you. What? Hey, I was doin\\' great before I found out about you. You think it\\'s easy for me to see you with Julie? Alright, fine, you go ahead and you do that, alright Ross. \\'Cause I don\\'t need your stupid ship. Good. Ross do you realise this is the first time in my life I�m doing something I actually care about. This is the first time in my life I�m doing something that I�m actually good at. I mean. if you don�t get that... Well neither do I! Oh my God. Oh my God. I cannot keep having this same fight over and over again, Ross, no, you�re, you�re, you�re making this too hard. I don�t know, I don�t know. Urrrgh! Look, maybe we should take a break. No. A break from us. Hi. Ohhh, you got my message. So what do you say? Can I be your girlfriend again? Y\\'know what, I want you to leave! Get outta here! Just get out! Now!! Okay! All right! How was she? Was she good? Come on Ross! You said you wanted to talk about it, let�s talk about it!! How was she? Good different? � ...the way you owned up to everything, it just showed me how much you�ve grown. Y\\'know?� I mean my Mom never thought this would work out. It was all, \"Once a cheater, always a cheater.\" � Ooh, I just wish we hadn�t lost those four months, but if time was what you needed just to gain a little perspective... You seem to really like her. Ross, that girl just spent the entire evening talking to your friends, asking to hear stories about you, looking through Monica�s photo albums, I mean you don�t do that if you�re just in it for two weeks. Yeah, you got like 14 hours until she has to be at the airport, and you�re sitting here in the hallway with a 28-year-old cheerleader with a fat lip. Yeah. Hey guys! What�s up? What�s this? Is this Ross�s wedding invitation? Oh, no! No you guys! Come on, you don�t have to do that! I�m happy for him! I am! I really,I�m-I�m happy. I�ll work on it. Yeah. Oh, honey, I don�t know. I.... No, I�ll think about it. Yeah. Who\\'s this from? Oh... ... Oh my God. He remembered. It was like months ago. We were walking by this antique store, and I saw this pin in the window, and I told him that it was just like one my grandmother had when I was a little girl. Oh! I can\\'t believe he remembered! What did you just say? Oh.... my God. � Oh my God. Julie! Julie, isn\\'t that great? I mean, isn\\'t that just kick- you-in-the-crotch, spit-on-your-neck fantastic? � She didn\\'t hang up either... Ross, hi, it\\'s Rachel. I\\'m just calling to say that um, everything\\'s fine and I\\'m really happy for you and your cat ......I am over you. I am over you and that, my friend, is what they call closure. Oh my God. Oh my God Ross, no, hang up the phone, give me the phone Ross, give me the phone, give me the phone, give me the. . . Ohhhhhhhh God. Ohh, ohh. Well, basically, lately, I\\'ve uh, I\\'ve uh, sort of had feelings for you. Really? Oh, god. Oh it\\'s OK. You were worth the wait, and I don\\'t just mean tonight. Ah, oh God. Oh, honey, oh that\\'s OK. Yeah, because I was mad at you, not because I stopped loving you! Noo. Noo! Maybe! I, I don�t know. I just, I feel, I-I just... Y\\'know I can�t believe I even thought about getting back together again! We are so over!! And hey! Just so you know, it�s not that common! It doesn�t happen to every guy! And it is a big deal!! Oh my God. Oh. I can\\'t go to my own prom without a date, I can\\'t, it\\'s too late. Yeah. It�s just gonna be too hard. Y�know? I mean, it�s Ross. How can I watch him get married? Y�know it�s just, it�s for the best, y�know it is, it�s, Y�know, plus, somebody�s got to stay here with Phoebe! Y�know she�s gonna be pretty big by then, and she needs someone to help her tie her shoes; drive her to the hospital in case she goes into labour. I know. Yeah, see, there�s so much to do and I have so little time to do it in. So uh, Pheebs, honey, how are those mood swings coming? Whoa! Hey-hey, you planning on inviting us? Hormones! Nooo! All right fine! You\\'re not invited to the party we\\'re gonna Well umm.... Little village people. Oh, that is so sweet! Huh. Except, Phoebe\\'s not gonna be the one that gets to dress Oh my God! We are throwing the most depressing baby shower Oh, and somebody can get those leather pants she\\'s always Hi! Phoebe. (Both Monica and her try to move out of Phoebe\\'s No we... Hormones, yeah. Oh, well, actually we were just talking about me not going to It just might be too hard, given the history and all that. Well, h-how is this like that? I\\'m-I\\'m sorry, I just thought that. Good. What?! She made the tea! You what? Okay. It\\'s okay. We\\'re gonna be okay. Y\\'know what? It\\'s okay. Okay! Okay! I don\\'t know! I still don\\'t get how you know when it\\'s false labour. Well, isn\\'t that a good thing? You said you were sick of this. No, really. Really, Pheebs, you\\'re not gonna be the one And you just get to be cool Aunt Phoebe! And y\\'know what else, oh my God, are they gonna love you. Oh! What?! Who are you saying \"check\" too? Have fun! Oh, I know. What?! Yeah, well, I gotta work, I\\'m sorry. Because, I can\\'t! Ross, I told you, no. I can\\'t. Oh, honey! Don\\'t get up! What do you need? Come on! I am here to take care of you! What do you need? Okay, that is all you. Oh, I don\\'t know. I guess we have to eat. I\\'m just bummed about the way I left things with Ross. I Still in love with?! I\\'m not in love with Ross! Phoebe, I\\'m going to Ross\\'s wedding because he is my ex-boyfriend We?! You all know? Does Ross know? Oh, I can not believe you didn\\'t tell me! Hi. Manhattan does not have enough stores. You can? Um-hmm. Okay. Ooh, is this one of those things where you throw it in a bag with I can do that. I certainly did it when we were going out. I don\\'t know, his uh, his hair never really bothered me that much, Okay. All right. Okay. Ow! Well, I like you less! Pheebs? Do you remember where the duck food is? Because I\\'m going to London. Yeah, I have to tell Ross that I love him. Now honey, you take care, Yeah, I know, I know, I know he does. But I have to tell him how I Ohh, Do you think he will?! Y\\'know what? No. It\\'s not over until someone says, \"I do.\" Ooh, ooh, ooh,ooh,ooh. (Slightly Hello. Umm, when is your next flight to Ohh, good. Ohh, thank you, thank you, thank you. Ohh, I just don\\'t think I have enough Ohh, okay, how about five. Okay, you know what? I don\\'t have it, Hi, Pheebs. Bye, Pheebs. Hi, I\\'m back. Listen, I need to... Hello. I need to get on the 11 o\\'clock flight. Okay, you know what/ You\\'re going to have to call that plane and Sure, you know what? Come on, we\\'ll just tell them that there was Look, If I don\\'t get to London!! He is going to marry that other All right, you know what? I am not leaving here, until you call Ohhh. Yeah? Oh. I\\'m sorry. I\\'m very sorry. Sorry. ...And so then I realized. All this stuff I had been doing, Ehh, pardon me? But he has to know how I feel! Well I-I think your wrong. Well I just came...(She touches him near his heart. She\\'s almost in He-he said Rachel, right? Do you think I should go up there? Mon, honey, I gotta ask you something. Ross said my name up there, I mean, come on, I just can\\'t pretend that didn\\'t happen can I? Monica, what should I do? What? Whoa, wait, listen, I think I\\'m just gonna talk to Ross about what he think it meant. Okay, you\\'re right. You\\'re right. You can\\'t help me. Oh, hi! Hi. Sorry, things aren\\'t working out so well. Oh yeah! Of course, I mean, she\\'s gonna get over this, y\\'know? I mean, so you said my name! Y\\'know you just said it \\'cause you saw me there, if you\\'d have seen a circus freak, you would\\'ve said, \"I take thee circus freak.\" Y\\'know, it didn\\'t mean anything, it\\'s just a mistake. It didn\\'t mean anything. Right? Right! Y\\'know when I locked myself in the bathroom at my wedding, it was because I was trying to pop the window out of the frame. Get the hell out of there, y\\'know? Well, look at that, same thing. Ross said my name. Okay? My name. Ross said my name up there that obviously means that he still loves me! Okay, don\\'t believe me, I know I\\'m right-do you guys want to go downstairs and get a drink? Okay. Hello? Oh, Pheebs! It\\'s Phoebe! Hi! Well, Ross said my name. Okay, Pheebs, y\\'know what, let\\'s look at this objectively all right? Ninth grade, right? The obsession starts. All right? The summer after ninth grade he sees me in a two-piece for the first time, his obsession begins to grow. So then... Hey-hey, you guys oh hurry up, get some, there\\'s a whole cart outside. Hi! Well, I-I-I\\'ve been on Standby for a flight home for hours. Ohh, so no sign of Emily huh? So umm, what time are you supposed to leave? Yeah. I\\'m sorry. No, you\\'re not an idiot, Ross. You\\'re a guy very much in love. No, you know what, I think you should go. Yeah, I do. I think you should go, by yourself, get some distance, clear your head, I think it\\'d be really good. Oh, come on Ross! I think it would be really good for you! Yeah. Good! Right! Right! Okay, I\\'ll see you back at home, if I ever get a flight out of here. What? Wait, what? Well-well, I don\\'t know Ross-really? Uh-huh. Oh wow, uh okay, uh maybe. Umm, yes, I can do that! Okay! All right! Oh, okay, we\\'re going. Yeah. Oh, wait-wait-wait! Okay. Wait! Wait! Ahh, yes, I will have a glass of the Merlot and uh, he will have a white wine spritzer. Woo! Hey, look at that, the airport\\'s moving. Hey, are we moving?! Are we moving? Why are we moving? Hey, time-out, umm, yeah, does the captain know that we\\'re moving? Oh my God. Oh, my gosh. Hi! Oh Ross, come on! You just did what you had to do. Terrible? Hell, I was in Greece! That was a nice hotel! Nice beach, met the nice people. Not to shabby for Rachel. Well, yeah! We\\'re cool. Totally cool. Oh no, you\\'re the best. What?! I didn\\'t have a good time in Greece! Ross abandoned me! Okay, I couldn\\'t get a plane out, so I had to stay in their honeymoon suite with people coming up to me all the time going, \"Oh, Mrs. Geller, why are you crying?\" I mean, it was sooo humiliating. I felt like such an idiot! I mean, it\\'s all my fault! And you know why, because I make very bad decisions. Yes it is! It is true! I went, I went after Ross in stupid London. Phoebe, you were right. I should\\'ve never gone to London, and from now on you make all of my decisions for me. That\\'s fine. So Monica, you are now in control of my love life. Ohh, he\\'s married! Ross is married. I can\\'t--I still can\\'t believe it. I mean, y\\'know I\\'m just gonna have to accept it I mean it\\'s my fault. Oh my God! Yeah, I guess Gunther is kinda... Oh, I don\\'t know. I don\\'t know. All right, you\\'re the boss. I guess I gotta do what you tell me. Hey! Well, y\\'know, a little of this, a little of that. Got myself a date tomorrow night. Well? That\\'s not European! Oh God, I really had a good time! Yeah. Umm, unless you wanna come inside? Okay. Oh, uh, wait a minute, y\\'know what? I uh, I can\\'t decide this. Umm, okay, just hold on a second. Umm, hi! Is Monica around? I-I have to ask her something. What\\'s that? Oh, honey that\\'s awful. But, it\\'s not raining. Y\\'know what Ross? You\\'re not going anywhere. You\\'re gonna sit right here. I\\'m gonna make you a cup of tea and we\\'re gonna talk this thing whole out. All right? Hey, Dave! Umm, listen, I\\'m gonna need to take a rain check, my roommate is just really sick. Okay? Bye! Honey, listen, I know, I know things seem so bad right now. Yeah. Ohh! You did not drop any socks! Well, ultimately, I was trying y\\'know, I-I wanted to tell him y\\'know, that I\\'m still in love with him. Why? Why not?! People love to hear that! Well, y\\'know what, no, you do not make my decisions because y\\'know what, you\\'re fired. Well.. No. Well, then talk! Yes! I\\'m gonna do it. But I.... All right, fine. Hey-whoa-whoa-whoa!! Ho-ho-hold on a sec there, Mr. Kissey! Y\\'know, I\\'ve been meaning to talk to you about this whole, little, new European thing you got going on, and I just need to tell you that it makes me very uncomfortable and I just--y\\'know--stop it! Phoebe, woo! Yeah, y\\'know what? I\\'m-I\\'m gonna meet you upstairs in a minute. Well, y\\'know what, that doesn\\'t matter. Yeah, I-I don\\'t care. What \\'cha readin\\'? Yeah, what\\'s it about? Okay. Uhh, Ross, y\\'know what, there\\'s something that I-that I have to talk to you about and everybody\\'s saying that I shouldn\\'t tell you, but I think they\\'re wrong. I mean, and you know how people can be wrong. Okay, Ross, I\\'m really trying to tell you something here. Okay. Umm, okay, I think I\\'m-I\\'m just gonna-just gonna say it. Just gonna say it. Uhh, I\\'m still in love with you Ross. I\\'m so dead serious. I\\'m totally serious. Because , because, I just heard it. I heard it, and it\\'s ridiculous! I mean, you\\'re married. You\\'re-you\\'re married and it\\'s just ridiculous, and it\\'s like, it\\'s like when I said it, I sort of like, I floated up out of my body, y\\'know? And, and-and then I heard myself say it and then the floating Rachel was like, \"You are such an idiot!\" I\\'m sorry, that\\'s not funny. Oh God, ohh, okay, y\\'know what, do you think ah, do you think that you just forget that I told you this? The thing is y\\'know, that you\\'re married to Emily. Ross, things aren\\'t gonna be weird between us, right? I mean was that just the stupidest thing, me telling you that? That\\'s what I said! Thank you for being so nice. High-five, the babies are coming! I am so gonna miss watching you freak people out like that! You-you\\'re not wearing a jacket. Hi, Pheebs? Okay, so just spoke to the nurse and the reason that your doctor is late is because uh, she\\'s not coming. Honey, listen, y\\'know what? The nurse said the doctor is wonderful. Monica? You gonna be very proud of me. I just got us dates with two unbelievably cute nurses. They\\'re male nurses. Anyway, they want to take us out Saturday night! What do you say? What? What are you talking about?! You-you\\'re the one who\\'s been telling me to get over Ross and move on. I\\'m moving on, and you\\'re moving on with me. Come on, give me one good reason why you don\\'t wanna go. What? Okay, you\\'re coming with me, and I also told them that if we\\'re still here when they get off that we\\'ll go down to the cafeteria and have some Jell-O with them. Joey, how do you make that dirty? Honey, y\\'know I just gotta tell you, I think this is such a terrific thing you\\'re having these babies for Frank and Alice. Yeah! Yeah! Ohh, I\\'m gonna be on the news! Okay, Phoebe, honey, you gotta be kidding. I mean, you know you cannot keep one of these babies! Yes! Yes! Yes, I do! I do know! Frank and Alice are gonna want to keep all of their children! Phoebe, no! This is, this is insane. Me?! No! Forget it! I am not gonna ask Frank to give you one of his kids!! No, I haven\\'t had a chance to be alone with him yet. Y\\'know who I always liked? Mork. Yeah, but umm... Yes, but, Fonzie was already cool, so he wasn\\'t hurt, right? Hi! Monica, this is Dan , one of the guys that we\\'re gonna be going out with on Saturday. Uh Dan, Monica. Hi! Oh, honey, don�t worry. She\\'s gonna make it on time. Yeah. So Frank, three babies. Whew, that just seems like a lot, huh? Yeah, fair enough. Oh, how does he look? How does he look? Hi. Hey, hi! So uh, Frank and Alice wanted me to tell you that they\\'re still outside making phone calls. Yeah, umm, no honey. So does it really hurt as bad as they say? Hi! I just wanna--Ahhh!!! Oh my God! Oh my God! Since when do take naps in that position. Oh God Monica, tell me you were waiting for a guy! Please tell me you were waiting for a guy! That cute waiter guy from your restaurant, the one that looks like a non-threatening Ray Liotta? Y\\'know what, just give me a second and I\\'ll be out of your hair. I\\'m just gonna grab a jacket. When I get back, I want every little detail. Maybe that\\'s him. Why aren\\'t you guys at the movie? So Chandler, have you heard about Monica\\'s secret boyfriend? So Mon, when are we gonna meet this new secret waiter man? I don�t care! I wanna meet this guy who\\'s the best sex she ever had! What-what-what are you gonna do? Maybe Joey\\'s right. Maybe all good deeds are selfish. Chandler! Is he? Hi! Are you ready? We\\'re gonna be late! For Stella! Remember? She\\'s gettin\\' her grove back in like 20 minutes. Sure. I guess. Hey, I hear you don\\'t have to go to London. Yay! Like what? Well, why don\\'t you talk to me about it, maybe I can help. Well, I-I know you can do that too. I\\'m just, I\\'m just saying if you need somebody to talk to. Hi! Ross? Look, whatever this relationship stuff that Emily wants, just give it to her. Come on, the bottom line here is that you love her. So just fix whatever she wants fixed. Just do it. I mean, you\\'re gonna have to try. You\\'ll just gonna hate yourself if you don\\'t. Oh come on answer it! It\\'s driving me crazy! Hi, guys! What\\'s going on? Oh okay, hey guys, would you flip mine too? Oh look! A letter from my mom. Oh yeah! I know. Oh my God! My dog died! Oh my God, Le Poo, our dog! Oh God, it says he was hit by an ice cream truck and dragged for nine--teen blocks. Oh. Oh my God. It\\'s Le Poo. Oh yeah! What? Oh God. No! Oh not again! This-this happened when my grandfather died. It\\'s ugh! Sorry. Oh, okay, so I\\'m sorry, what-what were you-what did you want to tell me? Sorry. Sorry. Yeah, I know. It\\'s ridiculous! I can\\'t see you either. Hi! Okay, what\\'s up? Yeah, I told you to give Emily whatever she wants. Yeah? That\\'s crazy! You can\\'t do that! What are you going to tell her? Oh God. Ohh, you already agreed to this, haven\\'t you? Ohh! Lucky me! Oh my God! That is good news, Ross! I think that\\'s the best news I\\'ve heard since Le Poo died! Oh yeah, really? Is it Ross? Yeah? Okay, well let me make this a just a little bit easier for you. Storming out! Yeah, well that\\'s how mad I am!! Hi! Look, I know you guys heard about the whole thing with me and Ross but y\\'know, I\\'ve been obsessing about it all day and I\\'d just love not to talk about it. All right? That\\'s not Ross! Oh my God, its happening. It\\'s already started. I\\'m Kip. Do you even know who Kip is? See? Yeah, you told me the story. He and Monica dated when they broke up they couldn\\'t even be in the same room together and you all promised that you would stay his friend and what happened? He got phased out! Well, of course I am! It\\'s not gonna happen to Ross! He\\'s your brother. He\\'s your old college roommate. Ugh, it was just a matter of time before someone had to leave the group. I just always assumed Phoebe would be the one to go. Honey, come on! You live far away! You\\'re not related. You lift right out. Phoebe? I\\'m sorry about the whole lifting out thing. You gotta come with me! Wherever I go. Come on you and me, we\\'ll-we\\'ll start a new group, we\\'re the best ones. Hi. What are you doing here? Isn\\'t this against the rules? Oh, Ross... No, it\\'s not better. I still don\\'t get to see you. Well, for starters I would\\'ve said the right name at my wedding! I know. I know that too. Yeah, it\\'s in there. Uh-huh! Ohh, whoa God! Storage rooms give me the creeps! Monica, come on please hurry up honey! Please? I want the little round waffles. Okay, y\\'know what? I\\'ll-I\\'ll have toast! Arghhhh!!!!!! You guys! You guys! It was like this crazy-eyed, hairy beast man! He was like a, like a bigfoot or a yeti or something! Yeah, I-I-I just pulled the tab and I just fogged his yeti ass! Yeah! Please! We did not fog Danny! Who\\'s Danny? Hi! You might not remember us, but we are the girls that fogged you. Hi! Just so you know, we-we didn\\'t mean to fog you, we thought you were like a yeti or something. Hi! Sorry to bother you, but I don\\'t think we can accept your acceptance of our apology, it just doesn\\'t really seem like you mean it. Really! What is with that guy? I mean you\\'d forgive me if I fogged you. Oh my God, honey, I\\'m so sorry! Really? Oh my God! Oh my God, look at these pelts! What? Uhh, Phoebe, honey, honey, I know you\\'re quirky and I get a big kick out of it, we all do actually, but if you destroy a coat like this that is like a crime against nature! Not nature, fashion! Hi! What? Yeti....I mean Danny? Oh. Listen, I\\'m so sorry. I would, I would\\'ve never fogged you if y\\'know if you hadn\\'t looked so. Y\\'know. What? What? Hey! No-no-no! This not cool! You don\\'t even know me! So from that you think you\\'ve got me all figured out? Well, you don\\'t! Y\\'know I-I could have toys for underprivileged kids in here! Well, y\\'know, if-if kids like to play with Capri pants. And stop saying that! I hate that! Fine! I judged you. I made a snap judgement. But you did it too! And you are worse because you are sticking to your stupid snap judgement! You can\\'t even open up your mind for a second to see if you\\'re wrong! What does that say about you? What?! Okay. Okay. Hi! Oh, I went to have pizza. With Danny. That yeti is one smooth talker. Yeah, y\\'know I-I think I\\'m just gonna hang out in my room. Come on you guys! Listen, if Emily knew I was here having dinner you with you she would flip out and you know it. It\\'s okay, I really, I don\\'t mind. Ross, I.... Okay. Okay. Joey, it\\'s okay. Settle down. I haven\\'t seen him in so long! Ross, honey, is there anything we can do? Thank you. Mon? How\\'s Ross doing? Y\\'know since all the Emily stuff. Oh, honey, please, no, I can\\'t get started with all that Ross stuff again. I mean, he\\'s gonna screwed up for a looong time. And besides y\\'know, I don\\'t, I don\\'t go for guys right after they get divorced. I don\\'t know! He hasn\\'t called me since that one time when we went out. I see him in the hallway, we flirt, I\\'m all ha-ha-ha-ha, and nothing. Hi Danny! Wow! Thirsty huh? Ohh, great! Yeah. Okay. All right, I see what he\\'s doing! He\\'s not asking me out, because he wants me to ask him out. That\\'s right! \\'Cause that would give him the control! So now he\\'s all ooh, coming up with this whole I\\'ve got a party thing y\\'know, trying to get me to hint around for an invitation. Blew up in his face, didn\\'t it? No, there\\'s a party. There\\'s a party. But the power, that is still up for grabs. You follow me? Exactly. Oh, hi Danny. Uh, actually, I think I\\'m gonna be busy. Yeah! Remember I got that uh, gala. It\\'s a uh, regatta gala. No-no, but I support it. Okay. Walked right into that one didn\\'t he? Yeah, but he waited until the last minute! So if I said yes, he would know I had nothing better to do than wait around for an invitation to his stupid party. I said, \"No!\" Which puts me right back in the driver seat. Ball? There is no ball. Don\\'t let him in! I\\'m supposed to be at a regatta gala. What? What kind of a regatta gala starts at night?! Shoot, shoot, this is never gonna work! He\\'s right there! No, I have to go downstairs and come back up as if I\\'m coming home from the regatta gala. Okay? So just go distract him. But don\\'t be sexy. Hey! Oh right, tonight was your party. Oh well, y\\'know, the gala had to end sometime. Yeah, sure. All right, whose court is the ball in now? Oh, come on! He\\'s glad that I came, he doesn\\'t want me to go anywhere, balls flying all over the place! Oh, go on! You telling people about me? Yeah, okay, at ease solider! No, it\\'s all right, you can just drop the act Tommy. I know what\\'s going on here. Your Danny\\'s wingman right? You guys are best buds. Frat bros! Yeah, yeah, you go talk to your friend. You tell him, \"Nice try.\" Man! He just keeps lobbing them up and I just keep knocking them right out of the park! Yeah! Oh Monica that was the best Thanksgiving dinner ever! I think you killed us. Yeah, you know what we should all do? We should play that game where everyone says one thing that they\\'re thankful for. Oh, you\\'re not gonna tell the whole story about how your parents got divorced again are you? I know Monica\\'s worst Thanksgiving. What?! Joey got a turkey stuck on his head?! Actually, y\\'know that\\'s not the Thanksgiving I was talking about. No, it wasn\\'t. It was actually the..... Oh, yeah, I had too. There was never any parking by the Psychology building. Oh hi! No, God! Please, let me! Hey! Oh-ho, my God! That was so awesome! You totally got him back for calling you fat! He was just drooling all over you. That must\\'ve felt so great! What?! Okay, that we may be able to do. Well guys tend to get naked before they\\'re gonna have sex. Okay, first of all, if you keep calling it that, no one\\'s gonna ever take it. Then, second of all you\\'re not actually gonna have sex with him! You\\'re just gonna make him think that you are. Yeah. Then, you will definitely get him back! Okay, oh, here\\'s what you do. Just act like everything around you turns you on. Well, like anything can be sexy. Like umm, oh-oh, like this dishtowel! Ooh, ooh, this feels sooo good against my cheek! And-and if I feel a little hot, I can just dab myself with it. Or I can bring it down to my side and bring it through my fingers while I talk to him. Yeah? Okay! Good, good, because he\\'s coming. He\\'s coming. Hey, what\\'s up? You brought a carrot?! All right! Who\\'s are they? Who\\'s are they? Well, get \\'em out of here! What\\'s wrong with you? Take \\'em! Joey, you can touch them! They\\'re your underwear. Hey, Pheebs! What are you reading? Honey that sounds like fun. Okay. Oh, I read that in high school. Sorry I\\'m late, but I left late. So Pheebs, what is the book about? Well yeah, but then I remembered I started it and there was this pep rally and I was, I was on top of the pyramid but anyway...umm, what is this book about? Umm, well I would have to say that it\\'s a, it\\'s tragic love story. Oh-oh-oh, symbolism! And uh, the-the uh, wildness of the moors, which I think is-is mirrored in the wildness of Heathcliff\\'s character. Well, honey that was pretty obvious. Be-because I didn\\'t want him to think I was stupid! I mean, that was really embarrassing what happened to you! Joey, is what she just said umm...Oh my God. You were actually gonna... And with Chandler in the next room. What are you, what are you sick? Hi! So umm, what\\'s this book about? Well, I was gonna, but I accidentally read something else. Vogue! Hey, so tell me about this Jane Eyre woman. Come on Phoebe! Don�t be such a goodie-goodie! A cyborg?! Isn\\'t that like a robot?! Uh, thank you Phoebe. Umm, well, what struck me most when reading Jane Eyre was uh, how the book was so ahead of its time. Yeah, well, feminism yes, but also the robots. Ugh, that was so embarrassing! I can\\'t believe you let me go on and on like that! That was not funny! Phoebe, come on! What is the big deal? I thought this was going to be something we could do together! Y\\'know, I thought it would be fun! Ohh. Oh, so you really wanted to learn. Yeah, y\\'know, Pheebs I just wanted to have fun. Ohh, you know who you should go with? Oh my God! That\\'s Monica!! You get away from me!! You sick, sick, sick, sick-o!! Joey has got a secret peephole! Yes! He has a naked picture of Monica! He takes naked pictures of us! And then he eats chicken and looks at them! Look! Well, what is the truth? Monica, is this true? Okay, but if it only happened that one time, how come we found your underwear in our apartment the other day? And the video camera? Oh my god. Ok you guys, there�s Danny. Watch. Just watch this. See?! Still pretending he�s not interested. Ohh, he�s coming over. Just pretend like we don�t know him. We�ve forgotten who he is. Thanks, Mon. Monica!!! Okay. What the hell was that? You know what? Don�t answer me. I have a date with Danny. I just saw Danny getting on the subway with a girl and he had his arm around her. Well, you should be, this is all your fault! You meddled in our relationship!! No, but I was doing my thing and everything was going according to the plan! She was kinda stupid. You\\'re right. All right, I\\'m just gonna go on the date. I\\'m gonna go on the date. That is the new plan. So did I. I\\'m really glad Monica asked us out. You\\'re sister? You\\'re sister\\'s asleep on the couch? Ohhh! I saw her with you on the subway and now she\\'s asleep on the couch! Hi! Uh, it was very nice meeting you. Hey! Hey, umm, can I ask you guys something? Uh, I don\\'t have any brothers so I don\\'t know, but uh, did you guys wrestle? Well, I met Danny\\'s sister yesterday, and uh that was actually the girl on the subway. Yeah, they were very y\\'know...wrestley. But, I guess that\\'s normal? Okay, y\\'know what uh, actually, that\\'s great. That helps a lot. Thanks. Oh, great! Okay, see? I told you! Yeah uh, y\\'know what uh, let\\'s skip it. Umm, you-you and your sister seem to have umm, a very special bond, and... Well, okay, look. I don\\'t know, listen, I don\\'t know what\\'s going on here but let\\'s... No, I have two sisters. But one of them has a very masculine energy. No-no, they\\'re not very nice people. Well, uh, I-I don\\'t know. See when-when you put it that way y\\'know it does sort of... Yeah, okay, I\\'ll see you later. I\\'m doing just fine! God, Tiffany, you smell so great! Oh, y\\'know Joey, you are sick! I\\'m not reading this! What?! So? Oh, good point. Happy New Year, Joey! But your divorce isn\\'t even final yet. Op, look! Claire forgot her glasses! And she\\'s gonna be really needing these to keep an eye on that boyfriend, who, I hear, needs to keep his stapler in his desk drawer, if you know what I\\'m talking about. I don\\'t gossip! Well, maybe sometimes I find out things or I hear something and I pass that information on y\\'know kinda like a public service, it doesn\\'t mean I\\'m a gossip. I mean, would you call Ted Kopel a gossip? What? They were like this! I didn�t! Even when I found out...umm, all right, well let\\'s just say I found something out something about someone and let\\'s just say she\\'s gonna keep it. I think they\\'re very nice. Awful, absolutely awful. \"Baddest man in the whole damn town.\" Arghh!! Joey, do you have a minute? Oh, Joey, I have such a problem! Okay. Okay. Okay. Joey, I have got to tell you something! Oh my God, it\\'s so huge, but you just have to promise me that you cannot tell anyone. Yes! Yes! Yes, you do want to know! This is unbelievable! What? What secrets? You know secrets? What are they? I know, I know! I just can\\'t keep this one in, so I pick up the phone... That really is something; that\\'s really cool. Good luck, honey! Hey, uh, Joey? Remember that big thing I was gonna tell you about? I\\'m not gonna tell you, but if you found out on your own, that would be okay and then we could talk about it. Right? Yeah. Well. Hey uh Joe, would mind going over to Chandler\\'s bedroom and get that book back that he borrowed from me? Yeah! Do you know something? I might know something too. Oh no, I can\\'t tell you until you tell me what you know. Well then I can\\'t tell you what I know. All right, how about I go over there and I will walk into Chandler\\'s bedroom and I will see that thing that I think that I know is actually the thing that I think that I know! AND YOU KNOW!!! Chandler and Monica?!! Oh, this is unbelievable!! How long have you known? Ohhh, yeah, me too. Come on Joey!!! I can\\'t believe you would say that! No! I mean come on! This is a huge deal! Fine I want...I need more details, who-who initiated the first kiss? Is he romantic with her? Are they in love? You don\\'t know anything. What? Pheebs, I don�t think anyone\\'s mad about that. Oh umm, y\\'know I lent it to Joey and I never actually got it back. Hey! What\\'s up?! Well yeah, I do, but I decided to take a long lunch and spend some time with my friend Monica. Y\\'know I-I feel that we don\\'t talk anymore. How are you? What is new with you? Oh y\\'know what, we don�t have to talk about work. We can talk about anything! Hey! Y\\'know what? Let\\'s talk about relationships! Nothing! You go! Wow that\\'s uh, juicy. Umm, y\\'know what though Mon, I actually do have a lot of work to do so if-if...are you sure there\\'s just not anything else? No! If there was I wouldn\\'t tell you. Ross couldn\\'t fit down the trash chute. There he is! Ohh, out, oh God, I don\\'t know why we didn\\'t think to check there! You walked around all night in the city by yourself? Yeah! No that\\'s what I was thinking. Ross! Janice?! Okay, I have to tell you something that I have never admitted during our entire friendship! But, when we were in high school I made out with James Farrell even when I knew that you liked him! Wow, that feels so good to get off my chest! Okay, you go! Ugh, Monica, I know about you and Chandler. I overheard you guys on the phone the other day, and you said, \"I\\'ll just tell Rachel that I\\'m doing laundry for a couple of hours.\" And he said, \"Laundry? Is that my new nickname?\" And you said, \"No! You know what your nickname is, Mr. Big.\" Well, I wouldn\\'t know because I got so freaked out that I hung up the phone. What?! All right. So you\\'re telling me that there is nothing going on between you and Chandler. Sure! Why? What?! She just called and said that she was gonna be working late! She keeps lying to me! That\\'s it! Y\\'know what? I\\'m just gonna go over there and confront them right now! Hey! Hi! Well, I was actually...I-I came over here to-to borrow this lamp. To umm, look at my books, y\\'know, see them a little better. Yeah! Oh! What a great way to earn some extra pocket money. That\\'s good enough. Right? Okay, well umm, I\\'m gonna go look at my books! Okay. \\'Kay. Congratulations on your new job. Joey, if you wanna look good, why don\\'t you just come down to the store? I\\'ll help you out. Sure! God, please take those off! What? Well maybe, maybe she\\'s with us right now? Okay now Joey, y\\'know that since you\\'re returning all of this stuff right after the audition you\\'re gonna have to wear underwear? Okay, it\\'s missing something. Ooh, I know! Umm, okay. It\\'s not a purse! It\\'s a shoulder bag. No Joey, look. Trust me, all the men are wearing them in the spring catalog. Look. See look, men, carrying the bag. Exactly! Unisex! No! No Joey! U-N-I-sex. Joey, what are you doing with the bag? You\\'re audition is not until tomorrow. Joey, y\\'know you get any mustard on that bag, you can\\'t return it. All right, then you owe me $350. Joey! Hey, don\\'t listen to them. I think it\\'s sexy. Hi sweetie! Why?! Why not?! Okay. Ahhh, I think you look great! That bag is gonna get you that part. Ooh, Pheebs, what are you gonna say? Are you gonna tell him who you are? What?! Why? Joey you were so ready for it! Honey wait, Joey, I�m sorry I mean as terrific as I think you are with it... ...I just don\\'t know if the world is ready for you and your bag. Wait a minute! Wait a minute! I\\'m not saying that you shouldn�t have a bag, I just...it\\'s just there are other bags that are a little less umm, controversial. I\\'d say from the looks of it; our naked buddy is moving. Ohh, I\\'m gonna miss that big old squishy butt. Well that is because your eye immediately goes to the big naked man. Well, I never thought I\\'d say this, but I\\'m gonna go use Ugly Naked Guy\\'s bathroom. What?! Oh my God! OH MY GOD!!! Phoebe!! Phoebe!! It\\'s okay!! It\\'s okay!! I KNOW!! I KNOW!! I KNOW! Yes, I know! And Joey knows! But Ross doesn\\'t know so you have to stop screaming!! HI!! Hi! Nothing! Oh God, we\\'re just so excited that you want to get this apartment! Uh-huh, doing it. Doing it. Phone doing it. Joey! Come here! Come here! Phoebe just found out about Monica and Chandler. No. Joey, she knows! We were at Ugly Naked Guy\\'s apartment and we saw them doing it through the window. Actually, we saw them doing it up against the window. Wh-what do you mean? Ohhh, I-I would enjoy that! Ehhh, no, I wanna do Phoebe\\'s thing. You don\\'t have any secrets! So umm, how-how are we gonna mess with them? Okay. Hey Mon, what are you doing now? Wanna come see a movie with us? Oh. Okay great, hold on a sec! Oh, here you go! You don\\'t mind do ya? That would really help me out a lot! Thanks! Hey Ross! Any word on the apartment yet? Oh. What?! You-you actually thought that basket was gonna get you the apartment? All right honey, we\\'d better go if we wanna catch that movie. Oh Ross, honey you gotta stop torturing yourself! Y\\'know what you should do? You should find out what his hobbies are and then use that to bond with him. Yeah! Like if I would strike up a conversation about say umm, sandwiches. Or uh, or my underwear. See? Yeah, he broke those too. Hello! Oh yeah! Hey! Hold on a second she\\'s right here! It\\'s Chandler. Are you kidding?! I can not believe he would do that to Mon...Whoa! Joey, do they know that we know? Joey! Ugh, I knew it! Oh I cannot believe those two! All right. Be sexy. Oh yeah! Oh my God! That is our friend! It\\'s Naked Ross! Show time! Okay! Okay honey, now I\\'m gonna try to listen from right here! Okay? Whoa, wait! Yeah, oh wait! Joey look, just look at it this way, the sooner Phoebe breaks Chandler the sooner this is all over and out in the open. Okay! Hey, what\\'s-what\\'s going on?! Awww, no, it\\'s okay, we\\'ve actually known for a while. Well, Ross, we were worried about you. We didn\\'t know how you were going to react. Oh! Oh, I just thought of the greatest wedding gift to get you. Okay. She is so cute! You could fit her right in your little pocket! Aww, Joey, come here. Look honey, I know this must be really, really difficult for you and I--Oh, I\\'m sorry. Am I hurting you? Hmm. Look, Ross, if you want your neighbors to like you, why don\\'t you just pay the hundred bucks? The party\\'s gonna cost you way more than that. Okay, I thought it was about your neighbors liking you. And that crazy party animal will be your brother-in-law. Umm, Chandler, you do realize that those ideas are probably already in Monica\\'s head. Well, because she loves you and because you love her. Hey, Chandler, don\\'t freak out! I\\'m telling you something you already know! Come on, she broke up with Richard because he didn\\'t want to have babies. And she\\'s a woman, and she\\'s almost 30, and y\\'know it\\'s Monica. No, you\\'re right, you are absolutely right. I mean that makes, that makes everything different. Not unless different means the same. Hi! Wow! You look, you look...big. Uhhh, yeah. But it\\'s not obvious why. Hey! Hey, cute jacket! Oh! Ow! Whoa! Y\\'know what Katie? I gotta tell ya I-I-I-I think you are the one who is too much. Ohh, and the nicest girlfriend! Ohh, you\\'re so sweet! Ohhhh, I cannot look at it! Oh no wait Pheebs, I think for something like that you just ask them to move in with you. But I\\'m not sure, Chandler? Uhh, we still need a tip. A couple of bucks. Phoebe, I bet somebody\\'s missing that badge. Hey Joey! Ugh! What?! You say that to kids?!! Ross, honey, it\\'s a nice couch. It\\'s not a magic couch. Wait! No, that\\'s ridiculous. Come on, he lives three blocks away! Yeah! Are you kiddin\\'? Oh. Oh! I can do it! Ross! Ross! Come on, I don\\'t really want to be doing this right now. I am carrying a very heavy couch. Fine! We went out. Ross!! Oh my--ugh!! You kept count?! You are such a loser! Ross, didn\\'t you say that there was an elevator in here? Okay, y\\'know what? There is no more left, left! Yeah. Oh-oh! Any chance you think the couch looks good there? Hey, umm, do you guys have that tape measure? What\\'s up Joey? Hey! Joey, would you mind giving me and Ross a hand moving his couch? Thanks! I know. What\\'s up Joe? Yeah? What are you saying? Y\\'know honey, umm, as uh, as flattered as I am that uh, you saw me first, uhh, I just, I-I don\\'t think we should be cranking anything up. Yeah, well, y\\'know umm... No honey, listen I think it\\'s a great idea to become friends with someone before you date them, but I think the way you do it is y\\'know you meet someone, become their friend, build a foundation, then you ask them out on a date. Don\\'t hit on your existing friends! Yeah. Yeah. Oh, but once you find it, ohh it\\'s so worth the wait. Hey Ross! I brought reinforcements. Well, I brought the next best thing. Whoa-oh, what\\'s-what\\'s that? Wow! You certainly think a lot of yourself. Okay! Ross, I don\\'t, I just don\\'t think it\\'s going to fit. I know, me neither! I mean, you had a sketch! Hey! How\\'s it going? Did you make any new friends? What?! Why?! Oh my God, Phoebe, are you gonna go to jail?! Good, you guys are all here! Well, I have a job interview at Ralph Lauren tomorrow! I know! Wh-what?! Anyway, I\\'m going to be the coordinator of the woman\\'s collection, I\\'ll work right under the director, it\\'s the perfect, perfect job for me! Yeah. O-okay! Hi. Ugh, horrible! I did the stupidest, most embarrassing thing! No! Ugh, it was horrible! And-and the interview part went so well, y\\'know? I even made him laugh. He said something about a boat and I was like, \"Well, yeah! If you\\'ve got enough life jackets!\" Trust me, it was actually, it was very funny. Anyway, so we were saying good-bye and ugh! All right, we were shaking hands and he kinda leaned toward me... Y\\'know maybe he was going to open the door, but I totally miss read him and I uhhh... Well, I didn\\'t know what else to do! Thanks Chandler. I can\\'t believe it! I got a second interview! What-what, wait a minute, you don\\'t think that\\'s why he wants me back? I accidentally kissed him in the interview, and now he wants me back y\\'know of course, \\'cause \"Let\\'s bring the girl back who kisses everybody!\" Oh my God! What if he thinks I\\'m the kind of girl that-that would just sleep with him? Maybe. I-I don\\'t know...Oh God, how could I be so stupid?! Ohh, well I\\'m not totally back yet, but thank you. Hi! Thank you. What? Excuse me? Wh-whoa! All right, okay-okay, I see, I see what\\'s going on here! Now listen, look-look, I\\'m sorry if I gave you the wrong impression, but I am not some hussy who will just sleep around to get ahead! Now even though I , hey-hey-hey, even though I kissed you, that does not give you the right to demand sex from me. I do not want, this job that bad. Good day, sir. Ugh, you will not believe what that sleaze-ball from Ralph Lauren did too me! Okay-okay that-that\\'s amazing. How did you know that? Oh. Ohhhhhhhhh..... Ah, first, I-I would like to say thank you for agreeing to see me again. Okay. Umm, well, first I would like to start by apologizing for kissing you and uh, for yelling at you. Now you\\'re probably going to hire one of the people who did not ah, who did, who did not umm, yell at you and storm out, and I think that\\'s a big mistake and here\\'s why. I made a huge fool of myself and I came back, that shows courage. When I thought you wanted sex in exchange for this job, I said no. That shows integrity. And, I was not afraid to stand up for myself and that shows courage. Okay umm, now I know I already said courage, but y\\'know you gotta have courage. And umm, and finally when I thought you were making sexual advances in the workplace, I said no and I was not litigious. So there you go, you got, you got courage, you got integrity, you got courage again, and not litigious. Look Mr... Zelner! Right! I knew that! I really, really want this job and I think, I think I would be really good at it. Oh! You are? Really? Oh thank you! Oh... Oh, would it be completely inappropriate to give you a hug? Okay, well then how about a handshake? Oh God I\\'m sorry! Oh God, I\\'m sorry! I did not mean to touch that...I mean you there. There. Uhh, okay, so thank-thank you, I\\'m going to leave now thank you very much uh-huh, thank you so...Hey! I\\'ll see you Monday! I cannot believe Ross is buying this! Yeah! Oh by the way, thank you for loaning us Pamela and Yasmine. Okay, gotta go! Wish me luck! Uh well, y\\'know what? I don\\'t think if I feel comfortable stealing on my very first day... Okay guys, way to wish me luck! Well umm, that one is pretty but uh, I just, I just love this fabric Sorry. Oh, what a fun office. Oh no, my dad\\'s a doctor and he would always tell me just horror stories... ...about ghosts and goblins who totally supported the princess\\'s right to smoke. ...and then they came back from smoking and they had made all of the decisions without me! I know! It\\'s like I\\'m being punished for not having this disgusting, poisoning habit! I mean what if this keeps happening? Y\\'know, they\\'ll-they\\'ll be outside smoking, making all the decisions and I\\'ll just be up in my office breathing my stupid clean air, y\\'know? And then when the day comes when Kim wants to promote one of us, who do you think she\\'s gonna pick? Me or Smokey Smokerson? Yeah, I can do that. I would love to! Oh well, it\\'s kinda lonely up there, so I just thought I would come out here and get some fresh air. Oh great! Oh that\\'s okay. Excuse me, can I, can I bum one of those? Y\\'know what, actually... Okay, okay, okay, what\\'s so funny over here? Oh, I thought you guys meant marijuana cigarettes, y\\'know? Y\\'know what I mean, like dubbies? And I actually, I thought to myself, \"Wow, those guys are crazy!\" But no, I actually smoke the regular ones all, all the time. Oh, me too. Oh, me too. Oh it was great! It was great! I went down there just like you said, y\\'know? And we talked business. Kim totally took my opinions. Thanks! Well-well that\\'s \\'cause I went down there and they were all smoking. This is actually the smell of success. I did not! All right, fine! But I had too! I had to do it for my career! No well, no it\\'s not that bad, y\\'know? I mean yeah, my tongue feels a little fuzzy and these fingers sort of smell, I actually feel like I can throw up. I am so on board! Yeah, I did, but y\\'know what? I am really, really trying to cut back, y\\'know? Good luck, Rach. Well then let\\'s just quit! We\\'ll just quit! Let\\'s all quit! Oh but you could. You can. Absolutely! We can help each other out! We can get--what are those--those patches! We could be like the Patch Sisters! Yes! Great! Give me those cigs! Give it! Give it! Okay then! Hey! Hey-hey-hey!! Come on you guys! What are doing?! I thought we were the patch sisters! Well y\\'know if you, if you started smoking again you could\\'ve at least told me! Come on, give me one of those! What are we talking about? Oh wait, no-no-no! Drag me down. Drag-drag me down. Okay. Oh man! What?! What?! My birthday\\'s not for another month! Oh my God! You guys this is so great! I mean it\\'s so unexpected! I mean Chandler\\'s birthday is even before mine! Wow! This is great! Look at all these cups! This is so weird. Oh, okay, not so weird. I am so proud of Joey, I can\\'t believe he\\'s going to be on Law & Order! No because first they arrest the guy and then they try him. What\\'s going on? Ross! We broke up two years ago; you\\'ve been married since then. I think it\\'s okay that we see other people. Hm-mmm. Okay, y\\'know what? We don\\'t need her measurements. Big night! Oh, umm, okay, yeah, I\\'ll be, yeah I\\'ll be right back. Here you go. Thank you! Oh what, you-you want both of them? Okay, okay, okay, look, just don\\'t freak out, but I kinda lost it. I know it\\'s in the apartment, but I definitely lost it. Tell her to wear her own earrings. Nooo! Nooooo! You lent me Monica\\'s earrings?! I\\'m not allowed to borrow her stuff! Because I lose her stuff! Oh boy, I just can\\'t watch. It\\'s too scary! Oh yeah well, you know me, babies, responsibilities, ahhh!!! Uhh, no, no, it bothered me when he slept with other women. But y\\'know, I never really had anything to worry about. Ross was never very good at the flirting thing. Oh! Y\\'know what? You\\'re right! We meet, you flirted and then bamn nine years later you had me! Ohh! Thank God! Where was it? Okay that is the one we already have! What?! Yeah. Joey, why don\\'t you just tell her what happened? It\\'s not your fault. It\\'s not here Pheebs, it\\'s not here. Ohh, I went to Joey and Chandler\\'s last night! Okay! Wait a minute. Chandler has a jewelery box? Hey! The earring? No. But look, I found my sunglasses under the couch! I\\'ve been looking for these since like last summer. Okay, calm down, here they are. I don\\'t know, I don\\'t know. Oh gosh, she\\'s going to kill me. Ohh that\\'d be great! Okay, wait a minute. Wait a minute, I-I-I, I can\\'t do this. Listen honey, this is, it\\'s not Phoebe\\'s fault. She lent me the earrings, and I lost it. I\\'m so sorry. Honey, I feel terrible too. Your sunglasses?! Honey, you have nothing to prove. And if you really like this girl, I don\\'t flirting is the right thing to... I\\'m sorry. Okay, well, I\\'m gonna clear out some of these boxes. Hey! Hey! Hi! Hey-hey-hey, I\\'m Rachel! From upstairs? The ones with all the pizza? No. No. Every thing\\'s--they\\'re fine. Great pizza. But it\\'s uh, actually umm my friend Ross. He uh, just gets really nervous when he\\'s flirting. Yeah. I know, I know, but uh just, I\\'m telling you, once, once you get past that part, that where it-it just feels like you wanna die, he\\'s-he\\'s really a good person. Yeah. I\\'m-I\\'m telling you he\\'s really sweet and he\\'s really funny and he\\'s just ugh, got a good heart. And besides, I y\\'know, I think he really likes you. Well y\\'know, we have 7 people and like 10 pizzas, what do you think? Hey Ross? Umm, I just ran into Caitlin in the hallway and-and uh, you must be getting better at this flirting stuff than I thought. Well, I don\\'t get it, but she wanted me to give you her phone number. Yeah! I-I-I didn\\'t! I didn\\'t! She thought you were cute. Yay! Hey! Ohh, thank God! Finally! Ohh, it\\'s me and La Poo! Wow! I miss that dog. Great! Thanks! Okay. Oops. Sorry! Well, good thing you number all of them, huh? Ohhhh. Honey, honey, honey, it\\'s okay, it\\'s okay honey. I\\'m gonna fix you a drink, huh? Maybe a margarita? No honey, it\\'s okay! Listen, I\\'ll got to Ross\\'s and get the blender, you get all the margarita stuff ready. Okay, you want me to stop at the ATM? What?! Ohh please don\\'t be from a real dinosaur! Please! Please! Please! Please! Please! Please! Please! Please! Made in Mexico! Yes!! Ugh, who would buy this?! Hey! What\\'s up?! So all we have is ice? Okay. Oh. Oh! I know! What?! We can\\'t do that! Noo! Oh no! No! God no! He should not get back together with her. I know that! You know that! Even Ross knows that! But that still doesn�t give us the right to erase his message! I don\\'t think he\\'s the one who needs help. Ugh! Okay, you are crazy! I\\'m sorry, but she sounded generally upset! I mean, listen! Noooooooo! No, wait. Wait. No, Monica! Monica! We have to fix this! Yeah well unless we tell him. Oh, maybe that\\'s Emily calling back to leave the exact same message. Right? Hey! Hi! Hey! Y\\'know what? You are in our apartment all the time! Okay? This is, this is just a drop in the bucket mister! Okay, just a little scared. What\\'s going on Ross? What?! What? What happened?! Yeah! Really?! Because a car backfired? Well, I-I-I don\\'t know how this fits into your whole \"seizing\" thing but um, Emily called you today. No, she left a message. But it-it kinda got erased. There\\'s just something wrong with your machine. Well, uh something about having second thoughts about the wedding and did you guys make a mistake breaking up and uh, she wants you to call her. Now, that-that was a good thing that I told you, right? Okay. Thank you! Thank you! Because...I\\'m sorry, all right. Because y\\'know what? She didn\\'t want me...not important. The point is, I was right. You\\'re decision. Okay? I was right. You\\'re decision. Okay, no, that\\'s not the right decision. That\\'s not, that\\'s not right, no Ross-Ross, come on! I mean, that woman made you miserable! Okay, Ross, do you really want to get back into that? Ugh, Ross! That was not a near death experience! That was barely an experience! Okay, y\\'know what? Maybe, this is not about seizing stuff. Maybe this is about escaping stuff. I mean, look-look today you escaped death, y\\'know? And maybe this is a chance for you to escape getting back together with Emily? Well, there you go! Close call day. Ohh, honey no problem. Okay. Oh? No. Yeah. Yeah, uh you-you probably need that for stamps, right? Hey, you guys... Is Monica here? All right listen umm, I just bought something I\\'m not sure she\\'s gonna like it, and it\\'s gonna seem a little crazy, but this is something that I wanted since I was a little girl. Noo! I wish! Okay, you ready? Okay! Check it out! It\\'s a, it\\'s a cat! Yes it is! Excuse me! But this is a purebred, show-quality Sphinx cat! Well, it was a little extravagant, but I a pretty good deal. A thousand bucks. All right listen ball boys! My grandmother had one of these when I was a little girl and it was the sweetest thing! I mean it was so cute, it would sit in my lap and purr all day long, and I would drag a shoestring on the ground and he would chase it! Ugh! Look you guys, I\\'m really excited about this! Okay? I don\\'t care what you think! I\\'m gonna go set up a little litter box for Mrs. Whiskerson. Well, what am I gonna call her? Fluffy?! Hey. Oh, wow! Congratulations, that\\'s quite a waste of time. Yeah? Well, it\\'s my cat. Oh yeah, I got a cat. You guys this cat is nothing like my grandmother\\'s cat. I mean, it\\'s not sweet, it\\'s not cute, I even dragged that little string on the ground, and it just flipped out and scratched the hell out of me. And I swear, I know this sounds crazy, but every time this cat hisses at me I know it\\'s saying, \"Rachel!\" Well, I was gonna let you play with it. I give up you guys, I don\\'t know what I\\'m going to do with this thing! I tried! They won\\'t take her back. Well, they said would but they would only give me store credit. I mean, what am I going to do, get a thousand regular cats? No Mon that\\'s not the point. I\\'m out a thousand dollars, I\\'m all scratched up, and I\\'m stuck with this stupid cat that looks like a hand! Show cat! Quality show cat! Show cat! It\\'s not a baby! It\\'s a cat! Oh no! No! It\\'s actually...it\\'s very sweet. It\\'s very sweet. Look! Yeah, do you want it? Well, so then what are you doing to me? Okay? Just get out of here! All right? Move on! Yes! Thank you! Exactly! You want it? Oh, terrific! That\\'ll be $2,000. Okay, a thousand. Well, I do, but you\\'re just gonna have to actually look at this as more of an investment than a cat. Obviously you know how to haggle, so I\\'m not gonna try and take you on. Okay? So $800 and I don\\'t call the cops because you\\'re robbing me blind! Blind! Just take cat, leave the money, and run away! Run away! Damnit! Cat, can\\'t you at least smile or something?! Okay, did anybody just hear that? Anybody? It\\'s not! I\\'m defrosting a chicken. Oh, I uh sold Mrs. Whiskerson. Yeah, 15 hundred dollars. Oh yeah, there you go. Oh good, great! I\\'ll-I\\'ll keep that in mind. Phoebe! It\\'s 6 o\\'clock in the morning! Why aren\\'t you at Gary\\'s? Phoebe, are you okay? Phoebe, honey, wanna get some breakfast? Yeah, it is amazing it lasted that long. No, I meant with the dropper over here. Well, my eye is a little itchy. Richard? I\\'m not gonna go see your ex-boyfriend! Well, I\\'m sorry I\\'m not going to an eye doctor! Ross! Come on! That\\'s all right! Fine--Okay, I have a weird thing about my eye. Can we not talk about it please? Monica! Come on! Ross! Stop it! Come on! Chandler! Just stop it! Come on! All right! Let\\'s get this over with! Ugh! Ohhh! No! Look what I did! Oh, I mean, look at this mess! I mean, we\\'re probably gonna have to clean this up! Y\\'know? We\\'re gonna have to reschedule! Oh my God! What does that thing do? All right, I\\'m outta here! Hey! So were done then! Okay. Uh-huh. Okay. What?! All right. I\\'m sorry. All right, I\\'ll just stay in here this time. Okay. Uh-huh. Okay. Okay. Okay! Great!! It was very, very nice to meet you sir--Ow! Hey! What are you doing?! Are you crazy! Yeah, no, I don\\'t-I don\\'t put things in my eye. Great! Okay, just give me the damn drops! Y\\'know, I-I gotta tell ya, those eye drops are a miracle. My eye is a 100% better. Damn! Bye you guys! Oh honey, I\\'ll say good-bye to you at the car if you don\\'t mind the puss. Well, wait a minute! The puss is good! It means it\\'s healing! Oh, did you beat him at a board game? He turns into such a baby when he starts to lose. Eh! Stop it! Okay. Okay, then y\\'know what? Help me! I need help! I can\\'t do this! All right! All right. Yes! Okay. Okay, they are. Four. Really?! Okay! Great! Okay. Well, well, you said it was practice! Because I knew you were lying! What are you? Monica!! Stop it!! Oh my God! Stop it! Oh my God! You really are freakishly strong! Monica! Stop it! Wow, y\\'know if Joey and Chandler walked in right now, we could make a fortune! Yep! What?!! Stop it! Stop it! Oh my God! Oh! Pheebs? Could you get that? Please? No! No! It\\'s just that all the people in the entire world that I want to talk to are right here. Sucker! Hi! Well, I guess I could take a couple days off work. Oh no, wait a minute, wait, I\\'ve got a presentation tomorrow. I can\\'t miss that. That sounds great. Okay. Yeah, that would be nice actually, to have the apartment to myself for a night. No! So I can be by myself. Y\\'know? Have a little alone time. No! Phoebe just because I\\'m alone doesn�t mean I wanna walk around naked. I mean, you live alone, you don\\'t walk around naked. Oh! Look what happened! Huh, check me out! I\\'m in my kitchen... naked! I\\'m picking up an orange. I\\'m naked! Lighting the candles, naked, and carefully. Love to love ya baby! Ow! Love to love ya baby! Ow! Love to love ya, baby! Darnit! Ugh. Uh, yeah, if you want too. Yeah, sure? And um, what-what is that Ross? What?! Are you crazy? Oh God, you saw me?! Oh! Noo!! No! You thought, you actually thought I wanted to have sex with you?! Ohh wow! I�m sorry, but Ross you kicked off your shoes! Yes of course, absolutely! You\\'re right. I\\'m sorry. Yes. Okay. Oh wait! One more thing umm, do-do we still need to uh settle the question of \"us?\" Okay umm, Ross? I\\'m-I\\'m really warm, so I\\'m going to be taking off my sweater. Now, I\\'m just letting you know that this is not an invitation to the physical act of love. I\\'m sorry. I\\'m done. I\\'m done. No, not really. I mean you\\'ve seen me naked hundreds of times. Okay. All right, that\\'s true! But y\\'know I just don\\'t embarrass that easily. No, I don\\'t! Ross, I think I\\'m just a more secure person than you are. Yeah. Yeah, all right. All right! Just keep walkin\\'! All right? Ross! What are you... I\\'m sorry sir. I just, I think he just really likes you. Hi! Yes, I\\'m sorry. Do you have any extra pants? Umm, my friend seems to have had a little accident. Yes, I did. Thank you very much, it was excellent. Ahh. Hello! Ohh, kids love me. Hi! Pancho Vila? What are you talking about Pheebs? I don\\'t... Oh my God, you drew on me?! Ross, I have been walking around like this since the plane! I can...you have so crossed a line. All right, it won\\'t come off! It won\\'t come off! No, actually I took it off then I drew it back on. Hi!! Hi. What?! What else did he say? Ross, no! There is no way I am leaving this room looking like this! Ross, I am a human doodle!! Okay, I need a, I need a drink! Macadamia nut? Hm-mmm! Nope! Oh my God, I\\'m starting to look like my great aunt, Muriel. Hit me! I bet 20. Hit me. Hit me. Hit me. Hit me. Hit me. Hit me. Hit me. Yeah, and also we need more umm, drinks. Hold on a second. Whup, okay. Hello! Vegas? Yeah, we would like some more alcohol, and y\\'know what else? We would like some more beers. Hello? Ohh, I forgot to dial! Ohh, I love Joey! Joey lives with a duck! Hey! I\\'m doin\\' good, baby. How you doin\\'? Ohhh!! Oops! All right, so what do you want to do now? Okay, y\\'know what? There\\'s only one way I\\'m leaving this hotel room. Good luck to ya! Wow! Hello! Well, hello, Mr. Rachel! Wait! Okay! Well, hello, Mr. Rachel! Wait! Okay! Ohhh! I don�t know. Do-do you have any clothes on? Really?! Oh! I remember laughing! I laughed a lot. Ohh, I mean, we were really drunk. I�m just glad we didn�t do anything stupid. I don�t know. What do you mean last night? Nothing, nothing uh, happened last night. Who got married?! No, we didn�t get married! That�s ridiculous! Oh my God. No! Well, I guess we just find a divorce lawyer? Hey, hubby! Uh-huh. Okay! So, we�ll just stay married. And I will make everyone call me Mrs. Geller! Okay, see now I�m scared because I don�t actually think you�re kidding. What-wh-what so we�ll just stay married forever?! Ohh, okay, I�m sorry. You�re right. Y�know what? We absolutely can stay married, because I was under the impression that the boxes were far away from each other. All right, look, just please, take a moment here and think about what you�re asking of me. You are asking me to be your wife! Hey! No! Ross, come on! No! Listen, look I thought a lot about how to tell you this and the bottom line, Ross, is we can not stay married. Oh b-b-but it is! Oh Ross, come on! This is not, this is not a marriage!! This is the world�s worst hangover! Ross, listen, if you do not get this annulment, I will! Thank you. Hey-hey umm, uh, is there, is there any such thing as an annulment shower? Huh, that�s funny. You look like you�re gonna be the... All right. Okay Chandler, enjoy your handful. Hey, so did everything go all right with the annulment? Ross, thank you. Hey, do you guys wanna go see a movie? Pheebs? Okay, umm, I�m gonna get my sweater. Hey, so did everything go okay with the annulment? Ross, thank you. Hey, do you guys wanna go see a movie? Okay, umm, I�m gonna get my sweater. Oh? Yeah! Sure! Oh but Phoebe, we�re gonna be late for the movie. Yeah, we�re, we�re actually just gonna walk �cause it�s right up there at the Angelica. Okay, stop-stop! Phoebe?! What was that?! I haven�t seen it yet! Noooooooo!! Hey! Ugh, the worse day! Y�know, you think you�re making progress at work and then your boss calls you Raquel. I believe you. So, it was right in the middle of a staff meeting so of course no one else wants to correct her so everyone else is calling me Raquel! By the end of the day, the mailroom guys were calling me Rocky! What? Oh my God! That�s so great! I�m so happy for you guys! And that was so sweet of you to ask! Oh my God, the three of us are gonna have such a good time living together! And Chandler, you�re gonna have to watch those long showers you take in the morning because you know Raquel can�t be late. Ohh! This is so exciting! Oh God! Come and knock on my door.... Hey roomie! Are you pregnant?! Um-hmm. Oh my God! Oh, that�s funny, I can�t believe I did that. Okay. Sure? Thanks. Monica, where did you get these?! Ooh, good God, they�re so yummy! Hey! Okay! Okay. What the hell is that? Wow! Mon, thanks! I love this plate! Mon, honey you�re not dying. I�m just moving out. Y�know, I mean we�re gonna see each other all the time. Are you okay? You�re not blinking. Oh, all right. But y�know I gotta say, I don�t, I don�t think six years counts as an era. What is the matter with you?! All right, fine, but don�t get mad at me. It�s-it�s just a little hard to believe. Well y�know, it�s you guys. You-you do this kind of stuff! Y�know? I mean, you-you were gonna get married in Vegas and then you backed out! I guess I�m not upset because I don�t see you guys going through with it. I�m sorry. But I... It is? Really? I mean we�re not, we�re not gonna live together anymore? What? Oh my God! I�m gonna miss you so much! I mean it�s the end of an era! Monica and Chandler are really moving in here and I have to move out and everything is changing. Thank you. Pheebs, I wanna ask you something. Well since I�m movin� out and-and you�re so beautiful... ...how about I move in with you? You have a roommate?! Oh, that�s true. Yeah, yeah I think I�m gonna find my own place. Pheebs, I have to ask you... You�re just staring into space. This one? Pheebs, this whole apartment thing is just a nightmare! Every place I can afford comes with a roommate who is a freak. I mean, look at this; \"Wanted. Female roommate, non-smoker, non-ugly.\" It�s just, there is nothing! The city�s full! Hey. Yeah! Why? That sounds great! I�d love to live at Warren�s!! I love Warren! Thank you! Oh, this is great! I am gonna call him right now! Oh, thank you! Ugh!!! Well, the apartment is already subletted! I mean, this is just hopeless. I�m never gonna find anything. What?! Oh my God! Are you serious?! I would love to live with you Ross; that�s-that�s great! Thank you! Ross-Ross, you have no idea what this means to me! I mean, I mean I was gonna be homeless. You just saved me! You�re my hero! Oh, I have to go tell Monica what a wonderful brother she has! Hey! Oh thanks, but listen, I was just at Monica�s and she and Chandler had a big fight and they�re not moving in. No-no, they just had a big blowout over what to do with my room. Yeah, I feel kinda bad for them, but I�m also really psyched �cause I don�t have to move in here! No-no, I�m staying put. Why, where are you going? Hi! Oh wow. Yeah. Y�know umm, uh, umm, about that, umm, Ross I really appreciate your offer to let me move in and everything, but don�t you think it�s gonna be weird? Well, because of us! Because of our history. No? No! Not at all! Okay, but Ross, eventually you and I are gonna be dating. Yeah! I�m gonna have a boyfriend, you�re gonna have a girlfriend. But y�know what, if you think it�s gonna be okay we�ll just work out a system. Y�know, it�ll be like college, I�ll hang a hanger on the door and put a sign, \"Come back later, I�m gettin� lucky.\" Umm, well let�s see Monica and Chandler are occupied. No, the other thing. I really think it�s great they work things out. Hey, can I borrow the key to your house so I can run across the street and make a copy? Thank you. Now are you sure? Because once I make a copy, there�s no turning back. All right, well the place was closed. I�ll just copy it later. Well, it would be easier to move just right across the hall. Wait a minute, unless you�re thinking about Naked Wednesday�s. So, which of this kitchen stuff is mine? And? Look at that! What?! No-no, I bought those. Yeah. Well, who wouldn�t?! And Mrs.?! What?!! Ohh! Oh God! Yeah honey you don�t believe her do you? Ross, hey you know what might make it less boring? Some uh, some visual aides. Hey Pheebs, you�re still alive! How are you doing? Pheebs, what-what are you doing? Oh yeah, scared the hell out of me. I thought we�d lost you forever. Pheebs, you lie down? Monica! Did-did you take these back? Oh yeah, they�re really great! Aren�t they? Yeah. Nice try! Hey! Wow, that�s great Ross, I�m sorry we weren�t more supportive before. Well, we�re a little early, the lecture doesn�t end for 15 minutes. Yeah, we could. Oh hey look! There�s some Kappa Kappa Deltas! I was a Kappa. Hey sisters! Wow, we really are bitches. Yeah, and not a very good one. Yes, yes, Bombay is bery, bery nice this time of year. No! They are mine! You stole them from me!! Yeah that seems fair. We never use them. Well? Yeah, I mean, come on Ross, no one will even notice. I mean they�re probably not even listening! Of course they�re listening to you! Everybody listens to you. Really? Really?! Okay! \"Hello Ross, this is Dr. McNeeley from the Fake Accent University, we�d like you to come on board with us full time! Hey! Really?! How do you know? Oh, I�m sorry. Hello? Uh no, he�s not. Can I take a message? Ross got married again? Nooooooo!!!!!!!!! Ross!! Are you crazy?! I am still your wife!! What, were you just never gonna tell me?!! What the hell is wrong with you?!!!! Ugh, I could just kill you!!!! I cannot believe that you didn�t tell me that we are still married!! When?! After the birth of our first secret child?! Ross didn�t get the annulment; we are still married. So, I still have boxes here. I still have boxes at Ross�s, and I have nowhere to live! Wow. I could so easily freak out right now. Well, maybe-maybe I could be your roommate Pheebs. Well there�s an idea!! That would be great! Wait, how long is Denise gone for? December 26th, huh maybe she�s Santa Clause. Oh look who it is, my husband. The apple of my eye. Well sure, if you say you�re gonna take care of everything I have no reason to doubt you. Give me those forms! All right, now I�m gonna do this my way and I don�t want to hear a peep out of you! Op! You�re peeping! Ross! Y�know what, I just got, why? Why did you do this?! I don�t wanna hear \"Three failed marriages!\" Well, y�know what? Thanks to you I�m half way there! Ugh! Oh! I am so mad! Ross, I don�t think I have ever been this angry! Ugh! Yes your honor, and here are, are forms, all filled out. Uh yes, heroin and crack. Well, you would know. Ross, please, I found the magazines! Ugh! Ross! Your honor, rest assured relationship ended like two years ago! And could you strike \"Consummated like bunnies\" from the record? Well, yes, we got married in Vegas and uh, and the names I think. What?! Me?! What about you and your consummated like bunnies nonsense! Okay, do you see, do you see what you�re keeping me married too?! All right look lady here is the deal, I came here for an annulment and I am not leaving here until I get one! And thank you for your time. This is totally your fault! Well, you ripped the paper out of the court reporter�s machine!! Don�t call us that! Oh honey thank God you�re home, I was getting worried. Oh, little �X�s! Great! That makes up for everything! Oh, name one stupid thing that is as stupid as this one! Hey! Wait a minute! That was different! I did those things because I was in love with you! Nothing. Uh-hmm. Okay Ross, we�re, wait a minute. Umm, I uh, I kinda have a little confession. Well, y�know this whole marriage thing, kinda my idea. Well, remember how we were too drunk to remember anything the night we were married? And uh, yeah, I didn�t really, I didn�t want to say anything, but it kinda it just, it kinda kept coming back to me, and umm, remember we were in the casino and for some reason thought it would be funny to eat a lot of grapes. And uh, and I thought it would be funnier if we got married. So as a, as a compromise we decided first to get married, and then to eat a lot of grapes. So umm, sorry I got us into this mess. Yeah, don�t push it though. I know. I always thought if you and I got married, it would be the one that stuck. And it wouldn�t be a secret, and we wouldn�t have our wedding dinner at Pizza Hut. No, it was on the house, it was, it was a newlywed special. Hey, thanks Ross, for taking care of all of this. I�m gonna need a copy of those. Pheebs, I was wondering... Well and clearly not a minute sooner. Of course I packed! Monica relax! I just wanted to ask Phoebe her opinion on what I should wear tonight. Yeah, yeah, I know. Surprise!! No, no don�t get mad because look... this is what happened. So I-I started packing, then I realized, \"What am I doing? I am lousy at packing!\" Right? But you love packing! So, as a gift to you, on our last night, ta-da! Ohhhhhh, look it�s the roller blades. You remember when we got these? I guess you weren�t there. I�m sorry Pheebs, I guess I�m just really said that I�m leaving. I have one. Uh well, I guess I�m not gonna miss the fact that you�re never allowed to move the phone pen. You get your messages! So-so, you missed a message from who? Chandler or your mom? Or Chandler? Or your mom? Ooh, your brother. Score! You know what else I�m not gonna miss? \"I�m Monica. I wash the toilet 17 times a day. Even if people are on it!\" \"I�m Monica, I don�t get phone messages from interesting people. Ever!\" \"Oh my God, I can�t find a boyfriend! So I guess I�ll just stumble across the hall and sleep with the first guy I find in there!\" I�m unpacking! I�m not moving! Is that picture straight? Hey, y�know what? You�re the one who wants to make this big change and move in with Chandler! You should be the one to go! Why should I have to leave?! Well it�s mine too! What else you got?! Look! This is ridiculous. We should be packing you!! Great! Monica�s moving! Oh really?! Then how come all your stuff is in this box?! Yeah, I�m just mad! Funny, because I was just gonna go across the hall and write that on Chandler. Well, Phoebe that�s fine because I�m not moving. Oh really? Like what Monica? Oh yeah, good start Mon. Yeah and you stretch �em out with your big old clown feet. Yeah, I do. I-I do, do that. Well y�know, I don�t want you to be cold. Oh, it�s gonna be fine. But honey, I think she�s moving in with Chandler. Okay. Oh! I have your key. Here you go. Yeah. Oh God! This is silly, I�m gonna see you in a couple of hours! Bye house! Bye Mon. Yeah. Hi... Rachel... Phoebe�s... leave... Wait, I-I just said \"leave.\" Phoebe, come on that\\'s silly. No, I have all of the good words. OK, fine, fine, we can switch. Okay. Everybody... Rachel, Phoebe�s What? Phoebe, come on can we finish this later? Cause I wanna go running before it gets dark. Oh! Why don\\'t you come with me?! Yeah, it\\'ll be fun. We\\'ll run in the park. It\\'ll be like our first y�know roommate bonding thing. Yeah and there\\'s really cute guys there. OK! Now wait a minute. You just took all the words! Okay. You guys, I\\'m telling you, when she runs, she looks like a cross between Kermit The Frog and The Six Million Dollar Man. Oh! I used to do that too! Aw, Mon... Yeah, yeah and you know what, I know she\\'s gonna wanna run again, I just don\\'t know how to get out of it, I mean, I live with her. You\\'re right, you\\'re right. I should just tell her the truth. Pheebs, Monica tripped me, I don\\'t think I can ever run again, ever! Ankle. No, no Phoebe no, I was...no. You know what, I was, I was actually just checking to, see, if I could run. And I can! No, wait Phoebe. Hey Phoebe, can I talk to you for a second? Okay, um, I... All right Phoebe look, I just wanted to say that I\\'m sorry. OK? I handled the situation horribly and I should not have lied to you. Well, I-I should\\'ve told you the truth. Well, y\\'know, the reason I didn\\'t wanna go running with you is because um, well y\\'know the way that you run is a little... Well, it\\'s embarrassing. People were looking at us like we were crazy. Because they\\'re people. Yes, but still. They\\'re people, with eyes. I-I am not uptight...Hey-hey-hey-oh-oh! Listen, I am not uptight, man. Hey! Oh honey, I\\'m so sorry, you were right, this feels great! Gone! I mean its amazing Pheebs. I feel so free and so graceful. Hey! Look out for the horse! Sorry! Ohh, are you setting Ross up with someone? Does she have a wedding dress? Hey. Yeah. Well, sure, but they might think it�s kinda weird considering I don�t work there anymore. I-I, got a job at Ralph Lauren. Yeah. A year ago.. But, Pheebs, you can still use the copy machine where I actually work. But, just come by at lunch so my boss doesn�t see you. Cause Kim will just freak out and she already doesn�t like me very much. Sure. Oh my God. Did you talk to him? What? What!?! You kissed him? Phoebe are you serious? Phoebe, I mean, you do know he�s married? Phoebe... Oh, Kim, Hi. So you know, I...I handed in that marketing report and I never got to hear what you thought. Ahh. So. Wow. The spring line, it�s really going to be great this year, huh? So I hear the Ralph Lauren fooled around with someone in the copy room. Yeah. Your teeth? Yes, I saw them from outside. You guys are never going to believe this. But, Phoebe made out with Ralph Lauren. Yeah I know. She ran into him at my office and they just made out. And the craziest thing is, now my boss likes me because I told her about it and she said it was the best gossip she�d heard all year. That-that is your make out buddy. Don�t you recognize him? Oh wait. Ohh, Phoebe I love you. Kiss me please. What? Oh My God, Phoebe, that�s not Ralph Lauren. That�s Kenny the copy guy. Oh..Go..Oh..and I told my boss that someone made out with Ralph Lauren. If she finds out that I lied to her, she is going to hate me even more. Phoebe!! To get you to make out with him!!! Ohh, hi, Kim. Yeah, remember that thing I told you that happened yesterday? Well it didn�t happen. Okay, two things didn�t happen. Remember I told you that someone made out with Ralph Lauren in the copy room? Well, it turns out that�s not true. No. Oh no, no, no. Oh God, you think I made out with him. I-I don�t want your job. I-I don�t. Ohh this is such a mistake. I did not make out with him. Nobody made out with him. I did not use my keycard yesterday. I don�t even know how to use my keycard. Now, she thinks that I made out with him and I did it to get her job. I did but she doesn�t think anyone would be stupid enough to confuse Kenny the copy guy with Ralph Lauren. You were with Kenny today, weren�t you? Ohh, Phoebe, what am I going to do? I�m not going to sleep with Ralph Lauren. I mean, I could, but I wouldn�t. That wouldn�t help me. Kim, hi. Okay..Okay.. Look. I�m sorry that I lied to you before. You were right. Ralph and I were an item but were not anymore. Yeah, he dumped me. He said, \"Rachel, I can�t do this. Even though you are a very, very, very beautiful women. I can�t do this. I�m married and I�m sorry.\" And then I don�t know why but he said, \"and you will never get promoted. Especially not above Kim, who is an integral cog in the Ralph Lauren machine.\" Of course it�s true and it hurts so bad. You and Ralph? Hey! Hey, Pheebs, check it out. Yeah, for my desert, I have chosen to make a traditional English trifle! Nothing? So, if-if I mess this up, there�s nothing else for dessert? Wow, Monica, I love that, you really have faith in me. Thank you. Technical question, how do you know when uh, the butter�s done? Her dancer friends? Really?! I dunno. Y�know to me he�ll always be Jack Geller, walks in while you�re changing. Look at it, isn�t it beautiful? It�s a trifle. It�s got all of these layers. First there�s a layer of ladyfingers, then a layer of jam, then custard, which I made from scratch, then raspberries, more ladyfingers, then beef sauteed with peas and onions, then a little more custard, and then bananas, and then I just put some whipped cream on top! The beef? Yeah, that was weird to me, too. But then, y�know, I thought well, there�s mincemeat pie, I mean that�s an English dessert, these people just put very strange things in their food, y�know. Oh! by the way, can I borrow some Rum from your place? And while I�m gone don�t you boys sneak a taste. Joey, God, your apartment is like a hundred degrees! No! Yeah? No, I did, but tell me again, because it�s so romantic. Joey! Come on! I don�t wanna make any mistakes, alright? This is the only dessert and if I screw it up everybody\\'s gonna be like. Oh, remember that Thanksgiving when Rachel screwed up the trifle? So why don�t you just let me worry about making the trifle and you just worry about eating it, alright? Okay... What�s up, Ross? Yeah! Oh no. No Ross, don�t do this. I just- I don�t think us getting back together is a good idea. I thought this might happen today. Ross, I know the holidays can be rough. Y�know? And it�s probably really hard for you to be alone right now. No, I-I live with Phoebe. I mean you�re alone, alone. And I just-it�s just not the time for us. I�m sorry. Joey, you�re gonna have to stop rushing me, you know what? You don�t get any dessert. No, I�m just kidding I would never do that to you! Okay, everybody, it�s trifle time! It sure is. Beef. Alright, Monica, I want you to have the first taste. Oh oh oh, wait! You only got whipped cream in there! Ya gotta take a bite with all the layers! Op! Wait, you dropped a pea. Well? Really? How good? Okay, now what was that all about? Is it-does it not taste good? Let me try it. ...So a bird just grabbed it, and then tried to fly away with it and, and then just dropped it on the street? Oh, Phoebe, do I wanna hear this? Oh my God, he dream-cheated on you! I wasn�t supposed to put beef in the trifle! You guys! It was bananas, cream, and beef! I-I just cannot believe that you ate that so that I wouldn�t feel bad! That�s a good story, Grandpa. So, pretty much around the same time that you started telling this story. Well, I used to date him, but you�re still going out with her! Yeah, but she also invited you and Ross. Yeah, honey, I�m sorry, but I don�t think that was a romantic thing. Well, that�s a lot better than Ross trying to kiss me in High School, and saying that he did it because he needed chapstick. Okay, you look in the kitchen, I will look in the back closet. We are looking for our Christmas presents from Monica. Don�t worry, we�re just gonna search here for an hour, them we�re gonna go over to Joey�s and search, OK? Chandler, aren�t you worried about what to get Monica for Christmas? Chandler, that�s not enough. I mean what if she gets you a great present, two medium presents, and a bunch of little presents? And you�ve just gotten her one great present? I mean that�s just gonna make her feel bad. Why would you do that to her Chandler? Why? Why? That�s right! Oh, it�s a Macy�s bag! Dear losers, do you really think I�d hide presents under the couch? P.S. Chandler, I knew they�d break you. We are so gonna find them this year. Yeah. Yeah, we found them. There were in the guest room closet behind some coats. Well Chandler, what is this very weird, metal A Z thing? Ha! Yes, okay, oh, by the way, I just gotta say, I think it\\'s really nice of you that even after you\\'ve moved, you still keep storing that stuff for Joey! Hey, this is hollow. This bench, it�s hollow! I can�t believe I never knew that! Oh, the presents!!! Oh, this one�s for me! Ooh, let�s open them! Whatever Linus, I�m opening mine. Uh, wait, so you guys are telling me you actually did the routine from eighth grade? �Cos I was gonna say there�s no way you could�ve done the end the way you guys did it back then! Yeah. Don’t do this to yourself. I know. Oh-oh, Pottery Barn! You can throw the rest away. Monica look! Look-look-look! Here is that table that I ordered. Yeah! It’s an apothecary table. Does anyone even know what an \\t apothecary is? Phoebe hates Pottery Barn?! Well this has story behind it! I mean they had to ship it all the \\t way from the White Plains store. Okay fine! I’ll-I’ll just tell her it’s an antique apothecary table, \\t she doesn’t have to know where it came from. Oh! Look at this little \\t drawers! Oh look-look it says that it holds 300 CDs. Hey! Guess! Ha! See, I knew, I knew you’d get it on the first guess. Isn’t it \\t cool! It’s an apothecary table. Ohh, yes. Almost. It was only 500 bucks. Oh, okay see I thought, I thought you meant how much was it when it \\t was new, y’know like back then. Yeah no, I mean it was at a flea market, so it was y’know, it was \\t like a dollar. And fifty. So it was like one and fifty dollars. Yeah. Uh, it’s from yore. Like the days of yore. Y’know? Yes! That I know, this is from White Plains. Hey! We’re here! Ohh! Oh my God! Oh no! Ross! Phoebe’s gonna be here any second, she cannot see this! I know you did! I bought the same one! And if she sees your table \\t she’s gonna know that I lied to her. I told her ours was an original. Because she hates Pottery Barn. I know! I know, she says it’s all mass-produced, nothing is authentic, \\t and everyone winds up having the same stuff. \\t So come on, she’s gonna be here any second! Can we please just cover \\t this up with something?! Please? Ooo! Oh, I forgot they made sheets! Ross, get over it! It’s not like she hates you. Ross, she’s not weird, she just wants her stuff to be one of a kind. Hey! Ooh, Phoebe’s here! Okay, let’s turn out all the lights and we’ll \\t just watch the movie! He got it a flea market! That’s funny. Ohh!! Noooooo!! Oh my God, Phoebe, Pottery Barn has ripped off the design of our \\t antique! Oh yes. ...see I can’t decide whether it would go better next to the new \\t wicker dining chair, the Sahara desk, or the Parker console table. I know, I know. I went a little crazy. Hey. Oh it does, it does! It is a room separating apparatus from Colonial \\t times. Well there’s yore. And uh, y’know, yesteryear. Oh honey he doesn’t need my help. Y’know what? I don’t, I don’t think Phoebe \\t really wants to come. Oh, she does want to. Pheebs, I don’t know what to say. I guess the flea market was just \\t better last time. Yeah. Yeah, y’know what? Don’t look at it. Seriously, don’t look at it. Ugh, those bastards! Let’s go. No! No! No! No it’s not! No it’s not! Come on! Phoebe, ours is totally \\t different! I mean we don’t have the... We don’t have the...that lamp! And-and that screen is \\t y’know, on the other side. Okay! Okay-okay look—no I did, I just wanted this stuff and I know \\t how you feel about Pottery Barn. Just... Come on don’t be mad. Well then honey, buy the lamp! Hey, we have that 60 bucks from Ross. What?! No! I’m not gonna move out! Oh. Yes! I would so move out! That’s right! I�m sorry, I was just reading the joke below it. Man, that one is funny. We are looking at a Playboy. Oh, yeah, sure. I mean, like in the case of this young woman, she has lost her clothes, so she rides naked on the horse, she�s crying out, �Where are they, where are they?� You see, now, I would date this girl. She�s cute, she�s outdoorsy, you know, and she knows how to build a fire. I mean, that�s got to come in handy I don�t know. Monica, what are you doing? Well, people are different. What? Wait a minute. What are you saying, that I�m a pushover? I�m not a pushover. Oh my... you think I�m a pushover. Well wait, watch this, you know what? You�re not invited to lunch. What do you think of that? I think that�s pretty strong, that�s what I think. Come on, Monica, let�s go to lunch. I cannot believe her. Oh, oh, I love that Japanese place. All right, wherever you wanna go is cool. No. Joey, honey, I don�t think you�re supposed to go back there. Come on, Joey, I did it and it was fine. Well, you know what? This is great. Finally, I have someone I can pass on my wisdom too. Let me tell you about a couple of things I learned while working at the coffeehouse. First of all, the customer is always right. A smile goes a long way. And if anyone is ever rude to you? Sneeze muffin. Phoebe. We would like to talk to you for a second. Yes, we are very sorry to tell you this, but you, Phoebe, are flaky. So, what, you�re just, you�re just okay with being flaky? Yeah, and I am okay with being a pushover. I am not a pushover! Wow, you know what? That is the best fake speech I think I�ve ever heard. How-how did you lose your job here? He left work in the middle of the day to do a personal errand and left you in charge when you�ve been working here two days? That�s not, that�s not right. Joey, you can�t let him get away with that. Ya know what, I�m not going to let him get away with that. I�m going to say something to him. No, I really shouldn�t say anything. No, I should say something to him. Gunther, I want you to give Joey his job back. That is really not fair that you have to fire him. What? That�s right, he can have his job back. I�m glad we got that all straightened out. There you go, Joey, you got your job back. Yeah, pretty nice, huh? Now who�s a pushover? Oh, I�m sorry. Oh, yeah. Definitely you, Pheebs. Hey. Oh, I have a question. If-if-if one of you had to pick one of the other two guys to go out with, who would you pick? Wait a minute, you�re only giving free stuff away to the pretty girls? Honey, no one thinks you�re a pansy, but we do think you need a tissue. Oh my God, Jill! This is Chandler. And you know Monica and Ross! And that�s Phoebe , and that�s Joey. Don�t!! Honey, what are you doing here?! Wow! What did he say? Oh! Did you hear that?! My dad�s proud of me! My dad�s proud of me. Oh yeah, sorry. Wait honey, so what did you do that made dad cut you off? Jill, honey, I think this is the best thing that could�ve ever happened to you. I mean you needed to get out on your own anyway! And you know when I did it, I-I-I at first I was scared, and look at me now! I�m the only daughter dad is proud of! Okay, well this is, this is what you�re gonna do. You�re gonna get a job, you�re gonna get an apartment, and then I�ll help you and you can stay with us. Right Pheebs, she can stay with us? Hey! What�s goin� on? Jill! Did you shop?! You went shopping?! What, and then you just came in here and paraded it right under Jill�s nose when you know she�s trying to quit. Wow, you guys are terrible! What�d you get? Oh. Apartment pants? No, of course, of course I�ve heard of them! Ross, what did you get? A Pashmina? Really? Jill? Oh, come on! You think that�s gonna work on me?! I invented that! All right, it�s okay. One little setback is okay, just don�t let it happen again, all right? Now since daddy paid for all this stuff, I should take it all away. But I�m just gonna take the-the Pashmina. And the uh, and the uh pants. Y�know what, I�m just gonna take it all away, �cause that way you�ll just really learn the lesson. Okay? All righty, I�m gonna run a couple of errands and I will see you at dinner. Hey! What�s up?! Well, it�d better not be about the apartment pants, because I just pitched the idea to my boss at Ralph Lauren and she loved it. What?! With Ross and Jill? With Ross and my sister? With my sister Jill and my ex-boyfriend Ross? Oh there is no way. Oh my God! I can not believe that! I mean I don�t really like it when Ross goes out with anyone, but my sister isn�t that like incest or something?! Oh my God, and they�re gonna have sex! Oh! Oh no what if he marries her too?! Oh this is just terrible, this is just terrible. And I can�t stop it! I can�t. I don�t own Ross! Y�know? And Jill, she should be able to do whatever it is that she wants to do! And oh my God, I can�t believe Ross is marrying my little sister, this terrible. Oh my God, this is just the worst thing that could have ever happened to me. Oh hi! Y�know, I just wanted to see if there were any leads on the old job front. That is great. Hey, y�know who doesn�t have to job hunt? Ross. He works at the university. Oh so you know that, you guys talked about that, so you get along, so you think you�re gonna go out? I just, Phoebe, said y�know thought she saw something between you guys. Yeah. Oh not-not so much. Umm, what-what do you, what do you mean is there something wrong with Ross? Are-are you saying he�s a geek? No! No I, no Ross is not a geek! What handsome is not your type? Smart? Kind? Good kisser? What those things aren�t on your list? Ross is a great guy! You would be lucky to be with him! Oh no-no-no, no-no-no, that�s not what I meant. Yeah but, he�s not your type. Yeah but, you don�t, you don�t, you don�t want to try to much too fast. Y�know? I mean, you do remember what happened to the little girl that tried to much too fast don�t you? She-she died Jill. Hi! Well yeah. Really?! Oh so-so not really never. Hi! Wh-what are you doing here? Well, I-I don�t like it. It�s kinda slutty. Yeah well, I�m-I�m a slut. Rachel. Yeah I know, and I bet you thought it would be weird. But it�s not! Why aren�t you home yet?! Oh yes, it�s me! Sorry! Uh, I�m just, I�m just looking out your window. At-at the view. What are you guys doing? Oh, he brought her back to his apartment. Ugh, she is a slut! Oh my God, look-look he�s taking off her clothes! Oh, this is just terrible. Oh. Ross is on a date with my sister and they shut the drapes two and a-half-hours ago. Yeah. And y�know who should�ve shut their drapes? Is that perverted old couple two doors over. Oh don�t even ask! Oh Ross, hi! Hey, how are ya? There you are! I�ll take a coffee. So how was your big date last night? Yeah fun? Great! So uh, so did you guys hit it off? So uh, so did anything happen? Because rumour has it you guys shut the drapes! Oh, slides. So really nothing happened. Right. Was it the, \"Please don�t show me another picture of a trilobite vibe?\" She asked-asked you out again? Okay-okay-okay-okay-okay-okay-okay! I got it! I got it! I got it! I can�t! I can�t! I can�t! I cannot go with you and my sister thing. Okay? I just can�t. It�s just too weird, all right? I imagine the two of you together and I freak out. It freaks me out. I can�t do it! I can�t do it. Thank you. I...yeah. No-no-no! No-no-no! Please Ross, I can�t! I can�t do it! It�s just gonna freak me out!!! Ross thanks. Oh no! No! No-no-no-no! No, I mean come on that�s-that�s crazy. I mean that�s crazy. So what�s-what�s going on with you? What is going on with you? Yeah do it now, call right now. Hey! Ohhh well. Y�know what honey? The best thing to do to get over a guy is to start dating someone else. Oh! There is this great guy you will love at work named Bob! He�s a real up-and-comer in Human Resources. It�s not random, it�s Bob. No honey, okay, okay, you wanna know why Ross canceled the date? Because I asked him to. Hm-mmm. Because you are my sister and Ross and I have this huge history. No. Y�know Bob in Human Resources� Look, this is not that big of a deal! You just don�t date Ross! There�s a million other guys out there, you just... I�m not telling you what to do! I am telling you what not to do! Jill this is not about me being jealous of you! This is about you being a brat! Wanting what you can�t have! All right, all right, well you just blew your chances at dating Bob! In Human Resources!!!!!! ...I am jealous of her?! I mean who does she think she is?! Princess Caroline?! Do I have my own castle? No. Oh my God! Wow! I mean, I just...I can�t, I can�t believe this. Y�know, I mean you think you know someone even, even Phoebe who�s always been somewhat of a question mark. Absolutely not. Probably just the first half. Well it�s hard to tell.. Oh God, if she would just stop moving. Oh, it�s a tattoo! That�s weird, Phoebe doesn�t. Wait that�s Ursula! That�s not Phoebe that is Ursula! Hey! Have you guys seen Jill? I can�t find her anywhere. Well, is Ross home? Maybe I�ll just call him to see if he�s actually seen her. What is my sister doing there?! And why are the drapes shut?! Ross! I think she is trying to make something happen with you to get back at me! Ross, I am telling you that she is using you to get back at me! Oh! I knew it! What happened? What?! You kissed! Well, it doesn�t sound like it! I mean, it�s pretty easy not to kiss someone, you just don�t kiss them! See look at us, right now, not kissing! Yeah that�s right you weren�t thinking! Y�know what? Let me give you something to think about! Oh, well thank you for taking your tongue out of my sister�s mouth long enough to tell me that. What?! Wow. I, I don�t even know what to say. Thank you. Yeah, I got that. Bye-bye-e! Hey, you guys! Guess what? Barry and Mindy are getting a divorce! Barry was the guy that I was almost married and Mindy was my best friend. Yeah, but that just means that he was falling asleep on top of her instead of me. Well, apparently she caught him cheating on her with someone else. Isn�t that sad? God, could you imagine if I actually married him?! I mean how different would my life be? Merrill Lynch? Well why didn�t you take the job? Rob Tillman! Oh, I�m sorry. Ross Tillman. Ohh, of course Monica�s brother! Wow! How are you?! Ohh! Me too! Oh, it�s the best! So, umm how�s Monica? Ohh, I would love too. Ohh! Okay! Oh wait, don�t you have to pay for your, Busty Ladies? Oh yeah? Okay. But! Don�t you have to give him his money back? Ohh, so do you! Did you lose weight? Oh yeah. Oh yeah. Right. So now, are...do you, do you still do music? Oh my God! Joey Tribbiani from Days of Our Lives, just walked in here! You are friends with Dr. Drake Remoray? He�s coming over! He�s coming over! Hi! Hi! I love you on that show! I watch you everyday! I mean, when you took out your own kidney to save your ex-wife even though she tried to kill you. Ah! Wow! This is so amazing! What else? What else? Hey! Wow! Umm, y�know, I-I would really love to, but I-I shouldn�t. Isn�t that a line from the show?! That�s a line from the show too! Yeah sure, iced tea would be great. Yes, you did. Oh Mon, listen I have to ask! Okay, Joey Tribbiani invited me back to his apartment, now does he do this with a lot of girls? Ohh! And I�m one of them!! Wow! Oh, I just cannot believe this! I mean, Joey Tribbiani! Yeah. Oh I just wish we could not be married for a little bit! Y�know I just wish we could be like on a break! Oh, it�s so easy for you I mean, you�re not married, you get to have sex with who ever you want! Monica. You�ve, you�ve done it right? Oh my God! You�re a 30 year old virgin! Oh my God!! Do it!! Honey, you�ve waited long enough!! Yes!! I mean sex does not have to be a big deal! There shouldn�t be all this rules and restrictions! Y�know, people should be able to sleep with who ever they want, whenever. Oh what do you know? Virgin! Oh! Thank God! Okay! Here we go! Okay! Hi, Joey! It�s Rachel! Umm, I am free tomorrow night. Yeah, sure, sure I can bring some sandwiches. Ohh, I mean it�s just so realistic! Pat the dog. Oh! Oh! I get it!! Oh, I probably shouldn�t...so I will! Oh! Wow! It�s like it�s raining! Umm, can I use your bathroom? Okay. God y�know, if someone told me a week ago that I would be peeing in Joey Tribbiani�s apartment. Yeah, it sure is! Joey, you�re such an amazing actor! How do you know where Dr. Drake Remoray leaves off and Joey Tribbiani begins? Wow! Tell me something Joey......Whoa! I just fell right off the couch there. Okay. Yeah? Wow! I can�t, I can�t feel my hands. Oh right. Oh God. Oh I can�t believe Joey Tribbiani heard me throw up! Noo! Oh God we did...we didn�t, we didn�t uhh... God I�m just a horrible person. Because I�m married. That�s right, I am a married woman! And I came to a TV star�s apartment to have an affair! Uck! Yeah and I�m a horrible, horrible person. The ring from the cave, yeah. Oh my God, they let you keep that stuff?! No! No-no-no... But I thought that ring stood for Caprice�s undying love for her brother. Yeah! Ohh! My God! Barry!! Oh that�s right! I�m sorry! I-I am early! Finish! Please!! Hi Ross! Is Joey Tribbiani here? Well, if you see him, will you please tell him that I�m looking for him and that this I am not gonna throw up! Me? I�m great! I�m fine! I�m sooo good!! But, you know who�s not great?! Men! You�re a man right Ross?! Sit down! Let me uh, let me ask you something, do wedding vows mean squat to you people?! And why is it that the second we tell you we�re going out of town, bamn there you are in bed with the neighbor�s dog walker?! No seriously! Seriously! What has happened to the sanctity of marriage? Aw what are you?! A detective? Oh. Who are these men? Well, you might want to tell him it sounds like his wife is gay. Good day for married people huh? I�m sorry your wife is gay. I guess women aren�t that great either. Yeah, kicking a guy in the crotch all morning really takes it out of ya! Yeah! What? You wanna see me self-defend myself?! Go over there and pretend you�re a sexual predator! Go on! I dare ya!! Isn�t that a kind of sushi? Ohh! I would kill for a salmon skin roll right now! Ooh! Y�know what? If we made reservations, we could have unagi in about a half-hour. Well, Valentine�s Day was like two weeks ago, so I wouldn�t get her a calendar! Aw, I love that. Okay-okay-okay! So, making things. That sounds like so much fun. Hey, wait a minute! That is my sock! What the hell was that?! All right, so we weren�t prepared! Ahhhhh, salmon skin roll. Yep! Oh, of course! Definitely! Phoebe, you will not find a single game show host, who�s ass I cannot kick. Say it! Say it! I don�t like sitting up here! I�m just gonna over... Oh my God! Why is he jumping on those women! I... Well, I don�t think they need any help. Who wrote it? Okay, wait a minute, wait a minute, why are we so sure that this is a girl? Hey Mon? I�m gonna check my messages. Hello? Uh, Rachel. Great, someone is in our apartment. Call the cops! Oh my God! Oh my God! Thank you! That was the fire department, there was a fire at our place! Well, he didn�t say, but it was a fire. I�m guessing not very good. Come on, we gotta go! My God! Everything�s ruined. My bed. My clothes. Look at my favorite blue sweater. Fine! I�m sorry for your loss! Wow! Oh-okay, look pal, I am not in the mood to be hit on right now! But if you give me your number I will call you some other time. Okay Phoebe calm down, there�s no need to place blame. Okay? I warned her about those candles. Oh my God! It sure didn�t look this way when I lived here. Hey! Hey-hey, now this was no one�s fault Pheebs. Okay? It was an accident. Okay! I have. I did. I did, Monica was so sweet she left a little mint on my pillow. What? Well, don�t look at me! My hair�s straight! Straight! Straight! Straight! Oh. Oh, Joey! Sorry! Oh but look! That�s gonna leave a stain! Really? I�ve never lived like this before. I love it at Joey�s! Thanks! Hi! Uh-huh. No, no-no-no. Phoebe, this was my fault and besides y�know what? I�m fine here. No! No! Phoebe, come on! I don�t want to switch! Please come on! I can throw wet paper towels here! I know. I�m sorry. Hi Joey, how ya doin�? Huh, yeah I guess we are roommates now. I�m not paying for half of that! I�m only staying here until my apartment gets fixed. That refrigerators don�t live as long as people. You�re jokin� right? Thank God you�re pretty. Hey! Do you guys know any cute guys? Anyway, there�s this big charity ball this weekend and Ralph Lauren bought a table, so I kinda have to go... I don�t know, something either trees or disease... Ralph mumbles a lot. Yeah! It�s weird. But the thing is need to find a date. Well, someone that has his own tux, or has the ability to rent a tux. Oo! When�s her birthday?! Well, y�know it�s just been so long since I�ve been to Chuckie Cheese. Hey! You guys umm, I want you to meet Sebastian. We just uh, we just met at the newsstand. We both grabbed for the last Field & Stream. What? I read that. Oh yes! Thank you! What? You found me a guy? Well, y�know what though you guys? I really appreciate that but I think I�m just gonna take Sebastian to the charity. Oh, thank you. What are you guys doing? Oh, but y�know, no, you didn�t give me your phone number. I cannot believe you guys! He was really nice and he left because of you! All right. Yes, I�ll meet �em. Hi! Oh... I don�t know. I know I don�t work late tomorrow night. What? Well-well a little blind sided but y�know good. I... Ohh! Yeah? Oh, hi. Yeah? Oh-okay, but Pheebs? I�m just sort of in the middle of something. Okay, y�know what? Maybe I should go! Yeah, I�m good. No-no! Don�t dance for me! Please? Don�t! What is the matter with you guys? I.... Am I the only one that this is embarrassing for? I�ll tell ya who should be embarrassed! It�s you guys! Come on! This is ridiculous! Thank you very much, but I do not need you to get me a date! I am still talking!! And then you chase away the one guy that I actually liked! I mean, no offense to you guys. Really! I mean congratulations on all the cash, and-and y�know... ....Wow! You do have very soft hair! But I would much rather go to the ball all by myself than go through anymore of this! Good-bye! Now do you use some sort of special conditioner on that hair?! Thank you! Oh that�s all right! Y�know, I ended up having a really good time. Y�know, the charity was a big success and they raised a lot of money and awareness. I wanna say a disease. Huh. All right. Oh-oh Professor Geller. So Mac and C.H.E.E.S.E. Huh... Wait so Joey if you get this, you�re gonna be like the star of your own TV show! I mean you�ll be like the Big Cheese! Or the Big Mac... Hey! You love those! Joey, what are you talking about? You�re a terrific actor. Ugh, how can you even ask that question?! I\\'m sorry, what? Monica, I�m quitting! I just helped an 81 year old woman put on a thong and she didn�t even buy it! I�m telling you I�m quitting! That�s it! I�m talking to my boss right now! Yes I am! Yes I am! Yes I am! Yes I am! Yes I am! Yes I am! Okay bye, call me when you get this message. Of course he will! But Chandler the most important thing is you forgive yourself! Already? That�s pretty bad what you did. I�m sure he will forgive you. Look, we have all been there! Y�know, you fight, you make up, it�s just the way it works. Yeah! You and that girl from that copy place, which yesterday you took full responsibility for!! What?!! You fell asleep?! Y\\'know I can�t believe I even thought about getting back together again! We are so over!! And hey! Just so you know, it�s not that common! It doesn�t happen to every guy! And it is a big deal!! That is the most ridiculous... I did not sell you out. Would you let me talk. OK, well, you wouldn\\'t let me finish and I was jus- Ow. That hurt Fine! Okay, Chandler! And your horoscope says, \"On the fifth a special someone is going to give you a gift.\" Op, but the twelfth brings a lover�s spat. Oh, wait and on the nineteenth a secret crush announces itself. Oh my God! It�s Joey Tribbiani of Mac and C.H.E.E.S.E.!! Be-because the last one was such a big seller? Hey! We do? Okay. Hi, I�m sorry I�m late but I am ready, ready to talk you up! When does Liz�s father get here? Oh! Ross is sooo great! Oh hi! Oh! Well let�s look for them. Oh-oh-hey! Are these them? All right! Oh good. Oh, wait! Sorry, Mr. Paul? Mr. Paul? Paul. Umm, I just wanted you to know that Ross really is a great guy. You just don�t look old enough to have a twenty-year-old daughter. Oh. We? Oh no! Yes! Of course, I know that! I just...I meant y�know are you still a �We� or are you just �You?� Ohh. So you raised her all on your own? Ohh. Ooh! I was just getting him to like you. Ross, Joey is not here. Ross, it�s okay. You can come out. Bye! Well, y�know he lost his keys so he was looking for them... No! Downstairs! And we got to talking y�know, for like two hours, and I really liked him so I invited him up here for a cup of coffee. Ross, what�s the big deal? So I kissed the guy! Wh...You dated my sister! What? Why?! Ross look, look this is good for you. Okay? Let�s face it, so far the guy�s not lovin� ya! But I can turn that around! I got the inside track! We can all go out to dinner, y�know? And I can talk you up! Ross, the guy is a very, very successful lawyer! Oh it�s important! So it seemed that my prom date had stood me up, so Ross selflessly, offered to take me. Wow! I definitely did not see that one backfiring! I�m gonna go to the bathroom. Oh we were, but that was just a , I mean that was just a big drunken mistake. Oh! Whoops! I�m sorry, you were talking about Emily! I mean if you think about it, I mean Ross did learn something from each marriage. Now wait a minute that�s not fair. He was married to me a hell of a lot longer than he was married to Emily, he just didn�t tell me. Maybe I have to pee again. Wait-wait-wait, I just thought of another story about how nice Ross is! Oh! I�ve got a lot of those too! What�s the matter? So what-what is the exhibit. Hi! I mean Ross all that does is remind us that you are interested in fossils. Umm. Yeah. Ooh, the gift shop! Oh, wait yes, but I can�t eat too much. Paul is taking me out to dinner tonight, he said he has a big surprise planned. What?! No! Why?! I didn�t know you could get married here. Oh sorry didn�t mean to interrupt. It�s just such a beautiful space; do you do a lot of weddings here? Monica, you should totally put your name down on the list Yeah hon, it can�t hurt to put your name down! I mean in if two years if you�re not engaged you just don�t use it. I�m gonna do it too! Really? Who would, who would you marry? Oh Pheebs. Oh my God, what a great surprise! This is such a beautiful house. It�s so secluded up here. I feel like we�re the only two people in the world. Oops. Sorry. No-no! Big bear! Big bear outside! I think I-I... would you... actually, would you go check on that? Well, okay. Would-would you get me a Diet Coke? Okay. What?! What are you doing here?! I came with Paul! Get up! Ahh. Thank you! Op, ice. I need ice. Thank you. Ugh! Get out! Get out! Go! Come on! No! Not in there! He�s in there! Go-go! Ohh, thank you. Well, she-she ob-obviously saw the tire tracks that were leading up to the closed garage. Did-did you come up here to work on that term paper or something? Well, why do y�know go in that room and do your homework? That�s your, that�s your dad�s bedroom. That�s your dad�s bedroom! Whoa, that Diet Coke just went straight to my head! Woo! Really? Okay. Okay, I-I�ll go upstairs. If-if you get me something from the car. Surprise me. So you�re gonna be in the car, I will be upstairs, and that�s where everybody�s gonna be! Oh wait-wait-wait!! No! Don�t go in there! Don�t go in there! I need another soda! Oh my God Ross! What in heaven�s name are you doing here? Good. Although y�know, he-he�s a private guy. Y�know, I wish I could get him to open up a little bit, share some feelings. So what are you saying; I should run him under hot water and bang his head against a table? Hi! Okay. Okay. Yeah that�s great. But first, wait, talk to me, talk to me. Tell me about your day. Okay. Hey, what are you thinking? What are you thinking right now? Yeah that�s great Paul, but y�know I wanna know what... Wow, those are really great! I just wanna know what, what is behind this-this strong, silent exterior. Y�know they say that still waters run deep and I wanna swim in yours. No Paul, I don�t know anything about you! Y�know, like-like your childhood! Tell me about your childhood! Okay, well then how about puberty! Come on, that�s always a painful time! Y�know your friends invite you to a slumber party and then they stick your hand in warm water while you�re sleeping so that you pee in your sleeping bag. Well, you�re lucky you never met that bitch Sharon Majesky. Anyway, umm... The rest of you life, y�know? Any regrets? All right Paul, I�m not asking for a lot here. Okay? Just give me something. Anything! Okay. All right. Hm-mmm. That�s-that�s great! See? I already feel like I know you a little better! Thank you. Okay, come on. Now we can go eat. Let�s go. Oh! Yeah. Yeah, I-I-I see the scare. Listen, Paul, I think this is really great that-that y�know, you shared your feelings. It�s really, it�s beautiful, but umm, what do you say we go share some food? What?! Wait! What are you talking about?! You love their Kung Pao Chicken! My God, I�m sorry! I�m sorry! I didn�t mean to do that! I wouldn�t do that! Oh my God! Oh my God!! Like a little girl. I know. I know. I know. This is all my fault; I wanted him to open up. But God, I didn�t know that I was gonna unleash this-this weepy, clingy, moist monster! What�s the other one? Oh that�s right. You�re the talker. Anyway uh, great idea! Umm, I gotta go to the store; I told him that I would buy him some more tissues. No you don�t! Hi. I�m back. Ah that�s great. No actually that�s... That�s great! That�s really great! Y�know, I gotta tell ya writing, I mean writing, gets me uh, gets me kinda hot. A lover? Oh yeah surfer? Okay, hold on real quick, hold on a second let me just uh, get a little more comfortable here. Wait, now wait a second, this isn�t too revealing is it? I don�t care about the little dude! I can�t! I cannot listen to anymore of this! Y�know, the only person who would want to listen to this is a mental health professional! And then it�s only because they get paid $100 an hour! Do you know how much money I could�ve made listening to you? $2,000! And do you know when I figured that out? While you were talking! Oh, I�m sorry. I... I-I don�t mean... I didn�t mean to stifle you. I... This is all just a little overwhelming. I�m so glad, I�m so glad you shared. And I�m glad that you�re done. What do you say we umm... Ugh! No more crying! Please! I just dumped one cry baby, I�ll dump you too! Oh my God! Oh my God! Oh Chandler!! You guys are gonna be so happy! Nice! One and a half carat easy. Yeah? Well, you should know. You�ve bought like a billion of �em. Ohh... Hey! Are any of you guys free tonight? My boss is hosting this charity event for underprivileged kids and the more people I bring, the better I look. So, Monica? Chandler? Oh my God, I�m so sorry. How about you guys? I think so. Hey! Ross, listen can you come to a charity event tonight? See? Now, he could date her. We�re just really..very excited about this charity event that we have to go to. Oh! Thank you! Uh well, uh this is a silent auction. They lay out all the stuff here and then you write down your offer and then the highest bid gets it. Uh, wh-why? Oh, hi! Someone? I brought people. Mr. Thompson, this is Phoebe. Phoebe, this is Mr. Thompson. He�s the head of my department. And I also brought my friend Joey... Well, y�know I-I don�t know where he is. Well, y�know what? Actually, I was about to bid on this lovely trip to Paris. Yeah. Thank you. Okay, twenty dollars. Ugh! So close! What are you doing? Well now it�s an empty bar. What?! What?! What?! Joey! It is an auction! You don�t guess, you buy! Joey! Sit down! What were you thinking?! Wh?! Why would a charity give away a free boat?! Ugh! Phoebe, don�t you think you�ve had enough to drink? How is you drinking helping the kids? Joey! Joey, good one! Hey! You...can�t...leave Joey! You agreed to buy that boat, all right?! That is a contract! And plus if you leave, my boss is gonna kill me! I know. Okay. Okay. Okay. All right. All right, this is what we�re gonna do, we are gonna go to the next highest bidder, and we are just gonna let them buy it, and then you�re just gonna pay the difference. Okay. Not great. Oh great! Why do you care about the guy who won the Paris trip? Oh well, hello. This is your lucky day Mr. Bowmont, the uh gentleman day sailer as just become available again and I believe that you made a bid of $18,000. Okay. Okay. Ohh... Y-Yeah! What-what is your wife�s name? Pam! Oh God okay, just imagine this, \"The Pam.\" Okay, uh-uh imagine this, \"The Mr. Bowmont.\" Okay look, let me paint you a little picture. All right, you are settin� sail up the Hudson! You�ve got the wind in your h......arms! You-you get all that peace and quiet that you�ve always wanted! You get back to nature! You can go fishin�! You can... ooh, you can get one of those little hats and have people call you captain, and then when you�re old, Cappy. What?! What?! But Joey you don�t have $20,000! Hey! Oh my God you�re here, let me see your hand!! Isn�t it incredible?! Monica and Chandler, gettin� married. Ohh... I mean two best friends falling in love, how often does that happen? No! I�m so happy for them! I�m so happy and not at all jealous. I mean I�m probably 98% happy, maybe 2% jealous. And I mean what�s 2%? That�s nothing. Yeah me too. Wh.. no, but y�know who did stop in here looking for ya, Tennille. We�re gonna find love! Yeah, I�m pretty confident about that. That�s what makes it so easy for me to be 80% happy for Monica and Chandler! It would be nice to have a little guarantee though. Well y�know, some people make deals with a friend, like if neither of them are married by the time they�re 40, they marry each other. Exactly! You do? Who? Joey?! Are you serious?! Wh... So... If neither of you are married by the time you�re 40, you�re gonna marry Joey. Oh, seriously? Charming. Yeah. Hey you! Oh thank you. Hey y�know, I�m so sorry to hear about you and Elizabeth. Yeah, love. It�s a tricky business isn�t it? So what do you say we make a pact? If you and I are both single by the time we�re 40, we get married. I mean, we know each other, we like each other, and we�ve-we�ve already slept together so y�know there�ll be no surprises there! You know what I mean? No like, \"What�s that?!\" Exactly. What? Who? Phoebe?! Wait a...but-but she just, she said that Joey was her backup. Ross! I just had a conversation with her, and she said that she and Joey made a deal! Phoebe! You picked Joey and Ross?! You can not have two backups! What?! Phoebe you can�t have both of them! You have to pick one! Oh God, Phoebe! Oh. Okay, y�know what?! I know-I know how to settle this! All right here, this is what we�re gonna do! I�m gonna write Joey on one napkin and I�m gonna right Ross on the other napkin and we are going to pick one! And that person is going to be our backup! Okay? Pick one. You�re welcome. Joey! We should just switch. Ohhh, this is the least jealous I�ve ever been! Oh hell, he�s done this three times! He knows what its about! Yeah Pheebs, honey, she just got engaged a couple of hours ago. I doubt she�s even had time to... Yeah, you�re on your own. Okay. Hey! Oh, thanks. I don�t know, y�know? I feel a little umm... No, y�know what? Nevermind, I�m gonna be fine. Hi! Well thank you, you too. Hey, do you believe this? Do you believe they are actually getting married? Ohh... Yeah, I guess. I-I... I mean, do-do you think we�re ever gonna have that? Oh no-no-no-no-no, no, no! We, you with someone and me with someone. Shake it off. No, absolutely. Y�know like it was umm... Yeah, just give me a minute! Oh well, yes, I can think of one good thing. Well you uh, you were always really good at the uh, at the uh the stuff. Uh-hmm, uh-hmm, yeah, yeah, I really liked your hands. Yeah. Uh-huh. Oh, I know. Hey, y�know what we never did? Oh no, not that. We uh, we never had bonus night! Y�know, bonus night. Y�know, when two people break up but they get back together for just one night. Yeah-yeah, we never had that, What? Oh honey, but it is just about... What?! Yeah. No. And you know what? Nobody even saw! Honey I swear it we just kissed. Okay come on Phoebe, it�s nothing! Monica, come on! No! No-no, it�s really not huge. Joey, you are not! You�re 31. Honey, Monica, this is ridiculous! Look... Hey. What do you think Monica mean when she said she didn�t want to talk, especially with me? I mean, why not especially you and me? We were both out there kissing. Come on! Serious-ser-ser-seriously, what did she mean by that? Especially you! I care! Y�know what, I-I have to go talk to her, would you let me just get changed? Am I going to let you watch me undress? Monica, what did you mean before when you said you didn�t want to talk to anyone, especially me? No-no, seriously-seriously, what was the especially me part about? What?! Monica, what are you talking about? Monica, y�know what? The only reason I did that was because your party was so boring! Oh!! Monica, your Sweet Sixteen was like a million years ago. Ugh, Monica I don�t want to steal your stupid thunder! All right, easy mimey, the moment has passed, it ain�t gonna happen! I swear, I never wanted any part of your night! Monica, why? Why would I ever want to take away from your night? Oh wow. That...y�know what? That is so unfair. Y�know what? Now I want to steal your thunder! Come on Ross, let�s go have sex! We�re not gonna do this, all right? She�s just gonna think that we�re doin� it. Who is it? Okay well Ross! Stop it please! Wait a minute! Yeah, you like that baby? May we help you? All right Monica, do you want to know why I was with Ross tonight?! No you don�t know why! Because! Because I was sad. Look, I am so...so happy for you guys, but you getting married just reminds me of the fact that I�m not. I�m not even close. And I don�t know, maybe I just wanted to make myself feel better. And I know that that�s dumb, but oh my God you were so depressed when Ross got married that you slept with Chandler! Anyway sweetie, I am, I�m so sorry I ruined your night. Yeah. Yeah, so let�s get started on the wedding plans! Yeah, we got a lot to do! We gotta think about the flowers, the caterers, the music... Oh wait Chandler, too many cooks... Okay. Aw. What?! The duck?! What the hell did the damn duck do now?! Joey, there is a perfectly good couch across the hall! What?! Now Joey, what did the duck do?! Hey Joey, what �cha doing? No. Joey, did you eat my face cream? Joey, where did you learn that word? You found my book?! Joey, what-what are you doing going into my bedroom?! Hey-hey, y�know what? I don�t care! I�m not ashamed of my book. There�s nothing with a woman enjoying a little...erotica. It�s just a healthy expression of female sexuality, which by the way, you will never understand. Well what happened at dinner? Wait, but there�s no money! Well this is terrible! You guys are gonna have to get married in like a, rec. center! No, y�know what? It�s gonna be okay. I mean you don�t have to have this rustic Italian feast. Y�know? And-and you don�t need, you don�t need this custom-made, empire waisted, duchess, satin gown; you can wear off the rack. Do you even understand what off the rack means?! Well what?! How-how much is it?! Ohh! Really?! Ohh, you guys are so made for each other. Joey. Uh-huh, I get it, smoke, chimney, chimney sweep, very funny, ha-ha. Well no, I don�t smell anything. Nothing! Y�know, I can not believe you told him, Joey! Uh-huh, yeah I did, because I wore out my first copy when I was with you. Who are you supposed to be? Do you even know what a vicar is? Yeah. Look Joey, it�s enough all right?! You keep making these stupid jokes and this sleazy innuendoes and it�s...I�m not...it�s just not funny anymore! All right! Y�know what? That�s it! You wanna do it?! Let�s do it! That�s right, I wanna do it with you! I�ve been trying to fight it, but you just said all the right things. Yeah! Ohh, I�ve been waitin� so long to get on that body! Yeah that�s right! Come on Joey; sex me up! Oh, come on now, don�t keep me waiting. Get those clothes off! But, I would keep that helmet on because you�re in for a rough ride! Yeah, what? Yeah-yeah, did-didn�t you use to have a pair? They were really round, burgundy, and they made you look kind of umm... Yes! Oh, y�know what you should get �em? One of those little uh, portable CD players. Yeah, and-and-and by someone, she means Joey. Y�know Joey, I could teach you to sail if you want. Yeah! I�ve been sailing my whole life. When I was fifteen my dad bought me my own boat. What?! What?! He was trying to cheer me up! My pony was sick. That is the Coast Guard. Joey, just ignore the boats all right? We�re not finished with the lesson yet. Okay, I�m just gonna go over the basic points just one more time, are you ready? Oh, okay. Is that what you want to do? You wanna go over and give a little shout out to the old, hot chickas? Okay, let�s do that Sailor Joe. Quick question though, what�s this called? Wrong! How do you get the mainsail up? No. What do you do if I say we are coming about? Time�s up, now your dead. Okay, you just go on and make your little jokey-jokes, but if you do not know what you are doing out at sea you will die at sea. Am I getting through to you sailor?! Don�t just say yes! This isn�t a game, Joey you can really get hurt out here. Okay, so do you want to pay attention or do you want to die?! Yeah, and-and you better make sure he tips you this time. I don�t know. Y�know, they didn�t get us anything. Well hello! So, when are we gettin� back out on the water matey? Why not? What? I was just trying to teach you. Excuse me, I wanted you to help, but you couldn�t move your arms because you were wearing three life jackets. Look Joey, I�m sorry if-if you thought that was mean, but I gotta tell ya something. That was not mean. Okay, my father is mean. He used to yell at me all the time on the boat, I mean it was horrible. I was just being a good teacher. Well, does a good student drink seven beers during his first lesson? Yeah, I didn�t want you to get hit by the boom! All right, y�know what? I-I�m sorry. I will try to tone it down and uh stop yelling. I won�t boss you around. And, I�ll be nice. And....Joey! Okay Joey honey, you�re doing really good! All right, now I�m just gonna need you to step to the port side. Remember? Remember how we talked about the port side? Right? It�s left sweetie, but that�s okay sweetie, that�s a tough one. Okay, go to the left. The left! Just sit over there!! No! No-no, no-no-no, very quiet, said with love, no yelling. Okay Joey, we�re luffing a little bit, so could you tighten up the cunningham? Joey, come on! We just went over this! No! All right?! I did not see the bird! I did not see the fish! I did not see the piece of Styrofoam that was shaped like Mike Tyson! I did not, because I was trying to teach you how to sail a boat! Which obviously is an impossible thing to do! What do you mean you quit?! You can�t quit! Because you�re not finished yet and I won�t have it! Greens do not quit! Oh my God, wait did I...I just said Greens don�t quit didn�t I? Did I just say Greens don�t quit?! No! No! No! I�m not yelling at you, I�m just yelling near you. Oh God Joey, ohh I�m my father. Oh my God, this is horrible! I�ve been trying so hard not to be my mother I did not see this comin�. Oh, Joey, I�m sorry. I�m so sorry. I just wanted you to learn. Really? Awww... Left. Well Joey, I hate to admit it, your way of sailing is a lot more fun. Ohh we�re not sailing. All right. Hey-hey-hey!! Sandwiches! Here you go. Oh wow! Ohh, sorry. Ohh whoops. That�s nice. Well that was umm...Okay. Ohh no you don�t! You got lighting last time, lighting is mine! What are you gonna do Pheebs? Oh! Hi you guys, oh my God! You�ll never gonna believe happened to me today! I am sitting in my office and... Joey! Kinda in the middle of a story here! Okay, so anyway I�m sittin� in my office and guess who walks in. Joey! Yeah! Guess who walks into my office is the end of my story. It was Ralph Lauren! Ralph Lauren walked into my office! It�s the same story. Anyway, Ralph just came in to tell me that he�s so happy with my work that he wants me to be the new merchandising manager for polo retail. Yeah! I got...I get a big pay raise! I get to hire my own assistant! And you were at this job for four years? Okay, well this is all very impressive Hilda, um I just have one last question for you. Uh, how did I do? Was this okay? I�ve never interviewed anyone before. I�ve actually never had anyone work for me before. Although when I was a kid, we did have a maid, but this is-this isn�t the same thing. No. Yeah, and I know that. All right, well thank you so much for coming in it was nice to meet you. All right. I�m a total pro! Wow! H-umm! Hi! Yes, uh I�m sorry the models are actually down the hall. Really?! Okay well then, all right, well just have a seat there. Umm, so what�s...what is...what�s your name? Uh-huh, go on. That�s your whole name, okay of course it is! Okay, well let�s-let�s just have a look-see here. Oh come on, what are you talking about? You�ve got three years painting houses. Two whole summers at T.G.I. Friday�s, come on! Okay, hold on just a second. I�m sorry, it�s for human resources, everybody has to do it. Could you just stand up please? Chandler, you have an assistant right? No, I-I just don�t know how you decide who to hire. I mean I�ve got it narrowed down to two people. One of them has great references and a lot of experience and then there�s this guy... I love him. He�s so pretty I wanna cry! I don�t know what to do. Tell me what to do. Uh-huh. No, I hear what you�re saying and-and-and that makes a lot of sense but can I just say one more thing? Look how pretty! Okay you�re right. I�ll hire Hilda tomorrow. Dumb old perfect for the job Hilda! Hi! Tag. What are you doing here? Kinda. Oh-ohh, thank you. Well... But I hired you! Yeah! You-you got the job! You�re my new assistant! Yeah! Me either. Umm, all right, first thing I need you to do is go downstairs and find a women named Hilda and tell her to go home. Hi! Ohh, my new assistant is working out, yes. Oh, my-my new assistant has very happy that I hired my new assistant. I�m sorry Joey. Well wait a minute, what happened to Days of Our Lives? Joey, why would you do that? Tag? Hi, who was that? Really? Yeah, this is Tag. Tag, this is Phoebe. Phoebe, can I see you for a second? Okay. We�ll be right back. All right I know, I know how it looks Pheebs, but I�m telling you... Yes, I know that. I know that. And I know that hiring him was probably not the smartest thing that I�ve ever done. But I�m telling you, from this moment on I swear this is strictly professional. Yes? Hi! Gay? Yeah. Hi! Well yeah, sure, what�s up? Oh really?! Oh, did you not want people to know that? Why�s that? Ohh, you can say. Come on, I don�t want you to feel like you can�t tell me things. �Kay. Yeah. Yeah, she�s gay. Hey look-look, Phoebe�s talking to uh, Cute Coffeehouse Guy. Hey, I thought that guy was married. Phoebe, if this guy�s going through a divorce, is it such a good idea to start going out with him? Oh, I gotta get back to work. Yeah but, my assistant Tag does sit-ups in the office during lunch. Ohh! I could just spread him on a cracker. Oh no, I know that. I know that. Although, we made a joke that we spend so much time together he should call me his work wife. I am not gonna get fired, because I�m not gonna act on it. Why? Is he? He is! Isn�t he? He�s dating that slut in marketing! Oh, no sit-ups today Tag? Oh, well drop and give me ten more! Uh, I-I had a drink with lunch. Did those cost reports come in? Oh, great could you make me four copies of those? Ahh, hi! Hi! Melissa, what�s up? I�m just uh, about to umm, go out to the store to get some stuff to put in my backpack. Y�know, like dried fruit and granola and stuff. What�s up? No. Why? Really?! Got a little crush on Tag there do ya? Okay, whoa-whoa easy there Melissa! This ain�t a locker room, okay? But, y�know I remember him saying that-that he had plans tonight. Oh yeah. All right, back to work. Yeah Melissa, I don�t want to be known as the uh, office bitch, but I will call your supervisor. Hi Joey! What are you doing here? Yeah, sure. Umm...here. Yeah, I don�t think so Joe. Hey, listen umm, what-what are you doing tonight? How would you feel about taking out my assistant Tag? I�ll pay. I�m not asking you to go on a date with him! Joey, just-just he-he�s new in town and I know he doesn�t have any guy friends. Just take him to like a ball game or something. I�ll really appreciate it. Yeah? Yeah! Hi Tag! Hey, so did you have fun with uh, with Joey last night? Ohh that�s nice. Wo-women? You mean like old women? Oh. That�s great! Wow man, so Joey must�ve really taught you some stuff huh? Yeah? Hi! So uh, heard you had some fun with Tag last night. Yeah and you had fun teaching him how to be all Joey. Y�know, all the women. All right, would-would you mind just not going out with him again? Okay, just the idea of you and he and all these women, it�s just...And I know he�s my assistant and I can�t date him...but it just bothers me, all right?! All right, will you, will you at least tell him how hollow and unsatisfying this, dating tons of women thing is! I just don�t want him to meet anybody until I am over my crush. And I will get over it. It�s-it�s not like I love him, it�s just physical! But...I mean I get crushes like this all the time! I mean hell, I had a crush on you when I first met ya! Yeah. Sure. So, will you talk to him? Oh, come on! I�ll give you ten free Ralph Lauren shirts. Hi! Thanks, hey so uh what�d you do last night? Oh yeah? Another night of birdogging the chickas? Wow! I did not see that coming. Oh no, yes I do! I do! I mean, come on go on, you were, you were saying I am happier when uh, y�know? Really? Sp-spoil? Uh-huh. Well, I-I�m startin� too. Yes! Hell yes! Okay. I�d love to! Hello?! Oh, yeah! This is gonna be a while. Excuse me. Yeah! Oh my God! This is it! I really hope it�s you! Me too! Okay, bla-bla-bla-bla!! Who is it?! Hypothetically! Uh-hmm. Yeah that�s actually a pretty good idea. Well of course we will help you decide! We will do anything we can to help you! Now, I would like to make a toast, to the future Mrs. Chandler Bing , my best friend, and truly one of the nicest people that... Fine! Yeah? Really?! Oh my God Phoebe! I mean I�m just....Wait a minute. If I�m your maid of honor that means you are Monica�s. Ohh! No way Phoebe! I want to be Monica�s! Why does it matter so much to you?! What-what if I marry Ross....Or Joey? Yeah but Phoebe... Okay. Okay. It�s...since you�ve never done it before you can be Monica�s made of honor. I�m gonna marry someone good y�know. Better than Chandler. Phoebe is gonna be Monica�s maid of honor! You have been maid of honor before?!! All right that�s it! I am maid of honor! How come you are?! Oh, come on! This is crazy! Can�t we just flip a coin?! Okay. Okay fine, y�know what? We will let Ross and Joey decide. Hiiiii, Ross! Sweetie. Okay, uh... ...it�s gonna be okay! Look Monica, getting cold feet is very common. Y�know, it�s-it�s just because of all the anticipation and you just have to remember that you love Chandler. And also, I ran out on a wedding. You don�t get to keep the gifts. Thanks! Thank you judges. Oh! Wait a minute! She just made a scene in the middle of the ceremony! Ohh, wait a minute, we haven�t pre... Okay! Okay! Umm, Webster�s Dictionary defines marriage as... Okay!! Forget that! That sucks!! Okay, never mind! Forget it! Umm, umm, okay, uh... I met, I-I met, I met Monica when we were just a couple of six year olds and I became friends with Chandler when he was 25, although he seemed like a six year old. Thank you. Thank you very much. Umm, I�ve known them separately and I�ve known them together and-and to know them as a couple is to know that you are truly in the presence of love. So I would like to raise my glass to Monica and Chandler and the beautiful adventure they are about to embark upon together. I can think of no two people better prepared for the journey. Aw, thanks! What?! Well then I demand a recount! No! Y�know what? No! No! You thing was so stupid anyway, this was ridiculous. We�re gonna flip a coin! All right?! Heads! Well y�know what? I hope Monica forgives you after you throw her, her vegetarian, voodoo, goddess circley shower! Hi Pheebs. Hi! I just want to apologize. I�m really sorry I was a baby. Yeah. Yeah, and y�know you-you deserve to win. And-and y�know I was thinking about it, if-if you�re Monica�s maid of honor that means I get to be yours. Yeah! Oh, umm when-when Monica and Chandler got engaged I started putting some stuff together, y�know just in case... Here is a book of poetry that I know Monica loves. And-and ohh God this is funny, look, this is a picture of one Halloween where she dressed up as a bride. And look, she made me carry her train, which was weird because I was Wonder Woman. Oh and here�s a little purse that I found. Y�know I just thought that maybe they could hold the rings in there. And umm, vintage handkerchiefs y�know �cause, people cry at weddings. I�m just gonna grab a couple of these. Oh, I forgot this was in here. Umm, this was the uh garter that I was saving for my wedding and I wanted it to be Monica�s something borrowed and it�s blue. Yeah... You do? Why? But Pheebs, y�know you earned it. No, I was ten. I just developed early. Hey! Yeah okay, you laugh now, but she�s gonna be yours. Hi! Oh, how was your date last night? Oh good. Ahhh! My God, sorry! What-what?! You�re gonna leave this person with me?! Why?! What?! Are you kidding?! Y�know what? That�s a lot to remember, can�t I just tell her you�re a pig? Well forget it, I�m not telling that girl anything. That is not my responsibility. Hi. Yeah, Joey kinda disabled it when I moved in. Hi. Would you like some pancakes? Yeah, we ended up spending the day together and had such a great time! I know! Oh and I�ll call ya too! Bye! Oh Joey, I�m sorry I just couldn�t tell her all those things you wanted me to tell her. And y�know we got to talking and I... Cupid. Look Joey, come on she�s so perfect for you! I mean she�s sweet, she-she likes baseball, and she-she had two beers at lunch. Yeah, maybe if you gave this girl a chance it would go somewhere. Fine. Phoebe! I�m sorry? Oh my God! Did you get to see anything good? Yeah, there was. It was...there the corner of the library where-where all these dusty books that nobody ever read...Yes, there was. Well now what�s the rush? Well look who�s here! Hi! Well, we were just about to take off and see a movie. Oh no! Oh Phoebe, we forgot that party we have to go to. Wait a minute! Why don�t you guys do something?! How did it go with Erin? Oh my God! Listen to you talkin� about having kids. Oh my Joey. Oh, please don�t get married before I do. So how�s it goin� with Joey? Okay? Wait okay, tell-tell me that you like him, please? I mean tell me that you like him. But you said that you liked him! I mean what happened?! Did ya just change your mind?! Ugh, tramp! Yeah, see ya. Wow. Well, I guess it was Cupid who brought her here. Hi! Jo-Joey, look honey we-we need to talk okay? Umm, I kinda got the feeling from her today that uh, she�s not lookin� for a serious relationship. Well, she told me. She said she�s kinda a loner. Joey!!! Yeah and honey I promise next time that I will just say good-bye and tell �em you�re not looking for a relationship. Well that too. Joey? Do you want some pancakes? All right, I got 48. How come we have one extra place setting? Oh, right. Sorry. But Tag\\'s not coming; his girlfriend came into town, so he\\'s spending Thanksgiving with her. Well, I was going to, but then I figured, you know... you\\'re food is so delicious and perfect, you can never have too many of those pumpkin things. Seriously, it\\'s moving! Hi Tag! What are you doing here? Well, sure! Come in! Well, what-what happened to your girlfriend? Oh, I\\'m sorry. Wait a minute. Do you not like all dogs? I mean, not even puppies? Oh, wait before you guys go, can I just ask you a question? When a guy breaks up with his girlfriend, what is an appropriate amount of time to wait before you make a move? Interesting. Huh. A moo-point? Have I been living with him for too long, or did that all just make sense? You\\'re right, I\\'m sorry. Thank you. Okay, that\\'s what I\\'m gonna do. Hey! How are you holding up? Yeah? I\\'m sorry about your girlfriend. So were you guys together a long time? Now that she broke up with you? Yeah. Hmmmm. No...Yeah, all the time, constantly. It\\'s terrifying. But you know that I figure it...it has to work out. Because, uh...it has to. Yeah, I know, I do. I really do. Well, what is a boss for? Hug it out! Uh, yeah, well, see, he... Joey knows, that I\\'m-I\\'m very insecure about my back and, and...you\\'re hugging me, so obviously you are not repulsed by it, yeah! No? All right, here\\'s the truth um, Joey said what he said, because um, I\\'m attracted to you. Yeah, I admit it. I have a crush on you, and uh, and, and I know that\\'s crazy because we work together, and-and nothing could ever happen, and the last thing I want to do is-is to freak you out or make you feel uncomfortable. Which is why it would be really great if you said something right about now. What? Okay, that\\'s gonna take them a minute. Do you have anything else you wanna get off your chest? Wait, we still have time to talk and they�re-they\\'re not even in the car yet! Oh look, there they go, okay. Yeah, ohh! Why, damnit, why did I open my mouth? I have a crush on you; I am attracted to you. Gee, I-I know that I freaked him out Hi! Hi! Oh, hi! How are you doing? Oh. Look, um, I think we should talk about what happened on the terrace. Ah, I-I never should have said what I said. It...y�know what? It just doesn\\'t matter how I feel. I mean we work together, so nothing could really ever happen between us, and what I would love is just to go to work on Monday, and-and never talk about this again, okay? Big day Monday lots to do. So, we\\'re okay? Oh, god, I know it, that I freaked you out. Really? Okay, well, that\\'s one less thing we have to do on Monday. Gooood morning!! Well, why shouldn�t I be? I have great friends! I have a wonderful job! Come on, it�s not a big deal! We stayed up all night coming up with a plan so that us dating will not be a problem. We... We are not... going to let it...be a problem. Well y�know, we did other stuff too. Oh Monica come on, y�know I don�t sleep with guys on the first date! Anymore!! Hi. Tag, I have a conference call today is that correct? Okay, thank you. That�ll be all. Wait! Wait! Did you see that? That mail guy had no idea there was something going on between us. Okay, you hard worker! I�ll remember to put that in your evaluation. Well, you�ve been here for two months now and your boss is required to hand in a performance evaluation. But y�know, there is one thing that I have yet to evaluate. No, I�ve just always wanted to do that. Can you help me clean this up? So did you read your evaluation yet? Okay please, you�re kidding right?! I wrote that one as a joke for you! I�m thinkin� no. Umm, I said I thought you were a good kisser, and uh, and that I like your tiney-tiny touchie. Well, it gets worse. When asked if you take initiative I wrote, \"Yes, he was able to unhook my bra with minimal supervision,\" and under Problems with Performance I wrote, \"Dear God, I hope not,\" and then uh, then I drew a little smiley face, and then a small pornographic sketch. Maybe it�s not as bad as I think. Y�know, maybe they didn�t take it the way I meant it. Ugh, I just gotta get the thing back! Yeah? Oh my God! Joey! Ugh! Okay, I think we can get the evaluation back before they see it, but we�re gonna have to get into Mr. Zelner�s office. Now, he doesn�t get in until 10, so he�s no problem, but his assistant, Betty, she comes in early to eat her breakfast at her desk. Yeah, well Betty�s kinda sad. Which is why I believe I can lure her away with these chocolates. Now, while I distract her, you get in the office. Let�s roll! Yeah, sure Mr. Zelner, for you anything... minute. Okay. Fine. Abort the plan, abort the plan. Okay. Uh, well can we, can we get you anything Mr. Zelner? Maybe some chocolates? Oh my God. Can you imagine if there was?! I mean, what would happen exactly. Well... Oh no-no-no... You�re lookin� at it upside down...y�know what? It doesn�t matter. Whoa! I can�t believe you did that. That was really sweet. No, you could�ve lost your job. Thank you! You�re great! What? I... It just...it took me so long to get that desk organized. There it is. Oh my god!! You may need to use this year to teach Ben about Phoebe. Did you know he was in there? Hey! Drums? Ha! Joey, y�know that you could just not throw the sticks up in the air. What are you talking about? I love them! Yeah, I had a tarantula when I was a kid. But it-it died, because my cat ate it. And then, then my cat died. But Joey, isn\\'t this cool? Oh, isn\\'t that adorable? Joey is afraid of the tarantula. What? Wait-wait a minute, what? Phoebe, what\\'s the matter? And that makes you angry because... Where did you get that? Phoebe? Did you get all this stuff for Joey to try and drive me out of the apartment? Honey, if you wanted to do that, you might as well just gotten him a fish, you know how fish freaked me out! It wouldn\\'t have mattered anyway, Phoebe, you and I are, are gonna live together, we\\'re roommates; that\\'s the deal. Oh, it\\'s so much more fun with you. We did! Oh, I would love to! Good, good, good, good, good. Um... Done! Oh wow! Look at this place! Oh my God! Okay, remember uh, remember how you told me that your grandmother put up that wall to make that into two bedrooms? And remember how you always said you were afraid the landlord would find out and then tear it down? Do you really not know where I�m going with this? It left! It�s one huge room! See? You can�t, because of the new skylight! So what should we do? Should we start looking for a new place? Oh yeah? Startin� to feel her again there are we? Pheebs is your grandmother maybe saying that you should live here alone? Phoebe, it�s okay. I like living with Joey. Oh please, I hate packing, it�s closer to work, and we do have fun. Although, I�m really gonna miss living with you. I know. Oh-oh, wait did you hear that-hear that? Listen, I�m gettin� something from your grandmother, she said that since you get to keep the one bedroom apartment you should give Rachel the purple chair? Hey! Wow! It looks like the Easter Bunny�s funeral in here. Oh. I got it! Its back in cage! Joey, would you just come out here and stop being such a baby! Hi. Oh, y’know I\\'m not that much of a sweet tooth. I......Wow. My God, so \\t creamy. Oh my God, this is the best cheesecake I have ever had. \\t Where did you get this? Chandler, this is not addressed to you. This is addressed to Mrs. \\t Braverman downstairs. Thief. Why, why not? Chandler, you stole this cheesecake. That is wrong. Oh, I’m sorry what? Umm, I think he’s still out. What’s wrong? \"Pheebs, can’t make it, got a date. Talk to \\t you later. Big Daddy.\" Big Daddy? Hi! So just bring it back downstairs, what’s the problem? Are you serious?! Chandler, we ate an entire cheesecake two days \\t ago and you want more? It was cheesecake. It was fine. It had a buttery, crumbly, graham \\t cracker crust, with a very rich yet light, cream cheese filling... \\t Wow! My whole mouth just filled with saliva! Yeah and we’ll drop it off downstairs so that we’re not tempted. Momma’s Little Bakery, Chicago, Illinois. What? Wait a minute, I didn’t pay, I thought you paid! Its still there! She could be out of town. Maybe she’ll be gone for months. No that could kill her. No so we’re protecting her. But we should move quick. Because I think I just heard her moving around in there. Oh my God! That is so good! Hey! Oh it’s umm, it’s tofu cake. Do you want some? Mm-mmm. Oh, what are you going to do?! Are you gonna go run tell Monica?! \\t Are you gonna tell Joey?! No! Because then you will have to tell \\t them what we did! We are desert stealers! We are living outside \\t the law! What?! What?! Wait a minute! Oh no-no-no-no-no, no you don’t! You think I trust you with it?! No! We’re gonna split it! You \\t take half and I take half! What? Oh, well then y’know what? I think Monica would be very \\t interested to know that you called her cheesecake dry and mealy. Okay! All right, pick a half. Oh for God sake just pick a piece! That’s also the smaller piece. \\t Okay, there you go. Enjoy your half my friend, but that is it. \\t No sharing. No switching, and don’t come crying to me if you eat \\t your piece to fast. Oh!!!! Okay, you gotta give me some of your piece. Oh! Yay! Look! There’s a piece that doesn’t have floor on it! Hey, come on now! No. No, you can�t. Oh I don�t-I don�t know. Yeah actually, I think we�re gonna take off too. We rented a movie. Uh Pheebs, we just actually kinda wanted to be alone. Oh. You wanna go in the bedroom? It�s a little more comfortable. Okay. Oh wait! Umm, did you send those contracts to Milan? No seriously, y�know the contracts I gave you, did you overnight them? Okay please tell me that this is just one of your jokes that you do that I don�t get. Y�know, like the thing when you put the phone in your pants? Tag! I�m serious! This isn�t funny! Those contracts absolutely had to go out today! Yes I did! And I put a little Post-It on it that said, \"Must go out today,\" and underlined today three times and, and then I put a little heart in the corner because I didn�t want to seem to bossy. Y�know what Tag, if we went down to the office you would see those contracts sitting on your desk. Or maybe you would see me looking embarrassed because you are talking on the phone with your crotch! No! Come on its late, we�re not gonna go down to the office. Okay get your coat! Oh! When did you unhook this? Nice work! Oh how can you possibly know? Look at this mess, Tag! I mean, this is what I�m talking about! You have to be organized! You�ve got newspapers! You�ve got magazines! You got...Ohh! And who is this chippy? A little young for you Tag, but whatever. Okay, very cute braces. Anyway y�know what, the point is Tag, start looking because you are going to find those contracts on your desk. In the afternoon. Mr. Zelner came into my office after lunch. He put them on my desk, and then I put a Post-It on it that said, \"Must go out today.\" So you just keep looking in there! All right? Puzzler. A bit of a puzzle. Why don�t you um, check the copy room, maybe you left the contracts in there? I don�t know Tag! How can your genitals make phone calls? Okay? It�s not a perfect world! Just go please. Thank you. Hello? I still don�t get it. Hi! I got you some coffee. To, uh... ...fair enough. So! Do you got anything for me? Oh my God! Did you check your entire desk! Did you check all the drawers! Well yeah, I wish that you would. Well, no it�s not in there! How about that drawer? Y�know, I don�t-I don�t know. Let me, let me check. Can I see you in my office for a minute? You put these on my desk! Oh really? So you�re saying they just slid out of your bottom drawer, crawled across the floor, then jumped on to my desk?! I am so hot for you right now. Hey. Well, y�know I was thinking of moving the couch over here. So that there will be a decent place for me to sit. And your lap does not count! Okay? Come on help me move this. No? I�m sorry, Rosita? As in... Joey, it�s just a chair! What�s the big deal? Stevie the TV? No! Oh what does he know! Come on Rosita, us chichas got to stick together! You bitch! Joey, Joey I am so sorry. Okay, come on...Joey, I�ll buy you a new one! All right? We�ll go down to the store right now and we�ll-we�ll get you a new chair. But don�t you think Rosita would�ve wanted you to move on? I mean y�know, she did always put....your comfort first. Okay? You ready? You will like it! You don�t even know! Well look, if you don�t like this... Come on Joey, I just bought you a new chair! The most expensive one in the store! Hey, y�know what I was thinking? We could name her Francette. Joey, the new chair will be here in an hour. Maybe we should actually move Rosita out of here. Y�know, start the heeling process? That�s weird. It�s not a miracle Joey! I�m sure there�s some explanation. Joey, I really don�t.... Well no. No, y�know what? Maybe somebody came in here and fixed it! Or something! That�s right Joey, the chair angel came in and heeled your chair. I am so psyched I kept this chair for myself! Hey, how�s...how�s the uh, miracle chair? Yeah? Wow! Y�know, that this thing has speakers in the headrest! Yeah! You can hook it up to your TV and you get radio! Hey Chandler! How would you like to sit in a chair that fully reclines, has a rolling massage, and speakers in the head rest? Well what if I told you, you can do it in my apartment? I just purchased the La-Z-Boy E-cliner 3000. Well, it�s a long story, but umm I broke Joey�s chair... Yeah. Ohhhhh. That�s how it got fixed! Noo! Angels. What? Wh-hey! Yeah, he thought he broke your chair so he switched the chairs! No Joe, no miracle. Uh-huh! Nice try, but you don�t get that chair anymore! All right? That is my chair now! You can sit on my lap! No I take that back! No-no-no! This chair�s not going anywhere. The logic is, that there are two of us and we are both strong enough to break a chair in half! We�re the Cobras! Ahhhh!. Uh-huh. Hey! Oh yeah, Joey broke it. Had to get rid of it. Good ones? Well, can I keep the presents and still be 29? Y�know, I�m still 29 in Guam. Late thirties? Oh come on you guys! Is it just me? Am I overreacting to this? Look, y�know I know my life�s going pretty well, but I look around and I just see so many people who�ve accomplished so many other goals by the time they�re thirty. There you go! Thirty. Ugh, I mean thirty! Monica, do you remember mean old Mrs. Kreeger in the fifth grade? She was thirty! Nothing. I don�t want to do anything. Really! God Ross, what were you thinking? I know it�s really shallow, but a part of me wants him again. Y�know what? I am going to do something today. I�m not just gonna sit around like some old lady. I�m gonna get something pierced. Like my uh, like my nose or my tongue or something. So what?! Y�know what? The way I see it��Ow! Son of a bitch!! Get out, get out of my apartment. Hey! Everybody hide! Hide! I saw her! She�s coming! What�s-what�s going on? Phil�s really pissed! Okay, but taking care of a drunk, naked woman seems like a job for Joey. Ahh! A scooter! No! No-no, I love it. Thank you. Okay. Okay. Happy birthday Grandma! It�s better to be over the hill then buried under it. All our love Monica and Chandler. That�s funny, yeah! No, I know! I get it! It�s funny! No I know, because to be a grandmother you have to be married and have children and I don�t have any of those things. That�s why it�s so funny. Well, I feel fine, but I think you�re bumming out the rest of the kids. Okay! Y�know what? I realized it was stupid to get upset about not having a husband and kids. All I really needed was a plan. See I wanna have three kids... As I was saying.... I should probably have the first of the three kids by the time I�m 35 which gives me five years. I love this plan! I wanna marry this plan! So, if I wanna have my kid when I�m 35, I don�t have to get pregnant until I�m 34. Which gives Prada four years to start making maternity clothes! Oh wait, but I do want to be married for a year before I get pregnant. No, so I don�t have to get married until I�m 33! That�s three years, that�s three whole years...Oh, wait a minute though. I�ll need a year and a half to plan the wedding, and I�d like to know the guy for a year, year and a half before we get engaged� Which means I need to meet the guy by the time I�m thirty. No! Ross, no! It is not fine! Eh-eh-according to my plan I should already be with the guy I wanna marry! I�m telling you it�s like watching Bambi learn how to walk. Hey. Oh, poor Pheebs. Ross, I really don�t think� Hey Joey, can I� Actually, I just wanna talk to Tag. Whatever! Okay, I�m not your mother. Not in the street!! Hi. Hey. Yeah, I�m doing okay. I�m um�let�s talk. Umm� Ohh Tag, umm�you�re such a great guy and we have sooo much fun together but I don�t-I don�t� Well said. And a uh good example of the fun I was referring to uhh, but I just think I�m past the point where I think I can y�know, just have fun. Yeah, it is! But you�re just a kid! I mean you�re 25! Oh God! Y�know what I wish? I wish you were six years older. Well actually, if I�m wishin� for stuff, I actually wish I was six years younger. Yeah, I�m sorry. Oh, if I only want two kids, can I keep him for another year? Ohh... Yeah, it�s just y�know... Oh! I would love to read a poem. It�ll be a short one. Ohhh... Wait, what do you mean you�re getting a new brain? She is so good at throwing drinks in people�s faces, I mean I don�t think I�ve ever seen her finish a beverage. Oh! Cecilia Monroe man, what a great actress. Well, I\\'d have to say gay. Well mainly because he\\'s kissing that other guy. Oh yeah he\\'s too cute to be straight. All right, straight, and not subtle. Oh, well, we can hand it to Gunther and he\\'ll put it in lost and found. What if, um, if he calls his own cell phone to find out who found it and I answer and we start talking and we fall in love. I mean wouldn\\'t that be a great story? Kind of like a fairy tale for the digital age. What? Wait! Why...why do you get the story? Phoebe, you had a date three days ago. Okay. Okay, see? I get the phone. Yeah! And until now, I didn�t think I�d love again. Oh hey-hey wait! How do we fairly decide who gets the phone? Well umm, maybe we could uhh... Ah-ha! Too slow!! No Phoebe! You cannot get the phone that way; that�s not fair! Okay look, I have an idea. Why don�t we, why don�t we see what kind of number he has on his speed dial, and then from that we can tell who has more in common with him. And then whoever does gets the phone. I don�t think so. All right, first name on the speed dial is mom. Okay no way, you cannot use that to get the cute guy and the last blueberry muffin. Yes okay. Well now see this isn�t telling us anything. Joe. Carlos. Peter. Ooh! Peter Luger! That�s a steak house! Oh, I win! He�s got Barney�s on his speed dial. His new girlfriend! Hi Pheebs! How are ya? Umm Pheebs, remember when we were in the coffee house we decided that I was going to keep the uh, the cute guy�s cell phone? And remember how I said I was going to keep it in my purse so that if it rang I could just pick it up? And do you remember going into my purse and stealing the phone?! You stole the phone! No? So you�re saying that if I called it, it wouldn�t ring? Phoebe! Oh is it?! Uhh, hello? Yes hi, is Rachel there? Yes she is, just one moment please. It�s for me! Oh my God! I bet that�s him. My digital fairy tale is about to begin. I wonder how I should be? Should I be uh Hello? Or should I be Hi! It�s Rach... Would you stop doing that?! Phoebe! You can�t do th.... You do know that I will be here when he comes over. You just said it! Oh Phoebe! Ohh! Hey! Hey! Well why shouldn�t I?! Well, then I get to give him the cell phone. You�re not the man who left the cell phone. Is-is he coming? We�ll be right back sir. I don�t know! I know! What?! No-no they do but, you just have to wait. All right. All right Phoebe I will let you have him, but you owe me; you owe me big! Ohh... Hi. Oh my God! Oh my God!! Ohh, Jessica Lockhart!! In my apartment!! I am such a huge fan! I am such a huge fan! MONICA!!!! MONICA!!!! God. You seem really, really nice. I mean n-not-not fake at all like most famous people. Okay. You are so beautiful. I can imagine you in a short plaid skirt and knee socks. No! Hi! Hi Ben! Oh, yeah go ahead. No. No. Ben, it\\'s Rachel! But whatever. Awww, just like his daddy. What-what about Monica? So it would just be me alone? Huh umm� Well that�y�know it�s just uh, I�ve never done that before. Me and him alone. Okay. Okay. Okay. Uh, what do I, what do I do with him? Okay. Yeah I think so. Bye. Ahhh� So this is fun, huh? Okay. Uh, want something-want something to drink? Uh great! How do you feel about Diet Coke? Okay. Well that�s pretty much all that we have�Oh! Oh! Have you ever had a virgin margarita? Water it is. Ben y�know when uh, when you were a baby, you and I used to hang out all the time. �Cause I was, I was your daddy�s girlfriend. No, I�m not. Hey! We were not on a�Okay. That�s fine! Fine. Y�know what Ben? One day when you are a lot older I am going to tell you that entire story over a pitcher of real margaritas, okay? Fifty-two minutes. So no-no brothers and sisters, huh? That must be nice. You don�t have to share stuff. Oh, you�re one of those. But y�know what? I have two sisters of my own and we just-just tortured each other. Well y�know, we would umm, repeat everything the other said, or uh, we�d jump out of closets to scare each other, or switch the sugar for the salt so they�d put salt on their cereal. Yeah? You like that one? I�m funny? Oh thank God! Well hey, I�ve got a ton of these! Umm, oh here�Do you want a good one? Here�s a good one. Umm, you uh, you take a quarter, take a quarter and, and you blacken the edge. Right? And then you say to person, I bet you can�t roll this quarter from your forehead to your chin without it leaving your face. And then when they do it, they�re left with a big black pencil line right down the center of their face. Yeah, I-I-I-I�m funny Ben, but I�m not stupid. Okay? Coming. Uh-oh. Oh yeah? Did he pull the old� Oh that. Oh, come on! Saran Wrap on the toilet seat, you don�t think that�s just a little funny?! Yes. Hi! Well y�know I was just in the neighborhood and I passed by your building and I thought to myself, \"What�s up with Carol and sweet, little Ben?\" Okay. I�d love that. I would loooove� So uh, so where is sweet little Ben? I would love to have a little... I found him! Very funny, come here! That is exactly why I�ve come here to talk to you okay? Yes oh��Do I want sugar in my coffee? No, just some milk would be good Carol. Thanks. Okay, do you remember all that stuff I taught you yesterday? Don�t do that. Seriously, your dad doesn�t like pranks. Oh damnit! No! Don�t say that! Don�t say that! No don�t! Go back to repeating! Oh crap! So now what have we agreed? And-and what else? Very good. I�m just visiting my good friend Carol. Yeah! Carol�Lesbian? What line? All right, I�m sorry. I�m sorry I didn�t tell you but you were so mad already! Okay, maybe they are not funny to you� Or Carol! But they�re funny to kids and who is it hurting?! That was you?! We heard about you in Junior High! Did you really just shake your fist in the air and shout, \"I will be revenged?!\" Fine. Fine, but I�ll have you know that once I taught him that stuff he called me Fun Aunt Rachel. And I loved being Fun Aunt Rachel but I�ll go back to being Boring and Uncomfortable Aunt Rachel if that�s what you want! Look he doesn�t have any brothers or sisters, somebody�s gonna have to teach him this stuff! And I haven�t taught him anything that a normal 6-year-old doesn�t know anyway! I gotta go! Hey! Ohhh! Well of course I will watch him! We have fun, don�t we Ben? Ohh, okay. Wh�Ah-ha! Wait a minute. Uh Ben, I can�t do it. I can�t let him go out that way, he�s got a meeting. You�ve got something here on your back. Oh I� No! Wait! Come on! No you guys� EHHHHHHHHHHH!!!!!!! My God!!!!!!!!!!! Oh my God!!!!!!! Oh my God! You look so beautiful! I do the same thing. I�m just kidding too. I�m getting married in December. Oh y�know what? Y�know what? Now that you know what you want you should go to Kleinman�s and get it half off. This place is so overpriced. So, does this come in another color or� So this is Brooklyn. Okay. Oh they�re pushing! They�re pushing!! Well I� No! You gotta get me out of here Phoebe! These bargain shoppers are crazy! No! You gotta hold my hand!! Hey� You�re out of Diet Coke. You�re out of toilet paper! Yeah, I went to a wedding once where they had swing music and uh, two months later the couple got divorced. And now I�m not saying that there�s any connection here y�know, but they did tell me that�s why they got divorced. Well, what is the other reason? Well you have to because maybe it�s stupid. Oh my God! Oh my God!! That is like the third most prestigious soap opera award there is! Oh, stop that! Don�t kid about that! Will all the stars be there? Oh my God! Oh my God! I can�t go! I�m gonna be too nervous! No!! You are getting married! This is all I have. I�m fourth! Look at you with your little maple syrup award! What? No! It�s not a big deal! I do that too, with my shampoo bottle. Yeah. Grammy, Best New Artist. Ohh that�s great! So you�ll definitely get onstage, even if you don�t win. Well of course I do! But y�know, favorite returning character is a tough category Joey. I mean you�re up against the guy who survived his own cremation. Well Joey, you�ll probably get it. But you should probably start practicing your gracious loser face. Y�know when like the cameras are on you and you wanna look disappointed, but also that your colleague deserved to win. Y�know? So it�s sorta like� Y�know? Oh no, at the Grammies I always win. Whoa what? Really? Not right now. Oh, see now I feel bad for the kid! I had a crush on a teacher once and it was so hard! Y�know you�I couldn�t concentrate and I blushed every time he looked at me. I mean come on, you remember what�s it�s like to be 19 and in love. Yeah. I didn�t. I got under him. I know! My God! Do you have your speech? Do you got your gracious loser face? Now Joey remember, if you win you have to hug me! You hug me! On TV?! Yeah! Joey! Why did we have to rush out of there so fast?! Oh my God, you stole her award! Joey I don�t think you know what behalf means. Joey, you have got to take this back! No! Joey! Do you really want an award you didn�t win? Joey, it says Best Supporting Actress! Joey, no: this is wrong! You have to take it back, okay? You don�t want to win an award this way. You�re very talented. And someday you�re gonna win one of these for real, and that one is gonna mean something. All right? Thank you. Thank you. I cannot believe I�m gonna meet Jessica Ashley! Okay, I�m totally cool! Hey Jess. �Sup? Absolutely. I�ll be out in a second. Honey, we have to go. Our reservations are at 8:00. Okay honey, you can finish this later we�re gonna be late. We gotta go. Hi! Hey Pheebs, can I talk to you over here for a second? Well okay�Well don�t ruin it! Just play along at least! Oh my God! We have to throw her a shower?! She has got so much going on we-we have only two options. We have Friday� Yesterday! Oh my God, Phoebe, this is impossible! We can�t do this by Friday! We have to find a place. We have to invite people! We have to get food! There�s just too much to do! It�s impossible! We can�t do it! We cannot do it! We cannot do it! Okay. I�m sorry. You�re right, you�re right. Phoebe, I already, I already did. Okay. Okay. I think we can do this if we just get organized. All right? We have two days to plan this party. We just need to make fast decisions! Okay? All right, where are we gonna have it? 4 o�clock. Food? Ooh great! Very Monica. Ah you went one too far. Uh, flowers or balloons? We�re paying for this y�know. Okay. Umm, what should we do for the theme? What? Okay. Okay. All right, you take care of that. And meanwhile, the party is tomorrow and we still don�t have a guest list. Hey! What�s up Mon? Have at it. Are you makin� him a sandwich? We have to get her a present?! Oh my God you�re amazing! Did you just pull that out of her purse? Yeah? Well, I don�t know. I called all the people in Monica�s phone book and these are the only ones who could show up on 24 hours notice. Hi! I�m Rachel. This is Phoebe. I�m the maid of honor. How do you know Monica? Ohhhh! That�s great! Excuse us for a minute. You didn�t tell her to come?! No I wasn�t! You were supposed to tell her to come, and I was supposed to bring the cake! Yes! And please tell her to bring a cake! Oh Monica, we are so sorry. Well first, for forgetting to throw you a bridal shower. Yeah, we wanted to throw you a big surprise and a great shower, and now you don�t have either. Ugh� What do you, what do you mean? Surprise� �Monica. Hey! Out of all of us, who do you think is gonna get married next? Oh my God, Melissa Warburton. I don�t think I have the energy for this. Melissa! Wh��Why don�t I tell you over here? Oh no-no, no! It�s good! It�s all good! I-I actually work at Ralph Lauren! I will not! I�m the divisional head of men�s sportswear! Oh please� No. Oh tomorrow, oh I don�t know. Um� Shut up. Oh, wow thanks! Oh you�re in real estate! Wow! What do you do now? Okay! Shut up, that was my friend Melissa from college. She�s actually very sweet and we used to be very close. Yes. It�s not a big deal! No we weren�t! It was nothing! It was one night, senior year we went to a party, had a lot of sangria and y�know, ended up�kissing for a bit. Oh wow. Why don�t we just take me and put me with a Manhattan in my hand, talking to the cute bartender. These pins aren�t for playing are they? Hey! Stop picturing it!! That is not a problem. Oh, get out of here! So now, these are all the tuxedos that we make and if there�s anything that you like, we can make you a deal. Anything at all. But these are the three that Monica pre-approved. I�m Monica�s maid of honor. Okay? Don�t try to blue pin me! Oh they are nice. We-we custom-make tuxedos for celebrities and then when they�re done with them they just send �em back. Some of them. Honey, might I suggest watching a little more ESPN and a little less E!? Umm, well let�s see uh, this one is Tom Brokaw. This one is uh Paul O�Neil. He plays for the Yankees. Seriously, ESPN! Just once and a while, have it on in the background. Ooh, this one was Pierce Brosnan! Uh-huh. Yeah. Yeah. It�s a pretty cool tux. Hey! So Joey, I just hooked Ross and Chandler up with some tuxedos for the wedding: do you need one? Well, what are you going to wear? Huh. Does Monica know about this? Can I please be there when you tell her? Oh, y�know what? I can�t. I have to have dinner with that Melissa girl. Well, do you want to hear what actually happened or Joey�s lewd version? Hey, come on! I had this friend from college and I made the stupid mistake of telling Joey that one time�she and I y�know�kissed a little bit. It-it did! Yeah, it was senior year in college. It was after the Sigma Chi luau and Melissa and I got very drunk! And we ended up kissing! For several minutes! Yeah, why is it so hard for you to believe?! I�m not saying that I�m a lesbian! I�m just saying that this happened! Vanilla?! I�m not vanilla! I�ve done lots of crazy things! I mean I got-I got drunk and married in Vegas! All right, y�know what? If you don�t want to believe me about this, why don�t you just come with me to dinner tonight and she will tell you. Oh. Oh, that�s great! Anyway, speaking of drinking too much. I was uh, tellin� Phoebe about that one crazy night after the Sigma Chi luau where you and I uh, we made out. Remember?! We�come on, we both had the sarongs on, and we had the-the coconut bikini tops� �we went back to the house and we got really silly and we�we made out. How can you not remember us kissing?! Wh� Come on! Remember? We were on the sleeping porch! We couldn�t stop giggling? And our coconuts kept knockin� together? Yeah�but come on�Listen, I�m sorry I don�t want to make you uncomfortable, but I told Phoebe that it happened and she doesn�t believe me. No!! Thank you Phoebe. It happened! I am telling you it happened! What?! Wait a minute! No wait a minute! Okay? Look, that night was the one wild thing I have ever done in my entire life, and I�m not gonna let you take that away from me! Okay, so if you don�t remember that, maybe you will remember this! What? Whoa! Whoa-whoa-whoa-whoa! Whoa! Whoa! I-I-I-I�m just�I�m just a good kisser! I�m sorry! Wow! I mean I had no idea that that was gonna� What the hell was that?! And? Well y�know what they say, the 23rd time�s the charm. Aww, look at you all handsome! Oh does it matter?! All that matters is that you look so handsome. I don�t want to say. Diane Keaton. Monica what? What is the emergency?! Well, I like the pretty little drawing of you in the wedding dress. Okay. Okay. Okay. Umm, maybe you can start with, \"Chandler, even though we were friends; there was a part of me that always knew I wanted more.\" Well, y�know, sometimes that helps. Hey! Hey, what have you guys been up to? I can�t believe they�ve been together for three years. I don�t know why they didn�t just tell us. Arghh!! What?! Oh my God! OH MY GOD!!! Phoebe!! Phoebe!! It\\'s okay!! It\\'s okay!! I KNOW!! I KNOW!! I KNOW! Yes, I know! And Joey knows! But Ross doesn\\'t know, so you have to stop screaming!! HI!! Hi! Nothing! Oh God, we\\'re just so excited that you want to get this apartment! All right honey, we\\'d better go if we wanna catch that movie. Are you kidding?! I can not believe he would do that to Mon�Whoa! Joey, do they know that we know? Joey! Ugh, I knew it! Oh I cannot believe those two! Joey look, just look at it this way, the sooner Phoebe breaks Chandler the sooner this is all over and out in the open. Okay! You really think it would be that different? Well, things change. Hey, who\\'s this little naked guy? Aww, look at the little thing. Wow, Monica, you look just like your grandmother. How old was she there? Well, we were just talkin� about you guys gettin� married and how great it is. Oh, can we read them? Okay. Monica, will-will you marry me? Wait a minute! You let Ross drive the Porsche and when I ask you, you say you�re the only one who�s allowed to drive it. You let Joey drive it?! Wow! I can�t believe you lied to me. Take the top down did ya? Come on Ross give me the keys! Monica does not know what she�s talking about! I am an excellent driver! Well in High School, that added up to head cheerleader. I think she�s checking out your beehive Ross. Gimme the keys! Well no brush! Alimony. Ahhh! Ooh, nice! My God! Just washing the windshield. Oh. Look Ross, if you�re so freaked out, just get in the car! All right. What are you doing?! Get in the front! Oh my� God. I forgot how much I love driving. I have got to get my license renewed. Oh Ross you�re so tense! You just gotta relax, okay? Just need to relax all right? Just need to relax� I am not horsing around, okay? I am Porsching around. Uh-oh. Really? You think so? Okay. Switch places with me! Switch places with me! Come on! I�ll go under, you go over! Oh come on Ross!! Hi officer, was I going a little too fast? Oh yes, absolutely! Y�know, it�s weird uh, but I had a dream last night where I was stopped by a policeman. And then he uh�well I probably shouldn�t tell you the rest. Yes. Here you go Officer uh, Handsome. Oops sorry, my mistake. Really?! You think so? Y�know, I had just rolled out of bed. Y�know you�re-you�re probably wondering about the old date on there. Yeah. I bet you�re a Gemini. Taurus? Virgo? Sagittarius? I knew it! I knew it, ahh�. Yeah? I won�t speed. I promise. Yeah! Oh well� Remind me to introduce you to someone! Fourth gear!! Well maybe he saw your hand slip briefly from the ten and two o�clock position. It�s a different guy! Oh my God! You have a son! Op! We gotta go! What\\x91cha doing Mon? Hey! Those are all the things I\\x92m responsible for! The commercial? Oh that\\x92s great! Oh, wait Joey! We fought the Nazis in World War II, not World War I. You\\x92re gonna be late! Go! Go! Mexico? Hi! Oh you guys look so beautiful! Yeah! But I don\\x92t know what he looks like! Man in the black dress\\x85 Hi! I\\x92m Rachel! I\\x92m a friend of Monica and Chandler\\x92s! Oh I get it! A\\x85man\\x85duh! I\\x92ll do it. I said I\\x92ll do it! Monica! I\\x92m not gonna screw it up! Well of course that is what I\\x92m here for! Ugh! What grandmother? Hi! She\\x92s steaming her dress, why? What\\x92s up? What?! Tell Monica I\\x92m sorry. Yeah but, maybe it\\x92s not what we think. Maybe it\\x92s tell Monica I\\x92m sorry I\\x85drank the last of the milk. Okay. Phoebe, I-I think Ross is right. What are we gonna do? Okay. Ross said there\\x92s still no word from Chandler. Oh but he did say that they found the grandmother wandering down fifth avenue. God! Don\\x92t\\x97We can\\x92t let her start getting ready! This is too awful! Oh God, but wait she\\x92ll be in the gown and then he won\\x92t show up and then she\\x92s gonna have to take off the gown I\\x92m sorry. I\\x92m sorry. It\\x92s just\\x85It\\x92s just so sad! I know. I know. Oh God. There\\x92s no tissue! Can you grab me some toilet paper? Oh! Okay. Oh thank you! Oh God! Can I have another one? Oh God I just cannot imagine what is gonna happen if Chandler doesn\\x92t show up! Oh, I mean she\\x92s gonna be at the wedding waiting for him and people will be whispering, \"Oh that poor girl.\" Y\\x92know? Then she\\x92ll have to come back here and live all alone. What? Oh my God! Oh my God! No, she had to have just taken that test because I took out the trash last night. Okay Phoebe, we cannot tell anyone about this. Okay? No. Why? Anything? All right, we\\x92ve got to tell her he\\x92s gone. Ross, she\\x92s gonna start getting ready soon! All right, well how much time do you need? One hour. Then why do you ask?! All right, I\\x92ll see you guys later. I\\x92ll figure something out. Thanks. Okay uh, but before you do that. I-I, I need you to talk to me. Umm\\x85 I\\x92m never gonna getting married! No Monica! I\\x92m serious! Oh, maybe I should just forget about it. Become a lesbian or something. Well maybe it would make me feel better if I slept with Joey. The nights are the hardest. But then the day comes! And that\\x92s every bit as hard as the night. And then the night comes again I know. At dusk. That\\x92s such a hard time for me. Okay. But wait! Let\\x92s go to lunch. Right. Oh good God! I\\x92ve fallen down! Okay. Alright. Honey listen. When I tell you what I\\x92m about to tell you, I need you to remember that we are all here for you and that we love you. We can\\x92t find Chandler\\x85\\x97\\x91s vest. We can\\x92t find Chandler\\x92s vest. Oh! You look so beautiful. Hello? Yeah, we got him back. Everything\\x92s fine. What? Why? Where are you? Joey! The wedding is in less than an hour! Oh my God! I\\x92m gonna have to find another minister. Ugh! Joey, I have to go. Well Phoebe, we gotta do something! Well, y\\x92know. I mean there\\x92s no way Joey\\x92s gonna make it in time. So I\\x92m gonna go through the hotel and see if there\\x92s any other weddings going on. Okay. Anastassakis/Papasifakis wedding, excellent! Congratulations. Mazel Tov! Hi! Oh, great hat. Listen umm, I need you to perform another wedding. Can you do that? Yeah! Yeah. They\\x92re\\x85they\\x92re-they\\x92re my friends, uh, Monica Stephanopolus and uh, and Chandler Acidofolus. As are you Go on! Go on. Oh my God, who is it?! For you. Oh, thank you for doing that. I just can�t deal with this just quite yet. You said that she was, I just didn�t disagree with you. Oh yeah. Oh! Oh by the way? James Brolin? Ed Begley Jr. is not gay. No. No! Thank you. Ugh! Look honey y�know what? I haven�t told him yet, so until I do I don�t think I should tell anybody else. Phoebe!! Okay. Honey, stop it! I am not going to tell you until I tell him. Oh y�know what honey? Let�s not talk about that right now? Sure, but come on, as big as your wedding? Yeah. Hey! Y�know, sometimes you can do everything right, everyone can wear everything they�re supposed to wear, and one of those little guys just gets through! I don�t know! Maybe they have tools. Well, maybe that�s, maybe that�s really brave. Maybe she hasn�t really thought it through that well. I don�t know. Uh-hmm. I�m just thinking about Phoebe; poor knocked up Phoebe. Oh yes! Thank you very much! Oh that�s-that�s actually how the French drink it. I don�t know. I don�t know how I feel. This is all happening so fast. I have to make all these decisions that I don�t want to make. Somebody just take this away from me!! What?! How many ways are there to do that? All right, I�ll-I�ll take it again when I get home. Okay. Thank you. Oh, you guys are so great. Wh�Hey, I just gave you peeing on a stick. How much longer? 30 seconds, okay. Oh I know. I know. Oh wait! Y�know what? I can�t, I can�t look at it. I can�t. Somebody else tell me, somebody tell me. Okay. What? Oh. Oh. Well there you go. Whew! That is�that�s great�that is really great-great news. Y�know �cause the whole not being ready and kinda the financial aspects, all that. Whew. Wow, this is so just the way it was supposed to be. God. Thanks. God this is so stupid! How could I be upset over something I never had? It�s negative? What?! Are you sure? Oh! Oh-oh, that�s a risky little game! Yeah. I�m gonna have a baby. I�m gonna have a baby. I�m gonna have a baby! Ah, it�s still not the time. Listen y�know what sir? For the last time, I don�t care what the computer says, we did not take a bag of Mashuga nuts from the mini-bar and we did not watch Dr. Do-Me-A-Little! Are you joking? Check out is not �til noon and he has a good eleven minutes left. Yeah, one time, when we were dating, uh we got a late checkout, he got so excited it was the best sex we ever had. Until y�know, he screamed out Radisson at the end. Hi. Shh-shh-shh! The guys don�t know yet do they? Don�t worry I promise that you will only have to be pregnant for a few more hours, �cause I�m going to tell the father today. Ew! No! Well then you have his baby. Yeah. Uh-huh, I guess it is pretty big news. Well it�s only different if he wants it to be. I mean, I�m not gonna ask him for anything. Hey Joey, what would you do if someone that you slept with told you that she was pregnant? Oh Joey! Joey! No, it�s not you! You didn�t get anybody pregnant! Not yet. No! Phoebe, it�s not Gunther. Phoebe the father is not here okay? I haven�t told him yet and I don�t think I can tell him at all now! I don�t know, let me think. I was walking down the street thinking, �I�m gonna tell the father today� and then bam! No, you! Phoebe you freaked me out. You kept saying how huge this all is! I know, but I was just thinking about how huge this is for me. I didn�t even go to how huge this was going to be for the father. What? Hey wait a minute! Phoebe, how do you even know who the father is? Oh God� Oh, he�s in there right now? Uh, let�s rip! Oh Phoebe! Nothing! Phoebe kinda made a mistake. But y�know you do wear that sweater a lot, are you involved in some kind of dare? Oh, it�s just not the right time. Okay. Tag� I�m having a baby. You can go. Tag is not the father! And Joey knows now? Oh wow, you didn�t even try to unhook my bra! No, I will. I�m just not up for it tonight. I�m not? What? No! Joey, oh you�re so sweet. You�re so-so sweet, honey. But I�m not, I�m not looking for a husband. Now, if you will excuse me I am going to go and lie down. Oh good you�re still here! I want to tell you to have a good honeymoon! And I also wanted you guys to know that I am telling the father today. What? What? What? How?! How do you know? Oh, I so wanted Ross to know first, but I�m so relieved you guys know. I know! You�re all gonna be aunts and uncles. Okay. Great! So now that you guys all know you can help me. Give me some advice on how I�m gonna tell Ross! Well I was gonna tell him that I�m-I�m gonna have the baby and he can be as involved as he wants. Yeah but how do I start? I mean, what�s-what�s the first thing that I say? Okay great! Thanks. Hi! Hi. Umm, I think there�s something that we really need to talk about. You do? Okay. What? Seriously. What?! Okay, y�know what? Can I, can I talk now? I�m pregnant. Ross? Ross? Okay, whenever you�re ready. And you�re the father by the way�but you got that� Can I get you some water? Ross, there is no pressure on you. Okay? I mean you can as involved as you want. I know. I know, but y�know condoms only work like 97% of the time. They do! Okay Ross come on let�s just forget about the condoms. Listen, y�know what? I was really freaked out too when I found out� Y�know what? Let�s, let�s talk later. Okay, y�know maybe I should come back� Okay. If I said I was, would you judge me? Okay. Oh man, I swear if they sold these at Pottery Barn� Hi! Uh-uh-uh, right now? Because I�ve kinda got an el fresco situation going on over here. Okay Ross that�s fine, but can you please stand near my head? Okay. Head Ross! Head Ross! Head Ross! What married? What, because that�s your answer to everything? Yeah, maybe if you�re in love. But Ross, we are not in love, are we? Excuse me? What?! I can too eat by myself! When certain people leave the table and I am not finished! Oh please, you inhale your food! Oh no Dr. Long, please come in. This is Ross, he is the father. I do need you! I need you to stand near my head! Wow. There it is, I see it. Okay. I don�t see it! I can�t see it! I know, I lied! I didn�t want her to think I was a terrible mother! I can�t even see my own baby! Oh. Oh, it�s beautiful. I see it now. No, I don�t see it! Yeah. That�s it? Well I saw that! Ohh-ohh-oh, thank you. Wow! I can�t believe that�s our baby. Hi. Oh, everything went great. Oh no, I know I couldn�t see it either at first, but it�s right umm� Ross, I lost it again. Hi! Welcome home. Oh! Look! I have a sonogram picture! Well it happened about six weeks ago, and uh I had just got home from work and Ross was already there �cause I guess he had been hanging out with Joey. And so I had a lot of work to do so Ross, nice guy that he is, offered to help me out. And then we had a little wine, we got to talking, and the next thing you know out of nowhere Ross comes on to me. What is? That-that you came on to me? But you did! I mean, let�s be honest. You know you kissed me first. I was sending you signals? Oh please. Okay, anyone in this room think that I would send Ross begging symbols, please show of hands. Okay. So these signals Ross, explain this to me, �cause maybe I need to be more careful. I mean, am I sending you these signals right now? No please, show me how I begged you! Oh Ross! Thank God you�re here! You have to help me! Were you just talking to yourself? Hey! Is Ross still here? Oh really? Well how would you like it if I had sex with you and I taped it? Oh forget it! Oh there he is now, the father of my child, the porn king of the west village. Thank you. What? You don�t want to see this do you? I am not gonna show you this! I wanna see it. Clearly you don�t want people to see this tape. Now I don�t want people to see this tape either, but you so badly don�t people to see it makes me want to see it. You see? Ahh, I don�t believe you. I think you don�t want them to see you begging me. Ah, a little preview! Okay, here we go. Oh, thank God you�re here! You have to help me! Were you just talking to yourself? There I am. I screwed up so bad, I told Monica that I would stuff and send all these wedding invitations like weeks ago and I-I� I-I know�I had put them in�in-in my desk at work and I completely forgot about them until today. Kinda hurtin� my hand though. I cannot believe that I did this. Especially after Monica just went on and on and on about it! \"Okay Rachel! Here are the invitations Rachel! Now be very careful Rachel! Please, drinking no liquids around the invitations Rachel!\" Whoa oh! Oh-oh-oh! Oh�oh-oh-oh� Can you believe this is already happening? I mean it seems like yesterday they just got engaged. Oh, I remember how we almost. Do you think we would�ve gone through with it? Y�know, if we hadn�t gotten caught. Do you think we would�ve done it? Oh I wanted to. Interesting. Oh yeah, sure. Okay, in about ten seconds you�re gonna see him kiss me. Ross did I ever tell you about the time that I went backpacking through Western Europe? Okay, get ready to see some beggin�! What?! What are you talking about?! How do you know about that story?! I heard it from my friend Irene who heard it from some guy! No. No, she told me his name was Ken Adams. So uh, apparently people are familiar with the Europe story? It was an amazing night. You think it looked amazing? Yeah, me neither. Yet� Yeah, it would be really weird. Good luck to you. Oh please. You are undressing very quickly. That�s what I was gonna say. Thank you! I had just gone to the beach that weekend. Have you been working out? Really? Wow, this is so much better than I� Oh! Oh! Oh God! Oh, make it stop! Make it stop!! Have to make it stop!! Well don�t�What happened to Jessica�s body?! You don�t know do you? Oh! Hi. Well, Joey probably thinks I�ll just embarrass him. Y�know, he thinks I�m some kind of a soap opera nut�Which I�m not! I�m not. Although I do know that your uh, your favorite ice cream flavor is butter pecan. And uh, and that your-your dog�s name is Wally. Well look at that, I�m just stroking your arm. Oh, we�re leaving. Bye Kash. Say hi to Wally. Hi! I thought I was a complete idiot. Oh! Oh, I think I�m gonna throw up a little bit. What did you say? What?! Okay Joey, first of all Kash Ford is not people. Second of all, what did he say when you told him I was pregnant? Good-good, don�t tell him. Don�t tell him. Just have him call me okay? Okay, you go do it! I�ll come back to that set! I�ll meet more actors! I�ll meet �em all! Hey, what do you think is a better excuse for why I�m not drinking on this date tonight. \"Umm, I�m a recovering alcoholic. I�m a Mormon,\" or \"I got so hammered last night I�m still a little drunk?\" Hi! Oh no, I can�t. I got a date. Yeah. Why? Is that weird for you? Yeah�Ooh! Earrings! Hey guys do you think this is too slutty�Hi Kash! Yeah! All right, I�ll see you guys later. Thank you. Hi! Well I�m alone and I just bought fifteen dollars worth of candy bars, what do you think? I made the mistake of telling him that I was pregnant. Well better than you, but y�know still not what you want. He got all weird and sputtery and then he said uh, \"Yeah, I hear those hemorrhoids are a bitch.\" Doesn�t he? Yes. Okay. Chandler M. Bing? Oh my God. Oh it�s all right. I�m guess I�m just done with the whole dating thing. It�s one more thing in my life that�s suddenly completely different. This is hard. Thanks sweetie. Oh no, I think I�m gonna go home and eat ten candy bars. Oh you did, there are twenty in here. Good night. Please tell me you�re not gonna dress up like a dinosaur. Hi! I am! I am a woman who spent a lot of money on a dress and she wants to wear it, because soon she won�t be able to fit into it. Ahh! Okay. Oh! Oh! Can I give out the candy? I really want to be with the kids right now. Y�know, ever since I got pregnant I-I have the strongest maternal instincts. Just a minute!!! Look at you guys! Wow! You are a very scary witch. And you are a very funny clown. And you are so in style right now. Y�know, I work at Ralph Lauren and the whole fall line has got this like equestrian theme going on. I don�t suppose you saw the cover of British Vogue, but� Yeah. Sure. Oh, you did this to him? Oh! Well you�re just the prettiest ballerina I�ve ever seen. Oh wow! That deserves another piece of candy. Well, I have to say that earns tutu pieces of candy. Ohh� Oh, honey here. Take it all. Monica! We need more candy? Yeah I know, but one of them just said that she loved me so I just gave her everything. Hey. Hi! Y�know what honey, we�re actually out of candy right now. But someone just went out to get some and I have been giving out money but I�m out of that too. Hey, can I write you a check? Okay, what�s your name? Okay, I�m just gonna write this out to cash. Hey Mona! Oh Gunther! You brought candy! Thank you so much for picking this up! You are so sweet. Honey, someday you are gonna make some man the luckiest guy in the world. Gotta go! Hi! Wow! There you go! Oh yeah, we were but umm, now we�ve got candy. Well, that-that�s not your choice. Happy Halloween! Well is it fair that all you did was put on a cape and I gotta give you free stuff? You shut up! Uh, I think I just did. And uh-oh, here it comes again. Shut up! Yeah I know�I�m good�I got it! Now wait a minute, I�ve got one more thing I have to say to you�oh right! Shut up! No! Wait no! Shut up�I mean don�t cry! Let me get my checkbook! Hey! Well, I had to give the kid fifty bucks to stop crying. No, I also had to go to a couple houses with him as his girlfriend. Oh, I am just awful with children! Really? You think that�s all it is? Wow! What did he do? I can\\x92t. I\\x92m busy. I\\x92m apartment hunting. Yeah, I can\\x92t live with Joey once the baby comes. I don\\x92t want my child\\x92s first words to be, \"How you doin\\x92?\" Well, I haven\\x92t discussed it with him yet, but I know he\\x92s gonna be relieved. Last week, he brought this girl over and I started talking to her about morning sickness and then I showed her pictures from my pregnancy book. Not so much. Oh my God! Was she old? Does she have a view? Yeah that would really be great. Well can we see it?! Oh maybe we shouldn\\x92t. I mean if she just died this morning out of respect. Shall we? And I\\x92m Rachel, an admirer of the building. Ahh. So she\\x92s really not dead. Hmm. Do you think\\x97Could you tell me if she\\x92s hanging in, in a one bedroom or a two? Hey! How was the game? Oh. Oh yeah! Hopefully across the street if certain Dutch people would just let go. Oh but Joey, I have to go. There\\x92s no room for a baby here. Honey, it\\x92s not just a matter of where you put it. I mean a baby changes everything. They cry all the time. I mean imagine bringing home some girl and trying to score when there\\x92s a screaming baby around. Honey, it\\x92s so sweet that you want me to stay, but I-I can\\x92t do that to you. I mean it would disrupt your entire life. I know. I do too a little bit. Hi! You gave them to me! All right, I took them. But I figured it would be okay because you got a big ink stain on the crotch. What bra? You mean the one that you\\x92re wearing? What is this? You\\x92re so sweet. Oh my God! And you gave the baby Hugsy! But Joey the baby is going to be crying, it\\x92s going to be loud. It\\x92s gonna be up all night! It\\x92s gonna poop! What about all the women you want to bring home? Joey, are you sure? I want me to stay too. Thank you. Oh Joey and look at this crib! It\\x92s so cute! Are you serious\\x97Really?! It\\x92s in such good condition. Wow! Whoa-whoa what\\x92s under the covers? It\\x92s moving. It\\x92s still\\x97\\x97It\\x92s got a tail! Get it out of here! Get it out of here!! Hey Pheebs? I\\x92m having dinner with my dad tomorrow night, do you wanna come? Oh no, no, I\\x92ll be there too. No Phoebe! I just need you there for support. I haven\\x92t told him I\\x92m pregnant yet. \\x91Cause I know he\\x92s gonna flip out and I hate it when he\\x92s angry. What Phoebe? Wait! One time he caught me smoking he said if he ever saw me doing that again he\\x92d make me eat the entire pack. Thank you. No you don\\x92t. Well you could\\x92ve untied it with your hands. Well actually umm In case you didn\\x92t notice, that is a scary man. This was such a huge mistake. I can\\x92t tell him Phoebe. I can\\x92t, I can\\x92t, I can\\x92t, I can\\x92t No it\\x92s okay, this is what\\x92s gonna happen. I\\x92m gonna wait a couple years and then the baby will tell him. Hey, that is the\\x85baby\\x92s problem. Oh, everything okay with the waiter? Well\\x85 Umm, I got TiVo. Phoebe! Well uh, yes and no. Except not no. So to sum it up, yeah. No, it\\x92s Ross. It\\x92s Ross. You like Ross. Oh daddy, I hope you\\x92re okay with all of this. I mean think about it, this is a good thing. You\\x92re gonna\\x97This is your first grandchild! You\\x92re gonna be a poppy! Yeah. Who? February 2nd! I know. I know. I panicked, I panicked. I didn\\x92t want him to start yelling at me like I was some \\x9274 Latour. All right here he comes. I\\x92m gonna do this, I\\x92m gonna tell him, I\\x92m gonna be strong. Yeah? Really?! The Plaza?!! Oh daddy!! Right. Daddy, I need to talk to you. Please, sit down. There\\x92s not gonna be a wedding. Ross and I are not getting married. I\\x92m sorry daddy. Oh now daddy, stay calm. Please. Yes. Yes, he says I\\x92m damaged goods. Oh no Ross I\\x92m so sorry. Okay. I-I will promise I will straighten this out with him tomorrow in person, or via e-mail. Oh okay, I\\x92ll fix that to. What\\x92s her e-mail address? All right, I promise. I\\x92ll fix this. I swear. I\\x92ll-I\\x92ll-I\\x92ll-I\\x92ll talk to her. Okay. I know Mona, just hear me out. First of all, I\\x92m so sorry about my father yelling at you, but I heard you totally held your own. You\\x92re gonna have to tell me how you did that. Okay. Um\\x85But\\x97Okay, yes Ross and I used to date. And yes we are gonna have a baby. But we are definitely not getting back together. Oh we just\\x97we drove each other crazy! I mean he was possessive, he was jealous, he could never just let the little things go! Right! But, none of that compared to how kind and-and how gentle and thoughtful he is. I know, I get it, but Mona, what relationship is not complicated? I mean we all have our baggage! You must too! Why else would you still be single? I am so gonna leave right now. Forgot my purse! Oh, you guys made up. He\\x92s a good kisser isn\\x92t he? I\\x92m going! Oh my\\x85God! Let me see that! Hi! Oh Pheebs that\\x92s so sweet\\x97\\x97Ooh, those are so cute! No. Wow! I don\\x92t remember him. Honey, are you sure you\\x92re not talking about your imaginary boyfriend. Oh that\\x92s nice. Remember I had to leave the room the other day when you had that roast chicken? Hi! Oh my God Monica, who is that? Oh! I do not remember him! Wow! He\\'s really got that sexy, smoldering thing going on. Oh my God, he\\x92s\\x85 Look at the way he\\x92s just staring at me. I think he\\x92s trying to mouth something to me, but I can\\x92t make it out. Hi! Will, right? Hi! I\\x92m Rachel Green. Really?! Aren\\x92t you sweet! I gotta tell you though, I am, I am having the hardest time placing you. Oh-oh hang on! Did we umm, did we fool around at Lance Davis\\x92 graduation party? Thank you! All right, who would uh, like some yams? Will? What? Oh y\\x92know what? Can we please keep the chicken and the turkey and everything on the other side of the table? The smell is just yuck! I\\x92m sorry. What? Umm, I\\x92m sorry. Do you-do you have a problem with me? I\\x92m-I\\x92m\\x97I had no idea. I\\x92m sorry. I Uh Will umm, I just want to say that I\\x92m real sorry for whatever I-I did to you in high school You had a club?! Whoa! My God! So what, you all just joined together to hate me?! Who else was in this club? So you were in an I Hate Rachel club? So who else was in this club? So Ross, we went out for two years, and you never told me you were in an I Hate Rachel club. Okay Monica, did you know about this?! Okay. So what? You guys would just like get together and like just say mean things about me? What rumor? Ross! What?! Oh my God! What?! You heard that?! Oh no!!!! Oh my God!! This is all making so much sense to me now! This is why Adam Carter wouldn\\x92t go out with me! This is why Billy Tratt would just stay in this region! Monica, how come you never told me this?! Joey stop staring! There\\x92s nothing there! It\\x92s not true! Oh! Okay! Okay! Listen to what Sean McMahon wrote in my yearbook senior year, \"Dear Rach, you\\x92re such a good person.\" Not girl! Person! \"Dear Rach, you\\x92re a great person. Sorry about your tiney-wienie.\" Yes! I don\\x92t care how long ago it was! You told people that I was half and half! Y\\x92know what? I just want to point out I never did anything to hurt you in high school. What? Yes it is! I saw you guys going at it behind the card catalog! Ohh, there\\x92s a picture of her in the yearbook actually. Wh\\x97Phoebe!! All right, y\\x92know\\x97Fine! You guys have your stupid little club, but I would just like to say is what you did to me is way worse than what I did to you! You gave me a tiney-wienie! Wow She\\x92s right. Hi! Oh my God! Oh Monica! Those boots are amazing! Return them?! Shh! They\\x92re gonna hear you! He\\x92s talking to the baby. Okay. Well, I gotta go you guys. I\\x92ll see you later. Bye. Hi. No, forget it! No way! I am not sending anymore Ralph Lauren clothes to prison. It is a waste. I guess I can talk to one of my supervisors Really?! Oh my God! I\\x92m successful! Yes! I\\x92d love to! Have her come by the office. Yeah. Hi Monica! Hi boots. Ahh Well-well you can give them to me! I haven\\x92t felt my feet in years! Oh Joey, I\\x92m hardly a Right! Hi Dina! Nice to meet you. Okay. All right Dina, well let\\x92s talk about the different areas of fashion that you could get involved in. Let\\x92s see, there\\x92s design, but you may need a whole other degree for that. Uh, there\\x92s-there\\x92s sales, which is great because you get to travel And there\\x92s marketing Honey, it\\x92s going to be okay. He\\x92s been incredibly supportive of me, and if he gets a little upset; that\\x92s what the meatball sub is for. Okay. Honey, why don\\x92t you sit down? Dina has something that she wants to tell you. Joey\\x85there\\x92s something that you\\x85should know. Dina? Now! Give him the sandwich! Give him the sandwich! What?! Dina I know. What college was that Dina? Joey, what are you doing? Oh Joey this is crazy! All right Joey! That is enough! Listen, as beautiful and moving as this ceremony is, it\\x92s not legal. Okay? They-they don\\x92t have a marriage license, they don\\x92t have any witnesses, and the groom only has on one shoe! You\\x92re supposed to realize that they are adults! And that they can make their own decisions. Heyyyyy! Contraceptives are not always effective! Right? Oh, come on kids! A little help here! Joey, just because they\\x92re not getting married doesn\\x92t mean this is going to be a disaster. Maybe they have a plan! Hey, now wait a minute! I get when you told people at first that you wanted to be an actor they laughed at you! Now come on Bobby, why don\\x92t you tell us a little bit about your band? Really? Oh excuse me! Am I ruining my life? So forcing her to marry Bobby is gonna make that happen? Okay Bobby, why don\\x92t we just come over here and let them have a little moment. No! Seriously! What\\x92s wrong with you?! Phoebe? Look at that guy by the window, wow! Oh, what is wrong with me lately? I mean it\\x92s like every guy I see\\x97I mean look here. Look at that guy for example, I mean normally that\\x92s not someone I would-would be attracted to, but right now, with the way I\\x92m feeling, all I want to do is rip off his sweatpants and fanny pack. Yeah. Really?! So this has happened to you? Wow! This explains so much! Last weekend, I went from store to store sitting on Santa\\x92s lap. Ah. Well, y\\x92know what? I go see my doctor tomorrow, I\\x92ll ask her about this. Maybe she can give me a pill or something. Hi! Oh, okay. Hey, can I ask you a question? Was it me, or-or was the guy who took my blood sample really cute? Y\\x92know who I\\x92m talking about, bald haircut, hairy fingers Yes, you are. Oh, really, really good. But enough about me, come on! Where-where are you from? What do you do? Right! Right! I-I actually meant in your spare time, do you cook? Do you ski? Or do you just hang out with your wife or girlfriend? Oh, I love to ski! How amazing is this?! No. I\\x92m very comfortable. No! Shoot, Dr. Schiff what kind of question is that?! Well would you like me to lie down on the table? Do you feel it too? Hi. Well, let\\x92s see. Uh, they gave me cute doctor today and in the middle of the exam I put my pinky in his chin dimple. Okay, even this is turning me on! Oh hey! Hey Ross! Hey how\\x92s it, how\\x92s it going with you and Mona? Are you guys still together? Uh Ross? You asked me that. I think, if it was a little colder in here I could see your nipples through that sweater. You gave her a key to your apartment?! Hey! Yeah. What? Phoebe no! No! I do not care what my hormones are doing, I am not going to just do it with some random guy! Yes. Hi, I\\x92d like to order a pizza. Okay, can I ask you a question? Is-is the cute blond guy delivering tonight? Very Ambercrombie & Fitch. I\\x92ll call you back. It\\x92s just the pizza place. I\\x92m sorry honey, I\\x92m just having a, having a rough day. Oh you really, you really just don\\x92t want to hear about it. Okay, it\\x92s just\\x97and this is really embarrassing\\x97but lately with this whole pregnancy thing I\\x92m just finding myself\\x85how do I put this umm, erotically charged. Yeah. So y\\x92know, I have all of these feelings and I don\\x92t know what to do about them, because I can\\x92t date like a normal person, which is fine because I don\\x92t need a relationship, I mean all I really want is one great night. Just sex, y\\x92know? No strings attached, no relationship, just with someone that I feel comfortable with and who knows what he\\x92s doing. For just one great night, I mean is that really so\\x85hard\\x85to find. So how was your day? Well, I gotta get up early and it\\x92s almost seven o\\x92clock. Okay, good night! I didn\\x92t ask you to do it! You\\x92re Joey! Right back at ya! And so bad. I don\\x92t even know what you\\x92re talking about because I didn\\x92t ask you to do anything! No! That\\x92s the end of this conversation! They made you head of the department! Yeah. Uh, Paul\\x92s Café. They got great food and it\\x92s really romantic. Yeah! Oh, and then afterwards you can take her to the Four Seasons for drinks. Or you go downtown and listen to some jazz. Or dancing\\x97Oh! Take her dancing! Ooh, I miss dating. Gettin\\x92 all dressed up and going to a fancy restaurant. I\\x92m not gonna be able to do that for so long, and it\\x92s so much fun! I mean not that sitting at home worrying about giving birth to a sixteen pound baby is not fun. Huh? What?! Joey, you don\\x92t want to go on a date with a pregnant lady. Okay! I\\x92ll go with ya! I\\x92ll go! I\\x92ll go with ya. All right? Joey? Could you get that? What are you doing here? I thought you were in your room? Ohh, Lilies. Joey, they\\x92re my favorite. Thank you. Oh man! This is so great! I actually feel like I\\x92m going on a real date! Although, I have a hint of morning sickness, and I\\x92m wearing underwear that goes up to about\\x85\\x85there. Yeah, actually that\\x92s my roommate\\x92s. Ah yes, but he\\x92s very protective of me so you\\x92d better watch yourself. Hm-mmm. Yeah, but I\\x92m pretty sure he\\x92s gay. Now the filet mignon, what comes with that? Emmm. Now, instead of the vegetables, is there anyway I can substitute the three-pound lobster? Wow! This is shaping up to be a pretty good date\\x97Oh, I almost forgot. I didn\\x92t pay you the rent check. Okay. Wow! So I get to see what Joey Tribbiani is like on a date. So do you have any moves? I knew it! I knew it. Come on tell me your moves. Oh my God. And that works?! Oh, you poor little famous man. Oh my God! Wow! That was fantastic, I almost leaned in. I really almost did! Alright. So where\\x92d you grow up? Come on, just answer the question! And so were-were you close to your parents? Why not? Oh. It\\x92s gotta be rough. Huh? Thank you! And now if you\\x92ll excuse me, I have to go to the rest room. And now you\\x92re watching me walk away. I am not gonna answer that! No one! They are my friends, I wouldn\\x92t punch any of them. Yeah, but I don\\x92t know why. Look at me, I\\x92m having such a wonderful time! I know! Joey, I think everyone saw the wine come out of your nose. Well that is because you have never been on a date with me before. All right, now don\\x92t judge me. I normally wait until my date leaves, but you live here. I\\x92m ripping into this swan. So tell me, what are Joey Tribbiani\\x92s end of the night moves? How do you do that? Oh my God! No, I don\\x92t want to tell you. Because it\\x92s embarrassing. Okay. All right, stand up. Well, when we\\x92re at the door, I lightly press my lips against his, and then move into his body just for a second, and then I make this sound, \"Hmmm.\" Okay, I know it doesn\\x92t sound like anything, but I swear it works. All right, I gotta go to bed. Honey, I had such a wonderful time. you were 50 minutes late to the class, what did you crawl there?! Well, why didn\\x92t you just take a cab? Well you\\x92re not gonna be able to keep doing this. You what? Right. Wow! Hi! Hey, remember how last night we were talking about that movie Cujo? Relax! It\\x92s not like it\\x92s Citizen Kane! Yeah I know it\\x92s really boring, but it\\x92s like a big deal. Anyway, I was thinking about renting Cujo sometime. Well don\\x92t you have that big date tonight? Hey Joey, can I ask you something? After our date last night, did you feel a little weird? I don\\x92t know! I\\x92m-I\\x92m kinda thinking it-it was the lobster Yeah, I mean I was up sick all night. Really?! How come we didn\\x92t cross paths? Oh God! Thank God you\\x92re home! I\\x92m watching Cujo. Yes! But what is wrong with this dog?! No! No! Seriously, what\\x92s wrong with the dog?! Wait a minute, what are you doing home so early? What happened to your date? Oh. Do you want to watch the rest of the movie with me? Y\\x92know, I never thought I\\x92d say this about a movie, but I really hope this dog dies. What are you doing over there? Come sit here, you protect me. Okay. Okay, that\\x92s him! That\\x92s him! That\\x92s Cujo! That\\x92s Cujo! Hi, sweetie. Hi! Oh, Ross, don\\x92t forget, we have that doctor\\x92s appointment tomorrow! Yep! Happy and healthy! And cute! Popular. Oh yeah! I\\x92ve come up with a bunch of ideas! Really?! Okay! I was thinking if it\\x92s a girl, how about Sandrine? It\\x92s French. Okay fine, what do you have? Wow, oh my God, our child will be beaten to death in the schoolyard. I\\x92m really, really not. All right. Yeah! I don\\x92t think you\\x92re going to need it though. Okay, check this out. If it\\x92s a girl, Rain. Why? Ross, why do you hate our child? Okay, James. But only if it\\x92s a girl. Oh! I\\x92m sorry! Are we having an 89-year-old? How about Dayton? Veto. Sawyer? Veto. Oh, oh my God! I can practically hear the mahjong tiles! But you have it right there in that file? You could tell us whether it\\x92s a boy or a girl? Dayton or Sandrine? Phoebe or Phoebo? Right. Right. So, which of these babies do you think is the ugliest? Third one from the left? What?! I didn\\x92t! Okay fine, I did. But I didn\\x92t see anything, I swear. Okay, but Ross just listen to me But I couldn\\x92t even if I wanted to, because I don\\x92t know! I swear; I didn\\x92t see anything, and I don\\x92t want to know! It was just a momentary lapse. Okay, a couple months late on the lecture, Ross. Hey. You know what? I\\x92ve been thinking about it. I\\x92m really coming around on the name Ruth. I think I would actually consider naming our child that. I didn\\x92t see anything! I actually changed my mind about the name. I would\\x97Sequoia? Fine. But Ross, you want the name Ruth! What? Ross, I swear, I don\\x92t know. A what?! We\\x92re having a girl? That\\x92s what you just said! You said girl! I\\x92m not! We\\x92re having a girl! Sometimes I can\\x92t believe it\\x92s with you\\x97But still! We\\x92re having a girl! Oh, yes! We\\x92ll have ourselves a little baby Ruth Yes, please. Hey! Ross and I were looking for you! What are we all doing in here? Oh, my! No, I was waiting for you! We\\x92re having a girl. Hi, sweetie. Oh Joey, I\\x92m so happy things worked out for us that we\\x92re having this baby together. I love you so much. And I hope it\\x92s not an inappropriate time to say this but, you\\x92re the best sex I ever had. Joey! Joey! Come feel this! Come feel my belly! Joey! The baby is kicking for the first time! Will you please come feel this?! Yes! Oh, okay! Aw, it\\x92s unbelievable! Wow! She is kicking so much! Oh, she\\x92s like umm\\x85oh\\x85who\\x92s that kind of annoying girl soccer player? Mia Hamm! Oh-oh!! One hand on the sheet Joe! It\\x92s not kicking right now. Although we would love to see you do that again. Last night! I just felt it and I went into Joey\\x92s room and he was sleeping Joey. Joey, something feels weird and not good weird. I don\\x92t\\x97Whoa!! Really? Okay. Oh God\\x97Ow!\\x97Oo! Hmm, mild discomfort. So I take it you\\x92ve had one of these Braxton thingies? Thank you doctor. Oh thank you for being so nice and calm. But wait you said everything was gonna be okay. But I\\x97But everything is okay. I\\x92m fine! Yes! Yes! I got half a mind to contract that doctor\\x92s uterus though. Mild discomfort, what\\x92s he talking about? Yeah, everything\\x92s fine! Okay, no uterus, no opinion. Oh you went to the movies by yourself? Oh, I gotta go back in there. No, everything\\x92s fine. I just gotta go back I-I forgot my underwear. Hey Ross! Check it out! I learned a new trick! Ohh! That\\x92s so sweet of you! Oh yum! Did you put pickles on this? Oh Ross!! Yeah, I\\x92ll be fine. But could someone please make sure that sandwich is gone when I get out there? Well, if anyone is keeping score, I no longer eat tuna. What\\x92s up? Are you breaking up with us? Yeah? Are you asking me to move out? Do you not want me here? But Joey, I don\\x92t think Ross wants me to move into his apartment and disrupt his life like that. I mean\\x97\\x97Or he does. But Ross, its you and me! I don\\x92t know. Is it crazy? Okay, let\\x92s do it. I\\x92ll move in. Yeah. Hi! Hey, Happy Valentine\\x92s Day! It\\x92s good. Except he makes us watch the Discovery Channel all day long. Did you know that something really boring happened to someone really ugly in the Middle Ages? Oh, thank you. I\\x92ll see you guys later. Hi. I accidentally packed these with my stuff. Who is this? Oh, well, you are so cute! I wish I could play with you more, but I\\x92ve got to go to work! I hope I stop talking like this before my marketing meeting, yes I do. Yes I do. Bye-bye, Joey. Oh, I seriously can\\x92t stop it. Oh, I\\x92ve got big Valentine\\x92s plans! I\\x92ve got my Chinese food on the way, and the rest of your saltwater taffy! Ross, we actually watched the documentary together. Ooh! My Chinese food! Let me get my cash! Oh, hey, Mona! I\\x92ll be watching TV if anybody needs me. I\\x92m not here! That\\x92s just my Chinese food! You know what I\\x92m going to do? I\\x92m going to get in my sweats, and eat this in bed! I\\x92m just going to grab the phone. Oh, I\\x92m sorry! Do you need the phone? But, but, Mona, I live here. Hi! I\\x92m so sorry to barge in on your Valentine\\x92s, but I had to get away from all the yelling. Mona is dumping Ross. Why? You saw it? Is it scary? Well, now, wait. Now I\\x92m all freaked out. Come on, you guys will watch it with me. C\\x92mon, seriously, you guys, you\\x92re not going to make me watch this alone! Okay. Ooh, my! Woah! Why is that baby torturing that woman?! Uh! It\\x92s horrible! Oh, my God! What? Did her ass explode?! Oh, screw you guys, you don\\x92t have to do it! Oh-oh! Okay, she\\x92s kicking! Whoa!! Wow that was a big one. Hi! Oh yes I do. I do. I believe that there is one perfect person out there for everyone. And do you know how you find him? You stop looking for him. That\\x92s why I stopped looking for Russell Crowe. He\\x92ll find me. Well, what\\x92s he like?! Uh-huh. Of course, of course. Oh sure. Older? Oh, I was just gonna ask! Oh, it\\x92s so sad they never had a chance to meet. Joey? What\\x92s up? Okay what\\x92s up? Well honey, I\\x92m late for a meeting. So can you just make it quick? Sure! That sounds great! Just leave me a message and tell me where to meet you. Okay? and I know Chandler is kidding but it happens every time he touches my stomach. I mean I\\x92m really worried the baby\\x92s not going to like him. Are you okay? No. Not-not for me, but why don\\x92t you take off your sweater? Oh my God! Really?! Can I see it? Huh. Wow, I wouldn\\x92t think Hobbs would like that so much. Um, seven\\x85e-e-eight, eight years. Wow. Yeah. So you were saying? Okay, well you had asked me how long we had known each other, and I said, \"Eight years.\" And the um, waiter came over and cut his tip in half, and umm\\x85now here we are. What? Who are you talking too? Oh, you\\x92re kidding! Oh, it\\x92s a joke! It\\x92s funny. It\\x92s funny. I don\\x92t get it. Oh. Okay. Umm\\x85 I-I\\x85uh, wow. Are you uh\\x85 How did umm\\x85 When? Wow! Wow. Wow. Wow, it is hot in here. Joey, Joey I love you so much, but I Joey. No! Joey please! Please don\\x92t! Please don\\x92t leave like this! Now come on, you cannot do this to a pregnant woman! Can I? Oh Joey honey I don\\x92t\\x85I don\\x92t want to lose I\\x92m so sorry. Yeah, that was a real good one. Joey? Are you in there? Hey! Is Joey here? Well, at least you make each other laugh. Well, I haven\\x92t seen him since that night that he told me how he y\\x92know\\x85 I don\\x92t know, I think he\\x92s avoiding me. Why is that bagel on the floor? Ew, was Chandler naked? Sort of like a, like a ring toss kind of situation? All right. Well listen, if you see Joey will you just tell him uh\\x85tell him I miss him. Okay, I\\x92m done. Do mine. Ah. Well, I have been spending a lot of time in the lab. Well just ask Mona to give it back! Hi! Hi. So I thought Joey and I would be okay once we hung out, but it\\x92s not even like we know how to be with each other anymore. How do you know that? What if it just gets worse and worse and worse, to the point where we can\\x92t even be in the same room with each other?! Oh my God!! You guys have such problems!! I feel so terrible for you! Oh yeah. That makes sense. Ooh, I can do that. Hi. What? Yeah it\\x92s umm\\x85 Yeah it\\x92s uh\\x85 It-it\\x92s y\\x92know\\x97It\\x92s nothing. Yeah\\x97No wait! Joey no wait it is. It\\x92s something. It\\x92s-it\\x92s umm\\x85it\\x92s my boss. Yeah, and umm my baby. My boss wants to buy my baby! I know I told you, it\\x92s a really big problem. Can you believe that?! That\\x92s what I told him! Well I\\x92ll tell ya! See uh my-my boss and his wife\\x97They-they can\\x92t have children. So umm, and that\\x97we were at the Christmas party, and he got drunk, and he said to me, \"Rachel, I want to buy your baby.\" Ohh! Yeah! Yeah that-that would\\x92ve been a much simpler problem. Hey! Great advice on that Joey thing! Oh it was perfect! I mean it really felt like he was my friend again. Oh that\\x92s not important. The point is, I really\\x97I think everything\\x92s gonna be okay. Hey! Oh Joey, honey listen, thank you for talking to my yesterday about that thing with my boss. That really meant a lot. What? Whoa-whoa-whoa, let\\x92s say more! What?! No! No, no-no-no Joey he doesn\\x92t want to buy my baby! I made that up! So that we would have something to talk about! So it wouldn\\x92t be awkward! I can\\x92t believe that you yelled at my boss! I\\x92m-I\\x92m gonna lose my job! What am I going to do?! Oh Joey, I can\\x92t believe you brought my boss into this! I\\x92m gonna get fired! Well, she told me too! Morning. You wanted to see me? Okay look Mr. Zelner Yeah. Oh God. Well, as long as we are clear about that. Hi. It\\x92s all gonna be okay. They\\x92re just so happy that I\\x92m not suing them that they gave me one extra month paid maternity leave. So long as I understand that the money should not construed as a down payment on this or any other child I should bear. Chandler, can you give us a minute? Yeah. Joey, I\\x92m really sorry that I lied to you. I was just trying to make things It kinda worked. I mean y\\x92know, I don\\x92t know about you buy I haven\\x92t thought about our thing since all this. Yeah I know! I miss that. My gynecologist tried to kill me. Hi! Hey, do you guys have any extra ribbon? I, uh, think you already are. Yeah, yeah I like him a lot. Yeah, otherwise I\\x92m not going. This is such a great party! 35 years. Very impressive, do you guys have any pearls of wisdom? Hmmm\\x85. Thank you\\x85we\\x92re so excited Yeah, if you\\x92re going to do the ears, you might as well take a pass at the nosal area. No, I know I don\\x92t either, but ya know what, it\\x92s their party, and it\\x92s just one night. And we don\\x92t even have to lie; we just won\\x92t say anything. If it comes up again, we\\x92ll just\\x85smile. We\\x92ll nod along. Oh Unbelievable! Open it! Open it! Open it! But it was beautiful. I mean it was small, but kind of spectacular. On a cliff, in Barbados, at sunset, and Stevie Wonder sang Isn\\x92t She Lovely as I walked down the aisle. Yeah, Stevie\\x92s an old family friend. So would I. You wouldn\\x92t think that Annie Liebawitz would forget to put film in the camera. What? I\\x92m not you. This may be the only wedding I ever have. I want it to be amazing. Okay, Ross, it has to be realistic. And my veil was lace, made by blind, Belgium nuns. Well, not at first, but it was very intricate work and they said even though they lost their sight, it was all worth it. Well, I don\\x92t know about that, but some said that I looked like a floating angel. Oh yeah. That\\x92s a great story. Shhh! I want to hear the rest! And the ring, was the size of my fist ! Ross, it just wouldn\\x92t have been feasible. It was really fun being married to you tonight. Okay Ross, can I uh, can I ask you something? That proposal, at the planetarium Are you kidding?! With the, with the lilies, and-and the song, and the stars! It was\\x85really wonderful! Did you just make that up? Well, that would\\x92ve been very hard to say no too. Goodnight I will think about it. Hi! So, I\\x92m in my apartment doing the Soap Opera Digest crossword puzzle, and guess who the clue is for three down. So did they call you to tell you your name\\x92s gonna be in this? Oh, come on Joey! You will totally keep it in check this time, and plus y\\x92know the publicity would be really good for your career! And you deserve that! And if you do the interview you can mention, oh I don\\x92t know, gal pal Rachel Green? Okay, don\\x92t listen to him. Please? Come on! We will be there for you the whole time! Just remember gal pal Rachel Green. Ha-ha! I\\x92m gonna be in Soap Opera Digest! And not just in the dumb crossword puzzle. Seriously, proud of you. Oh yeah, I\\x92d actually love a blueberry muffin and a chamomile tea. That isthe Coast Guard. It\\x92s a trifle. It\\x92s got all of these layers. First there\\x92s a layer of ladyfingers, then a layer of jam, then custard, which I made from scratch. Then raspberries, more ladyfingers, then beef sautéed with peas and onions, then a little more custard, and then bananas, and then I just put some whipped cream on top! Oh! Yay! Look! There\\x92s a piece that doesn\\x92t have floor on it! Hey, come on now! Hi! I\\x92m gal pal Rachel Green, and if you want the dirt, I\\x92m the one you come too. This might be Joey\\x92s baby , who knows? I\\x92m just kidding\\x97Seriously, gal pal Rachel Green. Yeah, that\\x92s gonna get you into Soap Opera Digest. Well I\\x85\\x85I would just like to say that Joey truly has enriched the days of ourlives. You too! Oh, Joey! Sorry! Oh but look! That\\x92s gonna leave a stain! Really? I\\x92ve never lived like this before. Oh my God, Jill! This is Chandler. And you know Monica and Ross! And that\\x92s Phoebe , and that\\x92s Joey. Don\\x92t!! Yeah! Wow! I can\\x92t believe they didn\\x92t put it in the part where you said you didn\\x92t watch soap operas. Hi! So what\\x92s the final head count on my baby shower? What?! You mean they\\x92re not coming to a social event where there\\x92s no men and there\\x92s no booze?! That\\x92s shocking! I don\\x92t care, as long as my mom\\x92s here. What?! My mom\\x92s not gonna be here?! My God! So my mother is not coming to my baby shower?! Please, make sure she comes. It\\x92s really important to me, I mean it\\x92s my mom! I don\\x92t know. Okay. Oh well actually gonna use a nanny and uh, I don\\x92t even have a housekeeper. Mrs. Kay! Oh yeah, she was sweet. She taught me Spanish. I actually think I remember some of it, tu madre es loca. Well, however great she was I just can\\x92t afford that. What? Wh-wh-what? What? Yes. Yes I do. Why did you invite my mother?! She wants to move in with me and Ross to help take care of the baby. Eight weeks. I mean I love my mother, but my God, a long lunch with her is taxing. What? You guys, come on! What am I going to do? You\\x92re right. You\\x92re right. I mean I\\x92m about to have a baby, I can tell my mother that I don\\x92t want her to just be sleeping on my couch! Oh my God! She\\x92s gonna want to sleep in my bed with me. This cannot happen! Okay. Mom that\\x92s okay that you didn\\x92t get you a gift! Oh yeah. Okay, see mom, the truth is I can do this on my own. But mom, I really know what I\\x92m doing. I can handle this. He was a hamster! I am not going to vacuum up my baby! Wow! Oh my gosh! Oh wow! Oh, I know what this is! Wait a minute. That can\\x92t be right. Is that a beer bong for a baby? Did I say I was done guessing? Okay, thank you for that. Oh wow! What\\x92s this? Oh, it dispenses clean diapers! Well that\\x92s gross, why don\\x92t you just take it outside and throw it in a dumpster? What?! It goes ten times a day! What are we feeding this baby?! Indian food?! I don\\x92t know, I\\x92d leave it on the changing table? What?! What\\x92d I do? What\\x92d I do?! Oh come\\x97\\x97Of course I know that. I mean of course you never leave a baby alone! I mean who would\\x97she wouldn\\x92t be safe as she would be with me, the baby dummy. Oh God, okay. Y\\x92know what? I think opening the presents right now is a little overwhelming right now. So I think umm, I\\x92m just gonna maybe open them a little bit later, but thank you all for coming. And for these beautiful gifts, and this basket is beautiful. Okay mommy, don\\x92t ever leave me. So umm, you\\x92re gonna stay with me as long as I need you? Oh mom, I swear I\\x92m not an idiot. I\\x92ve read all kinds of books on pregnancy and giving birth, but I-I just didn\\x92t think to read the part about what to do when the baby comes. And-and then guess what? The baby\\x92s coming and I don\\x92t know what to do. Oh, can I throw up in my diaper genie? Wait-wait where are you going? Where are you going? Okay. Oh we did, but my mom got us the greatest gift of all. No. She\\x92s going to live with us for eight weeks. Yes! She\\x92s gonna help us take care of the baby! Woo-hoo. I do. I really do. I don\\x92t know anything. Oh no? Pheebs? Monica? Do I know anything about babies? Hello?! I still don\\x92t know what the hell I\\x92m doing! I hope you\\x92re going somewhere with this. Really? Thank you. Okay! I\\x92m ready. Yes, I\\x92ve done my studying and I really know my stuff. Uh, put your elbow in it. Yeah but y\\x92know what they say Mon, \"There\\x92s no such thing as bad press.\" I didn\\x92t write it. Ross! I am freaking out! My due date is in one week! That is seven days! No-no-no-no-no Ross! Please, come on we do not have any of the big stuff we need! We do not a changing table! We do not have a crib! We do not have a diaper service! I\\x92m serious. Okay. Thank you. That\\x92s great. Thank you. Wait-wait! Where on west 10th? Because there\\x92s this really cute shoe store that has like this little Oh, wait Ross! I\\x92m sorry, one more thing! Umm, our situation. Y\\x92know umm, what we mean to each other. And I mean we-we\\x92re having this baby together, and we live together. Isn\\x92t that, isn\\x92t that weird? I\\x92m just kidding! You can go pee! Oh. No-no-no! No, no, no, we\\x92re not married. Oh yeah! Actually, that\\x92s one of the reasons why we\\x92re not a couple. Oh. Oh yeah, don\\x92t get to worked up over it. I mean it-it sounds like he\\x92s a doctor, but he\\x92s not. Oh my God! I\\x92m standing at a cash register, holding a credit card, and I\\x92m bored. Hi Pheebs! Oh, it was great! We got everything that we needed! Oh and Ross, almost got something that wasn\\x92t on the list. A whore. Well, we were paying for our stuff and this saleswoman just started flirting with him. Yeah. You don\\x92t understand! You didn\\x92t see how brazen she was. No! I\\x92m not! I-I-I just think it\\x92s wrong! It\\x92s-it\\x92s that I\\x92m\\x97Here I am about to pop and he\\x92s out picking up some shop girl at Sluts \\x91R\\x92 Us! Oh yeah! You really\\x97You look great. Chandler, I\\x92m not gonna lie to ya, but I am gonna run away from you. All this stuff takes up a lot of room. Hey how uh, how serious are you about keeping Ben in your life? Horny bitch. No! You\\x92re a horny bitch! Noooo! You\\x92re the horny bitch! No! You\\x92re a horny bitch! So you guys go, have a really good time. So, you had a good day huh? Big commission; picked up a daddy. Oh yeah! Yeah please, you guys have fun. Oh and it was great to see you too. And you look fantastic, although you missed a button. Oh okay, I see what you\\x92re doing there. Hi! You\\x92re back from your date! I\\x92m fine, but that\\x92s not important. What\\x92s important is how was she? Oh uh-huh, uh-huh, coffee, a little rub-rub-rub under the table. No! No, she\\x92s\\x97She was nice. I mean, she\\x92s a little slutty, but who isn\\x92t? Of course you did Ross, you would date a gorilla if it called you Indiana Jones! No! It\\x92s just that, Kate bothered me. There was nothing wrong with her! All right? She was perfectly lovely! I don\\x92t want you to date her! Yes! And not because I want you to go out with me, but because I don\\x92t want you to go out with anybody! Okay? I know it\\x92s a terrible thing to even think this, and it\\x92s completely inappropriate, but I want you to be at my constant beck and call 24 hours a day! I\\x92m very sorry, but that is just the way that I feel. What?! Really? But I\\x92m being so unreasonable. Oh Ross, thank you. Thank you. No, not really. You\\x92re pressing the baby into my bladder and now I have to pee. Sorry. Yeah. Uh-huh. Wow! I don\\x92t know, maybe. I\\x92m I knew that! I knew that! I was just messin\\x92 with you too! Oh no-no-no-no, no! No that\\x92s just\\x97\\x97That\\x92s just \\x91cause I\\x92m such a good messer! Yeah? Right! Well obviously I won\\x92t be able to come, for those of you who haven\\x92t checked their calendars today is my due date. Well y\\x92know, I just want to take a moment and thank you guys for how great you\\x92ve been during this time. I really couldn\\x92t have done it without you. And I have loved these last nine months! And even though I am so looking forward to the next part, I am really gonna miss being pregnant. That\\x92s right, still no baby! Come on people! Please make some room! You. Like you haven\\x92t done enough. God. I have never been so uncomfortable in my entire life! Oh Phoebe, that\\x92s a great story. Can you tell it to me when you\\x92re getting me some iced tea? Oh God, get out! Get out!! Get out!! Get out!! Do you want me to come over there and sit on you? \\x91Cause I\\x92ll do it. They sent me home from work. They were like, \"Start your maternity leave now! Just rest, get ready for the baby.\" Well y\\x92know what? Screw \\x91em! If they don\\x92t want me there, I\\x92ll just hang out with you guys. What-what about me? I don\\x92t. But I would still like to be acknowledged. What? Just because I\\x92m pregnant you think I\\x92m invisible. Oh, I have to pee. If I don\\x92t come out in five minutes it\\x92s because I\\x92ve choked to death on the potpourri stink. All right, who\\x92s turn is it to help me get up! Oh, I have to go pee. Apparently this baby thinks that my bladder is a squeeze toy. In a minute!!! All right, all right. Let\\x92s go! No, I\\x92m fine. Ross, it is 100 degrees outside. For the first time in weeks, I am somewhat comfortable. Oh uh-uh pal! Don\\x92t call me mommy! It\\x92s bad enough you call your own mother that. Ross. Can I ask you something? When Carol was pregnant with Ben were you this irritating? Excuse me?! Well then you just must have a natural talent for it. Okay. Seriously, breathe louder Ross! That\\x92s great! Hi Dr. Long, how are you? She has the drugs! Okay. Yeah. Eh, just a tad. Well, we are ready to try anything. Okay. Great! We will do all of those. Hi! No. But she did give us some ideas on how to induce labor. Well, there is one thing that we haven\\x92t tried, but someone thinks that, \"That will open up a can of worms.\" Why? Why today? I\\x92ll take that bet. Well, I\\x92m miserable here! I might as well make some money out it! Oh honey, don\\x92t worry. I really do feel like tomorrow\\x92s the day. Ross I\\x97We tried all the spicy food. It\\x92s not working. I am feeling nothing. Speaking of hot, watching you do that really makes me want to have sex with you. Oh come on Ross, why are we wasting our time with this other stuff?! We know what\\x92s gonna work! It\\x92s doctor recommended! Oh come on Ross, we\\x92ve done it before we\\x92ll do it again, it\\x92ll be a nice way to bookend the pregnancy. Make love? What are you a girl? But you will, you will be performing a service. Okay? Just-just think of me as a ketchup bottle, y\\x92know you sometimes you have to bang on the end of it just to get something to come out. Oh, I know it. You\\x92re right. That\\x92s not sexy. Oh\\x85Oh! Whoops! Oh, I seem to have dropped my fork. Let me just bed over and get it. Oh God! Come on Ross! I\\x92m miserable here! Come on! You started this, now you finish it! Come on wuss, make love to me. What?! Oh wow! What now Ross you\\x92re not gonna talk? How on earth will you ever annoy me? Oh wait a minute, I know. I mean you\\x92d think the damn jalepeno would\\x92ve cleared up your sinuses, but no!! That\\x92s not enough\\x85 What are you doing?! Oh God! Oh no. No-no! I think my water just broke. Okay! I got the keys! Okay! Okay! Yeah. I didn\\x92t uh, really have time to read this part of the books, but do you think we have time to Okay. Yes, the hard part is truly over. Hi! Ross, you stay here and talk, I\\x92m gonna go have a baby. Whoa-whoa-whoa-whoa! I\\x92m sorry, semi-private? We , we asked for a private room. Okay. Just give us a second. Ross! Give her some money. They\\x92re not!! Ross, they\\x92re just saving them for the important people!! Okay?! What-what if I was the president?! Okay. Y\\x92know what? I\\x92d have to say I really don\\x92t care for your tone. And this is not the only hospital in this city and we have no problem to\\x97Whoa! Oh gosh! Whoa! Ow! Ow! Contraction. Ow-ow! Ow-ow! Yeah, it couldn\\x92t hurt to look. Oh, okay. Thank you. Well, I guess we have some time to kill. Yeah well it looks great! Hi! How are you? Yeah it is. That\\x92s so sweet. Oh. Oh no, I really don\\x92t want any\\x97\\x97Oh! Thank you. Oh. Oh Ross Here comes another contraction. Oh, that\\x92s very\\x97Really very-very okay. No, I don\\x92t think we\\x92ll be doing that. Oh. Oh wait no. No-no-don\\x92t! Don\\x92t leave me here with these people. No Ross! Ross! Ross! My child has no father! Hi! Oh, thank you so much for coming. Ross, get in here! New people. They\\x92re having their baby! It\\x92s not fair Ross we got here first! Right after you left they wheeled her off into delivery. Oh but not before she gave me a juicy shot of little Jamie just crowning away. Well they have uh, some unusual pet names for each other. Including umm, evil bitch and uh, sick bastard. Oh God oh! Contraction! Ooh! Ow!! Ross. He\\x92s looking at me. Ugh, is she pregnant yet? She doesn\\x92t need to be; she\\x92ll still have the baby before I do. Oh Ross, another contraction! Yeah it was. Dr. Long, I\\x92ve been at this for seventeen hours! Three women have come and gone with their babies, you gotta give me some good news! How many centimeters am I dilated? Eight? Nine? Hey, y\\x92know what? I\\x92m not waiting! I\\x92m gonna push this baby out! I\\x92m doing it! I mean it\\x92s what? Three centimeters? That\\x92s gotta be like this! Oh stupid metric system! Oh for the love of God! Oh come on!! Okay! Okay wait! You listen to me! You listen to me! Since I have been waiting four women, that\\x92s four, one higher than the number of centimeters that I am dilated, have come and gone with their babies! I\\x92m next! It\\x92s my turn! It\\x92s only fair! And if you bring in one woman and she has her baby before me I\\x92m going to sue you! Not this hospital, I\\x92m going to sue you! And my husband he\\x92s a lawyer! Go get back on that case honey! Okay, well then bring her in. Oh! I get it! Oh we-we didn\\x92t. Just tell me how. Oh hi. Oh not bad. Do you know that feeling when you\\x92re trying to blow a Saint Bernard out your ass? Oh that\\x92s five Ross. Five women have had five babies! And I have had no babies! Why doesn\\x92t she want to come out? Oh. Look at you making up crap for me. Oh God! Doctor you gotta do something! I think you gotta give me drugs or you gotta light a fire up in there and just smoke it out. What? My God. Okay. Ha-ha-ha beat ya! Sucker! 3-2-1 oh!! I can\\x92t. I can\\x92t push anymore, I can\\x92t. Oh God twenty seconds my ass!! Don\\x92t say, \"Oh my God!\" Oh my God what? Oh God. Is she gonna be okay? I\\x92m sorry, I can\\x92t! I can\\x92t! I can\\x92t. Please, you do it for me. Are you okay? Oh God! Oh, she\\x92s so tiny. Where\\x92d she go? Okay. Well be careful with her, she\\x92s really tiny. Oh hey you. Thanks for coming out of me. I know. Oh. Yeah. Oh, she\\x92s looking at me. Hi! I know you. No, not yet. Oh no, Baby Girl Geller-Green. Hello baby girl. Here. What? Oh nothing I\\x85 Sorry, I just can\\x92t stop crying. So? You guys are all sleep deprived. I don\\x92t see you weeping because you put your slippers on the wrong feet. Oh God. I was reliving it. Yeah, and y\\x92know what? I love them both, so why don\\x92t you just pick one and that\\x92ll be it. That\\x92s not her name! I\\x92m sorry, she just doesn\\x92t feel like an Isabella. Oh great! Suddenly she sounds like a biblical whore. Well what are we going to do? Well tell us! What are they? And if it\\x92s a girl? Oh, just tell us! We\\x92re not gonna want it! Emma! See? I don\\x92t want it. What? Oh honey, but you love that name. Ohhh! Wow! He kinda takes your breath away doesn\\x92t he? Oh, I\\x92m fine. Oh, I\\x92m not doing it alone. I have Ross. Well then he gets a divorce, it\\x92s Ross! Well I\\x97That\\x92s never gonna happen with Ross. Really? Well\\x85 That\\x92s\\x85y\\x92know\\x97That\\x92s\\x97We\\x92ve been alone for the last twenty minutes we\\x92re doing okay. Besides y\\x92know what? I-I\\x97Maybe we won\\x92t be alone, \\x91cause lately I-I\\x97things have been happening between me and Ross, y\\x92know? Right before I went into labor, we-we had this kiss. Y\\x92know? So it might be the\\x85the beginning of something. Uh-huh. Y\\x92know what I was, I was thinking about? Umm\\x85that kiss before we left the apartment. That was some-something huh? Right. No! No, of course not. No. That\\x92s why I brought it up. They didn\\x92t have any sodas? That\\x92s all right. And so it begins. Nothing. Really it\\x92s nothing. I\\x92m just I\\x92ve just been thinking about how my baby and I are gonna be all alone. Oh please, he\\x92ll be with his real family, the twins and little miss new boobs. I\\x92m just saying that y\\x92know, someday Ross is gonna meet somebody and\\x85he\\x92s gonna have his own life. Right? I just never thought I would raise this baby all by myself. Pretty dumb huh? Joey. Honey what would I do without you? Oh, hon can you grab me my other box of tissues? They\\x92re right on that chair under Ross\\x92s coat. Okay. Joey. Joey. Oh my God. Okay. So uh\\x85I guess we should\\x85make it official huh? Hey you. Uh yeah, actually I kinda need to talk to you too. I know, I still need to talk to you. Hi. Uhh\\x85 I think I just got engaged. Well\\x85did you know he was gonna ask me? And you really think this is a good idea? I just don\\x92t know! It just doesn\\x92t feel right. Really?! Even Ross? I guess so. I can\\x92t say that I\\x92m surprised. Of course! Oh Joey, this ring I\\x85it\\x92s beautiful I love it! Hey! Yeah! Hi Emma. Hey, why do you think she won\\x92t take my breast? Okay sweetie, you can do it. Just open up and put it in your mouth. I\\x92m sorry honey, what were you saying? Oh look, she\\x92s pulling away again! Do you think my nipples are too big for her mouth? She looks scared. Doesn\\x92t she look scared? It\\x92s just so frustrating! Why doesn\\x92t she want my breast?! Hey. I need to tell you something. Joey asked me marry him. Joey proposed to me. Well, I-I said yes. I know. Days of Our Lives, thank you very much. Why not? I don\\x92t want to do this alone! And he\\x92s such a sweet guy and he loves me so much. Sure. Yeah, I mean whatever. No. No, I don\\x92t. Could you be a dear and go tell him? Hey. Surprised? I know. You didn\\x92t propose to me. Joey did. Uh\\x85 You didn\\x92t propose to me, Chandler didn\\x92t propose to me, but Joey did. Yes you did! Well then why did you give me a ring? Yes, you did! Yes, you did! Yes, you did! And don\\x92t you say, \"No, I didn\\x92t!\" He was right there. He got down on one knee and proposed. Yeah, what did happen? Yeah, but you said, \"Will you marry me?\" Yes, you did! Yes, you did\\x97Oh my God you didn\\x92t! Well then why didn\\x92t you tell me that before?! Well then Joey, what the hell were you doing with an engagement ring?! You were gonna propose to me? Okay. Oh my God! She\\x92s doing it Look, she\\x92s breast-feeding look! Okay. Oh wow, this feels weird. Wonderful weird. Honey don\\x92t worry, it was my mistake. She\\x92s perfect. We really are. I know. I know. I\\x92ve feeling Yeah. Yeah, maybe. Wh-what\\x92s that? I\\x92m sorry, what? Okay you have to realize, I was exhausted, I was emotional, I would have said yes to anybody. Like that time you and I got married! I\\x92m not helping. That is right and traditionally the daddy is supposed to give the mummy a present but I am prepared to let that go. Well\\x97Really? I thought Chandler was your best friend. Ooooo! Hi! Oh you guys thanks for doing this. Oh Ah! Oh my gosh there\\x92s something every mother needs, a giant stuffed gorilla that takes up the entire apartment! What are people think\\x85 Oh you guys I love it. He\\x92s downstairs getting the rest of the stuff out of the cab. Well, you more then me, but he can\\x92t stay to mad at me. I mean, I just had his baby. Yeah, I\\x92m not so sure you should be here when he comes up. Oh great, the pacifiers? The burping clogs? The diapers? Alright thanks, oh Ross could you stop by the coffee house and get me a muffin? Umm let me think...What do I want, what d-o I w-a-n-t... Blueberry. Thanks. God how long do you think that\\x92s gonna last? Y\\x92know I can\\x92t even worry about that right now, cause I got the cutie little baby, oh I can\\x92t believe how much I love her, I can\\x92t get enough of her, like right now I miss her.\\xa0 I actually miss her. Oh god look at her sleeping.\\xa0 Oh, I love her so much!\\xa0 Oh, I think I\\x92m gonna wake her up. Well I can do whatever I want!\\xa0 I made her! Come on little girl, hi! Oh I\\x92m sorry mummy\\x92s so sorry go back to sleep go back to sleep. Shh. \\xa0 Shhh! Go back to sleep Ok. Oh oh no just stopped to throw up a little bit. Oh come on, what am I gonna do, its been hours and it won\\x92t stop crying. Yeah, I\\x92m not so sure. I already fed her. Oh no, you guys, just stay here, I\\x92m gonna go check her diaper, Pheebs you wanna come? Oh my God! How long has she been crying? You guys, I\\x92m doing the best I can, anyone else is welcome to try. Here you go. Oh god what am I gonna do you guys, I can\\x92t even comfort my own baby! I\\x92m the worst mother ever! Yeah I don\\x92t think dressing provocatively is going to help me here! Oh my god just please take her. I have to go to the bathroom. Oh my God! You got her to stop crying! You are the official baby crier stopper! You\\x92re never leaving the apartment! That\\x92s your new job, day and night, she starts crying I need you here. Okay so listen I\\x92m gonna go lay down. You know the book says that whenever she\\x92s sleeping I should be sleeping so Heeeeey, where have you been? What happened to you? Oh no Ross! This is not good, we have to talk about this Joey thing. Please sit. You have got to get over this Joey thing, okay? I never really wanted to marry Joey, okay? You know what I really really want? I wanna sleep, I wanna eat, I wanna take a shower, I mean before she wakes up and we gotta do this all over again. I mean I got news for you mister, Emma?\\xa0 Not easy. Pheebs, I would make a reservation for five, because one of us has to stay home and watch Emma. Which one of us should go to dinner? Um, Mon, Chandler\\'s not here. Okay, well that\\'s now the third sign that I should not leave Emma. Well, let\\'s see. The first one is: I don\\'t want to. And, you know, I\\'m not going. She is? What about Monica. I just don\\'t think I can bear it. Umm. Oh, ah... You need to learn some new slang. Wait ... Oh! I was just going to say that I left my keys. No! Alright, I can\\'t, I can\\'t wait that long. You have to do something...knock that door down! What if she jumped out the basinet? Oh my God, I left the water running. Ah, did I leave the stove on? Is the window open? Because if there\\'s a window open, a bird could fly in there. Huh? Boy, are you gonna be sorry if that\\'s true. Oh, God, Oh, thank god, you\\'re okay. I\\'m so sorry we left you. Mom never gonna leave you again. Never ever ever again. Oh no. I mean it. After what just happened, I\\'m never leaving her again. We got locked out of the apartment, we ... It wasn\\'t easy, but it\\'s your birthday and I did what I got to do. Oh honey, this is for the best, this way I\\'m not distracted, worrying about Emma, how she\\'s doing at home and I\\'m being completely here with you and, oh, she spit up! She spit up. Judy! She spi...Judy! Look alive, Judy! Thank you. Oh, ooh, everything looks delicious. What should I ha-ave? What should I have? Yeah, I\\'ll have the soup and the salmon. You guys ever heard the story about when Ross\\'s mom went to the beauty salon? Okay, as everybody has ordered, I would like to start the celebration and make a toast ... to Phoebe. She dropped her sock. No, no, Emma dropped her sock. Ross, she still has not noticed that the baby\\'s sock is on the ground. Could you please get her attention? Phoebe, hi, we\\'re so sorry. You\\'re totally right. We are here one hundred per cent and we love you and we are ready to start your birthday celebration. What? Oh thank god, if Phoebe\\'s going, can we please take Emma home? So I don\\'t go back to work for another four weeks, but we would like our nanny to start right away, so that Emma could get a chance to know her. That\\'s great, great. So do you have any questions for us? Allright. Well thank you so much for coming... Really nice to meet you... and we\\'ll call you. Okidoki! Wow! We\\'re never gonna find a nanny. What, the blonde with no bra? Okay... Sandy, that\\'s exactly what it is... Ross! Oh! Oh, that\\'s pretty. Oh God, she mu... she must need her diaper changed. Oh, that would be great! I love him, I love him, I love him... So wh..? He\\'s smart, he\\'s qualified. Give me one good reason we shouldn\\'t try him out. Why? Yes? Please? YES! Sandy you\\'re hired. Oooh... ***I really can\\'t hear what she says*** come here. Oh... Oh boy... Hi... Oh yeah, it\\'s fine, it\\'s fine. Sandy was just... was just telling me about how he proposed to his fiancée and it was just sooo beautiful. I can\\'t... I can\\'t hear it again. Yeah! Excuse me... Look, Ross, he\\'s just... Sandy is just sensitive, that\\'s all. What...? Too sensitive to take care of our baby? Sandy made Madeleines. Well, I... you know, I-I-I don\\'t know what to say... I mean, I never thought of you as a guy who needed his men to be men. You know, \\'cause I gotta tell you Ross, it not like you just came in from branding cattle. Okay, what? What is too sensitive? That was kind of rude! You know, he was just doing his job... Oh, come on Ross... Oh... That\\'s true. Well, you\\'re the one who wants to fire him, so you\\'re gonna have to do it. I can\\'t watch. It\\'s like firing Elmo. YOU! You feel! Oh, damn you Geller! Huh ha ha! Oh yeah, she can\\'t be herself. Yeah, totally! You are in such good hands. And I\\'m so good with Uh, he took the SAT\\'s for me. Ssshyeah, well, duh! I mean... Oh, with the mother, just... just constantly tell her how amazing Hi. I just finished getting Phoebe all dressed to meet Mike\\'s parents. You WHAT? And I missed it? Because I was giving a Well... well, what did you do to make her laugh? You WHAT? You sang... to our baby daughter... a song about a guy who owwwww... Okay... aahhh... Please laugh for mommy... Please? Please laugh for Oh you missed it. She was laughing. Oh it was amazing. It was Oh! You know, I just... couple of things I tried ... I just sang a Nothing else worked. That girl is all about the ass... So fellas fellas has your girlfriend got the butt? So shake it! Shake it! Shake that nasty butt... One more time from the top... I like big butts and I cannot lie, you Oh Emma. This is going to be your first Thanksgiving. What are you thankful for? Mommy\\'s bobbies. Who is it? Hide my rings. Oh. Amy! Happy Thanksgiving. Um... hi. Aw. I haven\\'t seen you in like.. a year. Oh well yeah me too. Um.. I had a baby. Oh.. yeah? Well unless you pushed a desk out of your vagina, shakes not the same thing. mh hmm.. Uh.... its Emma. Oh Amy, you remember Ross. Amy! Yes I do.. I really do. Yeah, no. Ross has a PhD. God she is unbelievable. Oh sure Ross, yeah. If I have a heart attack in a restaurant, I want you there with your fossil brush. What? What happened? Oh Amy, don\\'t cry Amy. Um.. Ross, could I talk to you in private? Um look I was thinking.. If its ok with Monica I would like to invite Amy to Thanksgiving. Look I know she\\'s a little tough to take. She has no where else to go, and she\\'s my sister. Alright, she\\'s Emma\\'s aunt. And I would like them to bond. Ross, you know what? She may need one..We\\'re just going to have to make our peace with that! Monica and Chandler\\'s apartment Hi. Hey you guys, this is my sister Amy. This is Chandler, Joey, Phoebe and you know Mon. Oh we just put her down for a nap. Honey, I don\\'t know how to tell you this, but um, if something were to happen to Ross or to myself um you wouldn\\'t get the baby. See look Amy, we\\'re a lot closer to Monica and Chandler. We see them every day. And truthfully honey, you don\\'t seem very connected to the baby. Monica is Ross\\' sister. Hey. Amy. You\\'ve got to stop doing that. (Amy gets pissed and starts cutting food on the fancy plate very harshly, you can hear the silveware scraping the fancy plate) Well actually... Honey, you\\'re taking this the wrong way. We think you\\'re going to be a wonderful parent. It\\'s just.. you\\'re more the fun parent. UCHH! Yeah.. yeah right.. Remember in high school when I died and didn\\'t give you my baby? What? What carrer? Ok. You decorate dad\\'s office and so now you\\'re a decorator. Okay! I went to the zoo yesterday and now I\\'m a koala bear. Sup.. You want to talk supportive? You didn\\'t even come and visit me when I was in the hospital having the baby. I did the first time! Oh. Oh.. And you know what. You want to know why I\\'m not giving Emily to you. Oh whose side are you on? I\\'m not giving you Emma because there is no way you could handle the responibility of a child. uh huh. Jealous of what? Of your lack of responsiblity? You, your immaturity? Your total disregard of other people\\'s feelings? Timmy was my boyfriend and you made out with him! I cannot, I cannot believe that I invited you here today. ah ha ha. ah ha ha. It\\'s forty five. You take that back. Take it back! Heey man, I work out. I do pilates. Bring it on! Did you just push me? Alright. Thats it! Frizzy frizzy frizzy frizzy!! Ew! Gross. (Amy runs towards Rachel and Rachel puts her arm out, hand on Amy\\'s head and Amy starts trying to hit her but is missing, Rachel is moving backwards towards the table when her hand swipes the one plate left on the table on to Mon, I\\'m so sorry. Are you okay Mon? Look Amy, it got a little of control..Um.. and I\\'m sorry. You\\'re my sister and uh.. if it really means that much to you.. Uh. No.. I was going to let you use my Ralph Lauren discount. She needs changing. Well, I hope the ends of these sentences are good. Oh well, well thank you. Okay, stop. Stop looking at me like that. The last time that happened, that happened. Yeah, yeah. Phoebe and I are going to have so much fun. And thank you for watching the baby, by the way. Phoebe\\'s Mike? I didn\\'t know you guys hung out. Oh that\\'s so cute: Ross and Mike\\'s first date. Is that going to be awkward? I mean, what are you guys going to talk about? Yeah. Hey. Ok. So now, I think Emma is probably down for the night, but if you need anything Ross . . . Okay. You too. And I hope you score. Bye. Oh God. It seems like forever ago. Well, um . . . I don\\'t know. I mean, for a long time nothing. But you know, actually right before you picked me up, Ross and I had a . . . ah . . . little thing. Well, um, first he told me he liked how I looked. And, ah, then we had a little . . . um . . . eye-contact. Mm-hmm. Oh. Should we send them something back? No! Wait! No, no. Don\\'t do that! That\\'s going to make them think they can come over here. Well, we\\'re not here to meet guys. You have a boyfriend, I have a b. . . baby and a Ross. Oh my God. I can\\'t believe you live in that building. My grandmother lives in that building. Ida Green? No sense of personal space? Kind of smells like chicken? Looks like a potato. That\\'s my bubby! Oh, well, it\\'s complicated. I don\\'t actually have a boyfriend. But um. . . I\\'m sorry, no. Oh sure. Great. I don\\'t know. He was cute, and he liked me. It was an impulse. No. No, because I know exactly how the conversation\\'s gonna go. \"Hey Ross, you know, I think we had a moment before.\" \"Yeah.\" \"Me too.\" \"Well, but I\\'m not sure I really want to do anything about it.\" \"Yeah.\" \"Me neither.\" \"Well, should we just continue to live together and not really tell each other how we\\'re really feeling?\" \"Yeah. That works for me.\" Oh, thanks. Wha. . . hey! Well, the point is, maybe I should just stop waiting around for moments with Ross, you know? I should just . . . move on with my life. I don\\'t know. Do I have to decide right now? Oh God, Ross. Ross is going to pick up the phone. Oh, I have to get my number back. Oh my God. He\\'s gone. Oh give me , , , Hi, Mike? Hi. Listen. I know this is a lot to ask, but you know what? If you do this I . . . Phoebe will . . . do anything you want. Seriously, I\\'m talking dirty stuff. Hi. Oh . . . Wow. So, what did you guys do? That was fun Pheebs. See you guys. Oh shoot. I forgot to pay Phoebe for the drinks. Wait, wait. Sorry. Did he call? Did that guy call? Oh, around 8:30? Then, again at 9:00? Yeah. Aaah. Oh, it was so much fun. It felt so good to be out. Yeah? Yeah, I can\\'t *wait* to go back to work. Okay, Pheebs, you look in the kitchen, I will look in the back We are looking for our Christmas presents from Monica. Don\\'t worry, we\\'re just gonna search here for an hour, and Chandler, aren\\'t you worried about what to get Monica for Chandler, that\\'s not enough. I mean what if she gets you a That\\'s right! Oh, it\\'s a Macy\\'s bag! Oh. \"Dear losers, Wiper blades. I don\\'t even have a car. Well, because if one more person says \"what a cute little boy\" I\\'m gonna whip them with a car antenna! That went well. Almost everybody knew that she was a girl. I\\'m just gonna go in my office and pick up some stuff . Who the hell are you!? I\\'m the hell person whose office this is! Excuse me? Wait a minute! What do you mean, you\\'re taking over my job? A vacation? My idea of a vacation does not involve something sucking on my nipples until they are raw. Alright! Don\\'t get too comfortable there, because I\\'m back in two weeks! And I want everything back to the way it was. I can\\'t say that I care too much for the way you\\'ve rearranged my office. Excuse me? Can you please, please take care of it for me? Let me just get this straight! So I go have a baby and they send some guy in to do my job? That\\'s right. You\\'re very cheeky for a temp. Oh yeah, what department was that? The Jerk department? Did they mention that I\\'m rubber and you\\'re glue? Oh, hi Mr. Zelner. That\\'s great. So now, Super Gavin, when I come back where are you planning on flying off to? Oh, wow. Super ass-kissing power. Today. No, I said today! See, for a superhero, not so much with the listening. Listen. Sudden change of plans. My maternity leave just ended. They told me that if I didn\\'t come back today, they were gonna fire me. Alright, alright. Calm down Norma Rae. They didn\\'t actually say that. I\\'m just afraid if I don\\'t come back right now this guy\\'s gonna try to squeeze me out. I know. You know, we\\'re just gonna have to figure out a plan tonight. Can you please just take care of her for today? Come on, I don\\'t know what else to do. Ross? You\\'re pretty. Alright. Now that I\\'m back, why don\\'t you just fill me in on what you\\'ve been up to? Hey, they were popular when I left! Well, I should be involved in that, so why don\\'t you get me up to speed? Oh, no no no no. I see what you\\'re doing here, alright, listen, this is my job buddy. Okay, I\\'ve had it for five years, and I know how it works, so why don\\'t you just catch me up! Oh god. You\\'ve totally messed with the back support of my chair. How do you fix this? Fine, I will. Alright, fill me in! Yes. Emma and I came in a little early to do research on the presentation. I actually made a few changes, but I think I\\'m caught up on everything. So ask me anything! Except that! Oh, hello, Mr. Zelner. We\\'re all ready for our presentation this afternoon. What? I can\\'t do that! I have the baby, and Ross is not gonna pick her up for another hour. Well, there you go. You win, you win. You get to do the presentation, you\\'ll knock \\'em dead, no one will ever remember that I worked here, and then Ralph will buy his helicopter, and Super Gavin will just fly right along side of him! No, I can\\'t, I have a baby. Why would you do that? That\\'s really nice. Then you\\'re not gonna like what\\'s coming. I\\'m sorry, I\\'m sorry, I\\'m sorry. Thank you, thank you. Shhh don\\'t say that loud, Gunther\\'s gonna want to hug me. Ok, you know what, I\\'m just gonna take her outside. OK, thank you. Oh, wow, Molly is just great! What? You really think she\\'s hot? And Joey? Am I the only one who doesn\\'t think that she\\'s hot? Ross? Thank you! So hot I cried myself to sleep last night. Hello. Gavin, I just wanted to say thank you again for watching Emma yesterday during the presentation. I really owe you an appology. Well, when we first met, you know, I thought you were pompous and arrogant and obnoxious ... No, I just mean that, you know, first impressions don\\'t mean anything. And I-I think you\\'re a really good guy and I\\'m sorry that I misjudged you. Hello. But you know what, hey, new day, new leaf, I am just really really happy ... I\\'m sorry, obviously Heather\\'s ass has something more important to say so I\\'ll just wait \\'till it\\'s finished. I was giving you an appology and you were totally checking her out! Oh wow, you are really, you\\'re really a creep. Oh yeah, I\\'m jealous. \"Oh Gavin, please, please look at my ass\". Stop looking at my ass! I mean, I just think you are totally inappropriate, ok? This is a work environment, she\\'s your subordinate. That is totally different for two reasons. One - I didn\\'t know that you knew that. And two, I wasn\\'t some creep staring at his ass, we had a deap meaningful relationship. It was ... oh my god. He didn\\'t have a last name. It was just \"Tag\". You know, like Cher, or, you know, Moses. Oh, you know what - my first impression of you was absolutely right. You are arrogant, you are pompous ... Morgan! Morgan! Tag\\'s last name was Morgan! Huh! Yeah well what are you, his boyfriend? Hey, listen, Joey, about Molly, I really prefer if you didn\\'t go after her. Because it took us months to find a good nanny and I wouldn\\'t want anything to, you know, drive her away. Rachel Green\\'s office!! Give me that phone! Hello, this is Rachel Green, how can I help you? Uh huh ... ok then ... I\\'ll pass you back to your son Um, excuse me Gavin, I have a question I need to ask you. If you like looking at butts so much why don\\'t you just go look at a mirror? Oh, please, I don\\'t care about you enough to bug me. In fact, from now on, I\\'m going take the high road. And I\\'m going be very very nice to you, you \"momma\\'s boy\", starting right now. Hi! Yeah I am, I am! Oh, but first of all, Monica, I would like to introduce you to my very talented colleage and more importantly my wonderful friend Gavin Mitchelle. Oh no no no no no, Gavin can\\'t, he already has plans, most likely with his mother. Why did you invite him?? I can\\'t stand that guy! I was faking it! Can\\'t you tell when I\\'m being fake? Hey, Mr Philips, nice suit! Shh! I still can\\'t believe you invited Gavin. Allright, he is the last person I want to see. God, I hope he doesn\\'t show up. Of course he\\'s not gonna show up, the guy hates me. What? Oh, Monica, you think Skippy liked you? Honey, all those buys had a bet to see if he can knock you over. Oh, ok, thank you. Do you see what all the guys see in her? Yeah, sure! Oh, give me! Ahhhh , you brought rats to my birthday party? Are you comparing my daughter to a rat? whhh wait, you\\'re gonna leave my party to take care of a box of rats? Hi. Thanks for the party, honey. Should I help you clean up? Yeah, I just get a little bummed when my birthday\\'s over. Mmm hmm. No. Well, it was, and you would have seen it if you didn\\'t showed up at ... 9:30?? God! Oh, this party was lame ... Oh, you bought me a present! Why? Aww. Well, ok, well that\\'s very nice. And you wrote a card . \"From Gavin\" Awww, awww, it\\'s beautiful. See, Gavin, you\\'re capable of being a nice guy. Why did you give me such a hard time? Well Monica seems to think it\\'s because you have feelings for me. You do? See? Why, Gavin, why? Right when I\\'m about to change my opinion of you, you go and you ... and you do that ... Hi guys! Listen I really need your help. I think I did something really stupid. No not that. I kissed Gavin last night. Yeah. It was after the party, we were on the balcony and... You know we were all alone and he was being really nice to me and, oh and he gave me this scarf... You know honey, there is a thin line between love and hate, and it turns out that line...is a scarf! I don\\'t know. It\\'s so complicated. I work with this guy, you know, I have the baby, and I have Ross, and I just...I don\\'t Or...I could call in sick and not deal with it at all... Who is it? Why? Oh! Right! Yeah! Hold on, I\\'ll be just clean up in here a little bit! Hello Gavin I a not gonna lie to you, I\\'m pretty sick Oh no no no So did I It\\'s just a cold What? What\\'s the matter? Oh he\\'s dusting me with a fossil brush. He thought it would be funny. Oh you\\'re not. You\\'re not gonna get in the middle of anything, don\\'t worry about Ross really, really. I lied! And I\\'m not sick! Just stay behind the curtain! Oh! Molly! You\\'re not Ross. Right, right, yes! What? No! That\\'s OK! That\\'s OK! That\\'s OK! No no no no! This is my business associate Gavin. He\\'s just being silly. OK. I thought it was Ross. There isn\\'t. There is totally isn\\'t. All right. Look. Gavin...I...I guess I felt guilty that you were here, which I shouldn\\'t. You know Ross and I are not in Yes People keep saying that. Oh I\\'m sorry Gavin So seriously...rodeo clown? Oh, hey! Hi, there you are, I’ve been looking for you everywhere! Listen, my mum is not bringing the baby back until nine o’ clock. So I was hoping you and I could have a Who? You’ve being seeing someone? Hi, and I am also Emma’s mother. Wow. She does that a lot! What, what, wait a minute! You haven’t even told her you were a doctor, yet? How long have you known her, like Ok, Ross, what’s going on here, are we just bringing strange women back to the apartment now? How do you know about that? Oh, that’s what this is all about? Did you bring her up here to get back at me? Score. Oh God, I can’t believe you’re making such a big deal about this. It was one kiss, one guy, one time! Yeah. Oh yeah. What? Who? Whoa, how do you know about that? Why didn’t I get that message? From the guy in the bar, why didn’t I get that message? Ross? Why? Oh God. You know what? Who you think you are? Who are you to decide what messages I should or should not get? Yes. Oh my God, I cannot believe this. You know I actually came in here hoping to have a mature conversation with you Oh, Ross, this is just so messed up! What’s wrong with us? You know when people hear about our situation they And you know, we said that we would, we would live together as long as this makes sense. An maybe this, you know, Hi. Can Emma and I live here for a while? Thank you. Hey! You remembered to put clothes on this morning. Oh, Joey, it\\'s so great to be back here. I gotta tell you, you\\'re making it so easy on me and Emma. Well, I\\'ll probably be back to pick her up around six, but she\\'s in the bedroom all ready to go. But she did actually fall back to sleep, so... Bye! Hey! You guys aren\\'t doing anything tonight, are you? I was just asking \\'cause I need someone to watch Emma tonight. Well, Phoebe set me up on a date. Why? What\\'s the big deal? What, slept together a year and a half ago? Yeah, I\\'m all set. So I\\'ll bring her by around seven? Is that okay? Oh, you guys are gonna have so much fun! She\\'s at such a cute age. Oh, a couple things. Now that she\\'s eating solid food, she poops around the clock. And watch out for your hair, \\'cause she likes to grab it. And oh, she\\'s also in this phase where if you leave the room, she screams bloody murder, but ah... Thanks, you guys. Have fun! Wow, everything looks so good! I think I\\'m gonna have the chicken. Oh, well, that\\'s - that\\'s very sweet. Thank you. What? Well, come on, Steve; let\\'s not rule out nervous laughter. Hey, now wait a minute. Phoebe told me that - that you owned your own restaurant. That\\'s impressive. Really? What\\'s that like? Really? Phoebe, it\\'s me. I\\'m going to hunt you down and kill you! This is the worst date ever. How could you set me up with this creep? I don\\'t care! This guy is a nightmare! He\\'s not stoned. Yeah, four times. No, no, no, I admire a man who can cry. Don\\'t touch my coat! Oh, sorry, it\\'s my phone. Hello? Oh my god, this is the worst date ever! No. What? What do you mean, \"there you are\"? Where was she? Well, uh... Really, really not. All right, well that\\'s good to know. Good night, Steve. I just had a rough night. Eww! Oh, well, I...It\\'s kind of weird talking to you about this, but... Yeah. Oh. Oh, oh no. Do you think she walked in, saw you and left? Well, if it makes you feel any better, I wish my date hadn\\'t shown up. Well, he makes t-shirts for a living, and he thought it would be appropriate to give me this. Oh. Huh. You know, it is weird that Phoebe would set me up on a date that was awful on the same night that Joey set you up on a date that didn\\'t even show. Joey! You never gonna believe it: she called. You got it! Your agent called. You got that audition. Yes. Yeah, and Lennart Haze is starring in it… You saw that? Oh, yeah. Oh, I loved him in those cell phone commercials. Oh, anything yet? Joey, that was formula. Okay, first of all, that\\'s stupid and second of all, I\\'m not allowed to talk to Ralph. Hi you guys! Oh er... well you know Emma started crawling? I realised that this place, is very unsafe for a baby. So I went to the store and got some stuff to baby-proof the apartment. No. I was just going to do this myself. Yeah, Why? You don\\'t think a woman can do this? Monica...would you please tell Joey that he is a pig? Wha!? What!? Come on! I found the hardware store all by myself! There is a hardware store right down the street? This is easy...Can\\'t do this! Oh! Wow! Seriously I can\\'t do this. Hi! Yeah, I don\\'t know who I was kidding. I can barely use chopsticks. Oh thank you so much. Oh oh wait! You forgot your erm...Your game. Don\\'t look at me I never get his jokes. Just when you thought that dude couldn\\'t get any wierder. I don\\'t know! I mean, what brought that on? No you really think that\\'s what it is? Yeah! If you don\\'t I will! Of course your body\\'s gonna change. Your breasts are gonna get bigger, your ass is gonna get bigger, you\\'re gonna lose bladder control. God! It\\'s just such a magical time! Argh. fascist Man, don\\'t be surprised if her hands and her feet get bigger too! Oh my god Chandler! If you can\\'t handle this, what are you going to be like in the hospital? With the blood and the screaming and the little present that\\'s shooting out of her!? Joey! Why did you tell Chandler that Monica was getting a boob job? Yeah, seriously coz this is really heavy. I mean not for me because i\\'m only pretending to hold this, but for these guys. I\\'m so sorry Pheebs. Hey! How was basketball? Oh, no! Who did that? She was just crawling around and she found him, so I just let her sleep with him. That\\'s all right? Isn\\'t it? Joey... are you sure? I mean, I know how much you love him! All right... Oh, Emma loves him! : Step away from the crib, I have a weapon! What are you doing? Oh, oh thanks. Alright well, now that I\\'m up I\\'m going to go to the bathroom. Joey, Emma\\'s right here! You promised not to bring girls home in the middle of the day anymore. Oh that\\'s so great, now Emma has two Hugsy\\'s. Oh you know what? When I was a little girl I had a little pink pony named Cotton. Oh I loved her so much, I took her everywhere, I would braid her tail... Should I be concerned that a button fell off the old Hugsy and I can\\'t find it? Oh, I don\\'t think she likes the new Hugsy. Yeah, I think she wants the old one back. Joey, come on! I\\'m trying to put Emma down for a nap, have you seen Hugsy? Original. Then what\\'s that big lump under your covers? That\\'s not Monica! Oh God. Joey, there is a reason that Emma loves that stupid penguin so much Oh don\\'t cover its ears! It\\'s because it reminds her of her uncle Joey! Yeah! And she\\'s comforted by him because she loves her uncle Joey so much. Oh yeah! But you know what? If you need Hugsy, don\\'t worry. Emma will totally understand. I won\\'t... but whatever . Oooh... you\\'re sweet, I knew uncle Joey would step up. Look Emma, look who\\'s baaack! Are you gonna... you\\'re going to take Hugsy away from a little child? Oh! So you\\'re driving up to Connecticut? Yeah me too. oh! I have an idea. Why don\\'t we all pitch in 50 bucks, we\\'ll pool our money together and then if we win, we\\'ll split it! Yeah so get ready to hear alot of ehm...boohaki, goshdarnit and brotherpucker. Well when I talk to her I almost feel like she understands what I\\'m saying. Joey relax! My mother picked her up two hours ago. You were there! She dropped off a casserole? What\\'s going on? Well, there\\'s two spots left right? Oh no, I\\'m good, I don\\'t wanna get that turkey smell all over my hands. You know, Ross, just keep making your jokes. How are you gonna feel if we actually do win? Oh, I know, I know, the odds are against us, but somebody has to win, and it could be us! And then how you gonna feel? You know, we\\'re gonna be all like \"oh everybody, let\\'s take our helicopters up to the cape\" and you\\'re gonna be all like \"oh, I can\\'t guys, I\\'ll meet you guys up there, I gotta gas up the Hyundai\" I don\\'t really care about the Knicks. You would do that? I never get picked! I\\'m hoping that if she hears it enough it will be her first word. Ooh, you guys, it starts in like 20 minutes. Ooh, I have another idea! Well, well, well, look what mommy found!! Ok, well Monica, suppose one of your \"special\" tickets win? How are you gonna feel when you win the lottery and you lose all your friends? Chandler, would you just tell her what she did was wrong? All right, believe me.If you win the lottery, it\\'s the last you\\'re gonna hear from us! OH! Alright, you know what? That\\'s it! I want my share of the tickets ! Ok, that\\'s it! Just give\\'em to me! I\\'ll split them up! Oh, if she jumps, I get her tickets. Oh, it is so unfair. It\\'s like that time they promoted Sandra over me at work. No, she was just much better at job than me! You know what? We should call my mum\\'s house and say goodnight to Emma before she goes down. Hi mum, put her back on! Mum, please!I know you love your new lips, but I can barely understand you! Would you, please, just let me say goodnight to my daughter? Guys, you\\'re not gonna believe this! I was just saying goodnight to Emma and she said her first words!! She said \"gleba\"!! Isn\\'t that amazing? Why-why aren\\'t you more excited? Oh, but of course it is! I don\\'t know all the words. Ok... \"Emma just said gleba\"! Okay, okay, okay, fine, I\\'m gonna look it up . Alright, okay, okay, gleba, gleba... Gleba! Ha! Here it is: the fleshy, spore-bearing inner mass of a certain fungi. You know what? There is a little part of me that really thought we were gonna win. What? So Pheebs, what are you going to do with your $3? Me too. I don\\'t wanna stand in the way of true love or anything, but I think a canelope might hurt less. Woow! I haven\\'t seen you this worked up since you did that dog food commercial and you thought you were gonna be with a real talking dog! Are you serious? Hey, that was an honest mistake! Yeah, that was an awesome day! Hey Joey, is this the bed where Olivia lost her virginity? Oh, please! Honey, just the fact that you want me here to support you, I\\'m... OH MY GOD! Is that Christian Sanders? He\\'s so gorgeous! Oh, in my head he\\'s done some pretty \"not-gay-stuff\"! Ok, not that you need it but good... GOD! Is that Chase Lassiter? He\\'s straight, right? Oh, I\\'m sorry, you\\'re right. I\\'m sorry, good luck! OH! SSSHHHHTTT!!! He\\'s asking her a question!!! NO! Or, cut! You know, that\\'s your call! Hi! Joey, I gotta tell ya, I\\'ve been thinking all day about that scene you did, I mean, you were amazing! God, you have to tell me what happens tomorrow! Me? Oh, no, I am not an actress. Oh screw her, that part is mine! Okay. . Hello Drake, I\\'m surprised to see you here. Kiss me. Kiss me. No, I\\'m saying... just... don\\'t talk... Ehhh, aw! . Well, that\\'s new! Can I ask you a question? Have you ever had any weird romantic dreams? Ok, well this is like that... in no way. I had a... I had a dream last night that I wanted to kiss Joey. Oh yeah! I mean, that was pretty intense. I don\\'t know! I mean, maybe that\\'s something to do with the fact that I saw him do a love scene yesterday. Olivia. So do you think that my dream means anything? Ah! Well it was Joey reading Drake\\'s lines in the dream... You took the same class twice. Hey, so you guys, the funniest thing happened, at work... Ok, we\\'re still on that. Hey! Joey, do you have peanut butter on the back of your head? How... how... ? uh-huh Wow... definitely just Drake... What... how is it going with Drake? What... that scene I saw was so good! Joey, is this that thing that you do when you say you\\'re bad so I\\'ll give you a compliment? So? Ooh! Honey, it can\\'t be that hard, I mean, you\\'ve been in love before? Ok... this could be a little awkward... I\\'m just going to blow past it... well can\\'t you just use that method actor thing where you use your real life memories to help you in your performance? Alright, alright look, just uh... just try to remember how you felt when you were in love, and think about that when you\\'re playing the scene. Joey, you never.. you never talked about that before... Oh, sorry... Oops, sorry. Ooh... oooh... oh, ah... Can I ask you a question? Do you think it\\'s possible for two friends to fool around and... and not have it be a big deal? No reason. Yeah Nobody, forget it! Maybe. Why? Seriously I did not understand a word that you said. Yeah! You know, ever since I had that dream about him, and can\\'t get it out of my head! And what\\'s the big deal, people do it all the time! Ok, off the top of my head... Don and Janet. I know them from work. No, one of them... I don\\'t know, what were the names I just said? All right, all right, you\\'re right, I won\\'t do anything with Joey, I just thought that we Ok so that would be two cups of tarragon, one pound of baking soda and one red onion? Hey! Yeah, it\\'s a real shame you can\\'t make it to that one-woman show tonight. Oh, yeah, yeah, yeah... You are having a party tonight?? And you weren\\'t going to tell us? How did you think you were gonna get away with that? You do that every year?? Oh, that\\'s why you got these tickets to that play, to get rid of us?? And last year is that why you sent us to that medieval times restaurant? OH! And the year before that, when you set up that nighttime tour of that button factory? Joey, why wouldn\\'t you invite us to your parties? Well, then so you just invite me...! Oh, Joey, come on! Please, please! Let me come, I will behave, I promise! I will behave! Please, please, please... OH, a soap opera roof party!! I\\'m going to a soap opera roof party!! Oh my God, oh my God!! And it\\'s out of my system! Hey... Hi you guys! Listen, you know what? I\\'m not feeling really well. I think I can\\'t get out for the play. I don\\'t know! I think it\\'s kind of serious! Oh, you know... I was watching this thing on TV this morning about... Newcastle disease... and I think I might have it!! ... Ok, who is this? Oh, hi! I would check your hand but... I\\'m sure you don\\'t want to get my chicken disease! Sure! Oh... What? Yes, I am! When you\\'re sick, you do whatever you can to make yourself feel better! Oh, no, no! I heard you before, that is so not what this is! Ok! Joey is having a secret Days Of Our Lives party up on the roof and he sent you guys to the play to get rid of you! And he didn\\'t want you guys to know about it but I came over here to tell you!! Ok professor or detective? Yeah, and he does it every year! That\\'s why he\\'s sending you to that play! That\\'s why he sent us to that medieval restaurant and to that button factory! Ok actually Mon, Matthew was just giving me his phone number. Nice to meet you. Ok Yeah! Yeah, well, I guess I have forgotten about Joey and clearly you\\'ve forgotten about Chandler! I always loved that!! Come on! I think this is funny! Just some boys gave me their phone numbers. I think I am. Why, why, what\\'s wrong with these guys? Joey, you\\'re so sweet. Who ? What? Really? Oh! Screw it, I didn\\'t get it! Oh, Very funny... Joey. Hey! I just wanted to let you know I\\'ve changed my mind: I\\'m gonna do it, I\\'m gonna kiss Joey. Please, what about you and Chandler? Well hello ! I could, I could but I don\\'t want to! I want to kiss Joey! I\\'m gonna do it. No. I don\\'t know why Joey had to kiss her! I mean, of all the girls at the party, GOD! Be-cause Ross is the father of my child! You know... and I... want him to hook up with lots of women! I just... All I\\'m saying is... I don\\'t think that Joey and Charlie have anything in common. All right, so... Ross, you\\'re ok with all this? I mean... Oh, OH! Wow, I love those! Where did you get them? Phoebe, Shania Twain is still alive! Oh, it\\'s a gift certificate to this new SPA in SOHO. Ah, why, now I can\\'t get a massage? There are so many things that she disapproves of! I can\\'t eat veal, I can\\'t wear fur, I can\\'t go hunting... Well, I would like to have the option!! Oh! Phoebe, come on, I don\\'t wanna waste it! It would be like throwing away a hundred bucks! I don\\'t care about any of that!! Oh! Oh, not as a friend, Phoebe!! Fine, I won\\'t use it! I promise. But I am going hunting!! Hi there! Oh, hi. I have a massage appointment under Rachel Green, and here is my gift certificate. And... taped back together. Ok through the glass doors. Alright-y then. Wow, a Swedish massage from a real Swedish person. Oh... what an interesting name. You know I... Wow... I really love your... No, it\\'s just that uhm... it feels so good... Ikea... Yeah, say hey, you\\'ll know this, what\\'s the capital of Sweden? Damn! I wish I knew if that was right! Wow, Ikea... what a rich culture. Uhm, you know what? I have a friend who is a masseuse. Yah! She\\'s... uhm... not very good though... I don\\'t know... maybe it\\'s because she has got such callousy fingers from playing crummy guitar... Phoebe!! For like a half an hour! Man, you can lie about Sweden! How could you not tell me you worked here? Yes you do, if you\\'re going to make me feel guilty for getting a free massage! Oh! Phoebe, why did you lie to me about working here? Phoebe, honey, if you hate it so much, you should walk out there right now and quit! Be true to what you believe in! Honey, you have principles and I so admire that! I don\\'t have any! Good for you Pheebs! Oh, lucky me! Coffee and a live sex show! Oh... Oh, I\\'m sorry! I\\'m not... I was just-I was just reading to Emma. Yeah, yeah... It\\'s... \"climax your way to better skin\". Not me, not me, not me, not me, not me! Yeah... Oh, well... Ok, uh-uh... Let\\'s-Let\\'s shop!! Which you\\'re not, because you\\'ve totally hung up on him! And you\\'re gonna want him to eat his heart out so you\\'re gonna have to look fabulous! Hey Pheebs, I\\'m-I\\'m taking Charlie shopping, why don\\'t you come and I\\'ll help you find something. That\\'s not what we\\'re gonna do! Hi! Ok, you\\'re ready to go pick up Phoebe and go shopping? Not gonna find any clothes in there! Hi. Oh... you\\'re not gonna do a magic trick, are ya? I\\'m there! Bye, see ya. Pheebs, that\\'s for men! On Melanie Griffith in \"Working girl\". I think what you want is over here. Really? Oh, I can\\'t. Because I-I\\'ve seen them. Yeah! I\\'m a big fan! Of the movies, you know. Motion pictures. The Talkies! Sure! You know that depends on what it is! I\\'ve done a lot of stuff. She\\'s ok, I just don\\'t get a really good vibe from her! I don\\'t know, you know, just the way she waltzed in here all smart, and tall! You know, and just swept Joey off his feet... I mean, nobody else has a chance! Anybody! You, me, you know, Monica\\'s mom... Shhhhh! Phoebe! All right, look. I have a little thing for him. It\\'s just physical and I have it totally under control! Ok? It\\'s just, when I see them together, sometimes I just get a little jealous! Oh, I get it! I know, I know, so it is just not a big deal. So can we keep this between us? Ok, great, because I gotta get out of here, the smell of beets is killing me! Oh, God, do you think she heard? It would be so bad if she heard! Ok, great! Oh, thank God I can\\'t hear a word that you\\'re saying! Well, get back in there and talk! What!? Ok well, I heard that! Which means that she heard it too! Oh! What are we gonna do? Oh my God! Alright! Enough out of you! Alright! Let\\'s just do it. Let\\'s just go over there and see if she heard. Ok. Wha...? where? Where are you going? Hey, hi! Hey, where\\'ve you been? Oh! Wi... in the dres... in the dressing room!? Well, that\\'s so weird! Phoebe and I were just trying on clothes in the dressing room. God it\\'s just such a small world! Oh God. You did. You heard. Ok, listen, let me explain. Yeah. Yeah! That\\'s Phoebe. That\\'s Phoebe. You know, she just wants them all! It\\'s like she\\'s a nympho! Yeah... I try... No, that\\'s David. Tip of the iceberg. Do you have anything that would... get us out of them? Hey! Hey what\\'s going on? Alright, I don\\'t wanna alarm anybody, but Monica\\'s hair is twice as big as it was when we landed! Ooh! You guys are so lucky you are here with people, you known it\\'s such a romantic place. That\\'s all, I just wish I could share that with a guy. Not Joey, no, I was just lusting after Chandler. What\\'s with the rain, Geller? I mean, when I signed up for Dino Week, nobody said anything about it being monsoon season. It\\'s not the time Charlie. You know, this happens all the time to my computer at work. Well, I usually go... play Tetris on somebody else\\'s computer. Ugh. Well, I\\'ve brought some books. We could read. We can\\'t. We\\'re not pharmacists! Kate Miller? And... that\\'s the most sex I\\'m gonna have this weekend. Thank you. I know, that old lady at the end was ready to take you home. Well, let\\'s see. There was a really big guy that I was talking to, with the really nice breasts... No. No, I\\'m not blushing, I\\'m sunburnt! From, you know, the rain. No. Joey! Joey, come on! It doesn\\'t matter, you know, it\\'s not like anything\\'s gonna happen. Oh! Ok. Ok, you really wanna know who it is? Do ya? Later! La... Ok. See you, bye. Open your drapes! Open your drapes! Nooo! Look at that woman sitting by the pool getting tan... so leathery and wrinkled, I\\'m so jealous! Homo. All right! Well, uh... we\\'re gonna hit the beach? It was really... great! Oh! Oh! Weather bitch! It\\'s open! Hi, Joe! What, is everything ok? Nooooo, why? Oh, that\\'s crazy! ... yeah, it\\'s true. What, hey! W-What are you, what are you talking about? Ok... uh... maybe you\\'re not always going after the wrong girl... Yeah, I\\'m not talking about her... You know? Forget it! No, I-I-I-I don\\'t, I actually don\\'t know who I\\'m talking about! So! Yeah, sure! Ok, let\\'s not make a big thing about this! Not working with me, Joe! Here\\'s the thing: lately I have been having thoughts musings, if you will! Only like a month! What the... DIAL IT DOWN! Listen, ok, and maybe they\\'re crazy thoughts, but sometimes I do, I have, I\\'ve been thinking about... you know, us! Ok, dial it up a little! Shoot! I don\\'t know, I\\'m not trying to do anything, it\\'s just, we have such a good time when we\\'re together, you know... I mean, aren\\'t you just a... little curious... what that would be like?... Who...? Oh yes, of course, I remember him! Yeah, he did! Oh, see, this is what I\\'m talking about! But can it... just... happen a little bit? But why, why not? But that wasn\\'t gonna stop you before! I\\'m sorry, too! OH GOD! I shouldn\\'t have said anything! It\\'s not a big deal! It\\'s so not a big deal! Ok! Ok, I... AAAHHHH! What? I know, I\\'m her! ooh... Hey, you know, before you said that nothing could happen between us? What changed? What? Ross and Charlie? Wow! She\\'s really making her way through the group, huh? Ah, who am I to talk? Oh, ju-ju-just stay calm. Just be calm. For all he knows we\\'re just hanging out together. Right? Just be nonchalant. That\\'s not nonchalant! Oh... okay, just hide! Coming! Try under the bed, try under the bed! There\\'s no room under the bed. Yeah... Hi... ...I really don\\'t... Yeah, sure... Uh-huh... right... yeah... Oh, I know... I know it\\'s been really hard for you. That is hard to say, Ross. That is hard to say. You would think! Joey! How are you doing this? How... wha... Hey! What are you... What is this? Have you guys been listening this entire time? Ah, what is this? Well, lets see, we kissed for ten minutes and now we\\'re talking to our friends about it, so I guess this is sixth grade! All right, look you guys... Look, we appreciate all the advice, but this is between Joey and me and I think we can handle it... Sure... Get out! Are they right? Yeah... Yeah, we can wait, we don\\'t have to do anything tonight. Although... I mean, you know... Ross and I haven\\'t dated in like... six years... Plus, you know, he is with Charlie now. No... Yeah... Forgotten. Nothing... Nothing... It\\'s really... It\\'s nothing... Come here, come here... Sorry, I just uhm... I can\\'t seem to get Ross out of my head... Ross is coming over. I think now would be a really good time to talk to him. Okay, well keep in mind that by the time you\\'re done, they\\'ll probably be serving dinner. Still nervous? Yeah! Yeah, yeah sure! Yeah! So hi! So you eh, you talked to Joey? Oh! That\\'s great! Oh, so everything\\'s okay? Ah... Well, obviously I think so too. Really? Excited? Excuse me! You didn\\'t tell him, did you? Oh God! Alright, fine. You know what Joey, forget it. When we go back to New York, I will tell him. That was one time, Ross, and they were only like 5 milligrams. Aaah... Ross, actually there\\'s something that I really need to talk to you about. Okay, uhm... alright, here\\'s the deal. What? What is it? Uh, look Ross, this really isn\\'t easy. Because you took three hundred bottles of shampoo? Well, yeah... Okay, look it\\'s about me and... Wow! Well, clearly this is not a good time. Hi! Well, I tried, but then he had a shampoo related emergency. So I guess now it\\'s your turn again. Yeah, \\'cause that\\'s what we do. Okay, that sounds fair. It just means that once again we can\\'t... No! Of course we can wait. Alright, so I guess that means good night then? Goo--ood night! Seriously, good night! Okay. We weren\\'t doing anything! Shhh. No, come on, that is a lie. We also kissed in Barbados. Yeah, you started it! I\\'ve got to chill. We feel so terrible about this, Ross. Ross? Can we just close the door? Ross, say something. Anything. No, no, no! Ross, this is not how we wanted you to find out about this. You have every right to go nuts. No, but you know what I mean. Calm ourselves? Well, what would we be doing? Feel me up? Hey. Oh, you bet. Okay, well, we brought you some wine. Well, maybe the next batch, we could all get some. No awareness. Look, Charlie, I just want you to know. Ross is just having a little trouble adjusting to the thought of Joey and me. You know, he normally doesn\\'t drink like this. Ross, you don\\'t even have oven mitts on! Ooy. Oh my god, are we supposed to answer? Ross, you don\\'t seem okay. Oh, that\\'s okay, girls tend not to like me. You know what, Ross? I think we\\'re gonna take off too. No, no, it\\'s just that it\\'s getting late... Yeah, that\\'s probably a good idea. Uh-huh. Okay. You know what, Joey, I don\\'t think he\\'s ever gonna be okay with this. So. I say ‘cheesy line’, but ok. I am sorry, I don’t know, I am sorry, I don’t know why I did that! Ok, so sorry. I am sorry! Again... I don\\'t know, I don’t know what happened, I must be nervous! Ok, ok, ok. I promise, I promise, I promise, I won’t do it again. I really do. I promise. This is gonna be great. Absolutely! Absolutely. I d... it’s just a little weird, it’s you, and it’s me, it\\'s just gonna take some getting used to. Ok, let’s work from the top down! Just work the bra, Joe! Okay. Oh! Ow! Well this is romantic! It’s a standard issue bra clasp! Ok well, well I\\'m really, I\\'m sorry about that Joey, but do you think that maybe on some level, you don\\'t want to take off my bra? oooh! Oh oh! oh oh! What is up with Miss Hawaiian Tropic? Well, it was good.. until we got back to our apartment, and then we were fooling around and he started to put his hand up my leg and I kept slapping it away! Well, it wasn\\'t just me, alright? He freaked out too! He couldn\\'t even undo my bra! I do not know what\\'s wrong with us, I mean, we have kissed before and that\\'s been great! But this time it was leading somewhere and I was very aware of the fact that it was Joey touching me. Ok, that\\'s true. That\\'s true, we can do this. You\\'re right, you\\'re right, we can do this. We\\'re just gonna power through! No need!! Problem solved, we are powering through . Hey! Got champagne? Excellent! Stick it in the ice bucket, the phone is off the hook, and in the interest of powering through ... Ok Sexy, sexy, very sexy, sexy. Alright! Lets do it! Oh! Get over it soldier, we\\'ve gotta do this! Ok. Aha! You like that huh? You like that? Let\\'s take this into high gear Yeah baby, I\\'ll show you how we do it! What? Oh my God! I\\'m so sorry. Joey? Are you ok? What is the matter with us? No, I mean with us, you know. I mean, is it supposed to be this... difficult? Hi! Hey, listen, can we ask you a question? When you and Monica first hooked up, was it weird going from friends to... more than that? No, no, no... No, I mean... se-x-u-ally... Well, just because it happened that way for them doesn\\'t mean it has to happen that way for us. Right, totally. Yeah, and if doesn\\'t work, then we\\'ll be just one of those couples that never have sex. Hmmm... Me too... I wonder how Monica and Chandler could do it? Aah... I bet you\\'re right. Yeah. Love you too... Alright, I\\'m going to bed. Wait, you can\\'t go away this weekend! It\\'s Emma\\'s birthday! We\\'re having a party. No, that day... that won\\'t be her real birthday! Well, can\\'t you just go to Vermont the next day? And I mean, you know, you guys... This is a big deal. I mean, how can we have her first birthday party without her aunt and her uncle! You know Pheebs, when I was little, on my birthday, my daddy would hide a present in every room of the house, and then he would draw a treasure map to help me find \\'em all. Oh, good, good! We had this idea to make a birthday video for Emma and we\\'ll give it to her when she is 18. Oh no, it\\'s still nap time. But she\\'ll be up soon. I said it\\'s still nap time. Hey Joey, will you please set this up for people to put Emma\\'s presents on? Oh, she\\'s still napping Look, I know that you guys really want to get to Vermont and this isn\\'t a really big deal to you, but it really is to us, ok? Emma will never have a first birthday again. No really, she didn\\'t sleep well last night, so we can\\'t wake her up. Oh! Emma might like what? What did you get her? Well, this sounds like fun! Well, you know what? Actually? People are getting a little antsy waiting Emma to wake up from her nap, so would you mind performing them once now? All right, let’s get this party started, huh? Joey and Phoebe are gonna perform a little something for us. So, Joey, what are you gonna do for us? Oh, ok, which one? Wow! That was amazing! Oh, Phoebe, I’m sorry! Phoebe has prepared something as well. Is that it? Ross, um, don’t forget to get a shot of Emma’s cake. It’s in a box in the fridge. Oh, you\\'re gonna love this cake. I got it from a bakery in New Jersey, Corino’s. Well, anyway, they make these great novelty cakes, in all different shapes, and if you give them a photo, they’ll copy it in icing! Yes! On a cake shaped like a bunny. Ross, what are you talking about? oh! Oh my God! They put my baby’s face on a penis! Why you guys this isn\\'t funny, all right? If I wanted this cake to be a disaster I would have baked it myself! Oh! Believe you me! I am going to bring this cake back, I don\\'t even want it in my home... Joey, don\\'t touch it!! Yes, yes. I still want my daughters picture, but on a bunny cake. Yellow cake, chocolate frosting with nuts! OOH! God! Sorry! Emma\\'s awake. I can\\'t believe this. This is her first birthday. She\\'s awake. We\\'re not even there. Everybody left. We still have this stupid obscene cake. Oh, why do you even bother? I already ruined her first birthday... And do you know how important these early experiences are Ross? Very! According to the back cover of that book that you gave me. I guess... Oh, I just had such an idea of what this day would be like, you know? Emma laughing and everybody gathered around her cake singing \"Happy Birthday\". Then we would all go into... HEY GET OUT OF THE ROAD YOU STUPID STUDENT DRIVER!!! They have to learn! What? Oh my God! Look what... you made it into a bunny. How did you do that? Well, I\\'m very impressed. I don\\'t care that you left. I\\'m just glad that you\\'re here. Thanks you guys! What? Oh! Emma, that\\'s right! You\\'re that many! NO, no science camp! Oh!... Oh and Emma, look at your stuffed animals lined up so neatly! Oh yeah, nothing! These are happy tears! This is just what I wanted. I\\'ve never given her a cookie. Have you? Of course, I\\'d be honored! OH! What\\'s it the anniversary of? Your first date, your first kiss, first time you had sex... Amy! Hi! Oh-oh-hoh! Wow! You remember Joey? So now, what are you doing here? Oh sorry, hold on. Let me just check on the baby! Oh, I know, isn\\'t she? All right. What\\'s your news, Amy? What? Oh my God! To who? A-And?? No, what\\'s he like? Yeah. Huh... wow, so he\\'s gotta be... Sweety, I gotta tell ya... it sounds a little bit like you like the apartment more than you like... Oh... sit down, sit down. Oh, honey, you know, I once also almost married somebody that I didn’t love. Do you remember Barry? Sometimes just nodding is ok. Uhm, so but anyway, listen, not marrying Barry was the best decision that I ever, ever made. Honey, you deserve true love. Your soulmate is out there, somewhere. Someone that is your age, that is smart, that is fun and that you care about! Ok. Ok, let’s keep talking. Amy, hi! Oh, good for you! Yes you are! Oh, I am so proud of you! But Erin Brockovich had her own house. Yeah... Amy kept kicking me in her sleep yelling ‘Myron, get off!’ Joey, I can’t do that! Well Joey, uhm look, I know that she’s difficult, but I think it’s really good that she’s here. No, it\\'s just... look, you know, when I first moved to the city I was a lot like her! I was spoiled, self-centered and you guys really took care of me. Well, uhm... whatever, I have really appreciated it, \\'cause I don’t think I would be the person that I am today if it wasn’t for you guys. See, I wanna help Amy the way you guys helped me. And I know it’s gonna take patience, but that’s ok. Amy, that’s what I was supposed to wear today, that’s why I hung it on the door. Amy, you know what? I was thinking that maybe now it\\'d be a good time for us to sit down and, you know, talk about your future. Well, what happened? Oh, that is so tacky. Phoebe, that’s huge! I think it could be kind of great! Uuuh!! How about at a Footlocker? Oh! That\\'s interesting, since she died seven years ago!! Hello? Oh, it\\'s our nanny! Hi! Oh... God! I hope you feel better! Ok, bye! That\\'s Molly, she\\'s sick. Can you watch Emma today? Menstrual cramps. Can any of you watch Emma? Great, shoot, what are we gonna do? Well, actually... Yeah. Why not? Wha... the next one? Ross, I am trying to help her become a better person. This is a huge breakthrough for her! She just offered to do something for another human being!! Ross, I\\'m telling you, she\\'s giving up getting her eyebrows shaped to do this alright? Do you understand how important that is in our world? Absolutely. Hey! Hi, how\\'s my girl? Yeah! You pierced her ears!? Oh my God, Oh my God, here comes Ross. He\\'s gonna flip out. Ugh. Nah, I don\\'t really want her to see. Nothing. Oh, they\\'re real! I know, I know, and you were right Ross. You are soo irresponsible I am never letting you baby-sit ever again! I can\\'t believe this. All I wanted to do was help you try to figure out what to do with your life and this is how you repay me? Oh yeah? Since when? What? Babies don\\'t care if they\\'re slim. Joey, get Amy\\'s bags, she is moving out! You put holes in my baby\\'s ears! I can\\'t believe I ever even tried to help you. You are so beyond help. Excuse me? Joey, where are those bags? Seriously? Hips or thighs? Oh! Oh my God! I thought she was on Atkins. Oh, I can give you that. Yeah. I just, I kept trying to make you a better person, but you\\'re... you\\'re already a pretty perfect version of what you are. Did you just say Emma? Hi! My God! Mmh-mmh! Oh, Pheebs, baby, that\\'s nice but, you know what, I think I\\'m ok. Why don\\'t you give it to one of your other single girlfriends? GIVE ME THE BOOK! Pablo Diaz, Brady Smith, huh, \"Guy-in-van\"? Oh! Phoebe, isn\\'t Jethro Tull a band? Hi! I\\'m sorry, this sounds like something I\\'m never gonna be interested in. Just tell Joey that you watched the tape and you liked it, but your bosses didn\\'t. Then that way, you\\'re the good guy and they\\'re the bad guys. Who\\'s Gladys? Oh, and Monica gets to keep her? In her house? I am so jealous! Well, I mean, sure, of course. But... you already gave that to Monica, so... No, I couldn\\'t let you do that. But I don\\'t want you to. But I insist harder! No, no, that\\'s ok. You won fair and square. I\\'m so sad! Did you watch the tape? But you are a liar. Well, this is going well. Wow! Oh, she\\'s so nice and big! Oh, Monica, where are you going to display Gladys oh so proudly? Well, hey! How about right above the TV? . That way, it will be the first thing that you see when you walk in the door! Oh! There\\'s nothing above your bed!! O-oh my God! Joey, what... is... this...thing... doing here? Joey, we\\'re not keeping this! Alright, fine. You can keep it. As long as you don\\'t mind that she\\'s haunted. Well, legend has it Joey, that... she comes alive when you\\'re asleep. She climbs out of the frame, and then drags her half-a-body across the floor, just looking for legs to steal. And then with her one good hand, she slo-o-owly re-e-a-aches up and turns your doorknob. Well, why I told him it\\'s haunted. Two can play at this game. Yes I can! She\\'s yours! She\\'s yours! She\\'s mine! She\\'s mine! I want Gladys! She\\'s mine! She\\'s mine! Excellent! Hi! Emma will be up in a minute! Oh hey Ross... Listen, I heard about you and Charlie. I\\'m really sorry. Absolutely. So, uhm... what are you gonna do today? Oh my God, what!? Ok, look, Ross. I do not want Emma going to the playground. All right, well, if you must know... I had a traumatic... swing incident... when I was little. Yes, I was 4 years old and I was on the swing and then all of a sudden my hair got tangled in the chain. And to get me out my mom had to-had to cut a big chunk of my hair! And it was uneven for weeks! Ok, fine! You can make fun of me. I do not want Emma going there. And I was thinking Claire Danes. Ross, those things go like 40 miles an hour! Ok? When you\\'re... and there is that moment when you are at the top, when you just don\\'t know if you\\'re gonna return back to earth! All right! Irrational, huh? All right, well, I’ll remember that the next time you freak out about a spider in your apartment! Ok, careful. Careful, watch her hair. WATCH HER HAIR! I know but they’re just so beautiful! Oh, my God, I just pulled one out. Ok. Ok. Ok, careful, ok. Oh, she’s smiling! Oh my God, she does like it! Awe! Oh my God! Looks, she’s a little dare-devil! Oh, let me push, can I push? Ok. Oh God. Get the camera, it’s in the diaper bag. Oh, oh Ross, oh my God, are you okay? Ross, see! I told you, those swings are evil! Alright, that is it. That is the last time Emma is getting on one of those things for her entire life. Ross, c\\'mon, please. Can we just get out of here, before somebody else gets hurt? I know what this is all about... You\\'ve always been jealous of my hair. Alright fine. I\\'ll do it. If you hold a spider. IF you hold a spider. Ok... I got a spider. There were two, I picked the bigger one. Ok... Ok... O-k... Ok... whoo... ok... wow... ok... OH! Hi! I can\\'t believe this! This is Emma\\'s first Thanksgiving! It\\'s not? When was she born? Hi! Happy Thanksgiving! Did you at least win the contest? Can\\'t wait! Yeah. Well, let\\'s see... uh... I know that she has a meeting with her lawyer and then she has to make a very big poop. Why? Oh my God! That\\'s the creepiest thing I\\'ve ever heard! Oh! Phoebe, all babies are beautiful! Phoebe, just the idea of pitting one baby against another, I mean, you know, and judging who\\'s cuter just for a trophy... And a thousand dollars. ...is something I\\'m very interested in! Oh please, do not tell Ross. He still believes that what\\'s in the inside is important... Where am I gonna get a cowgirl outfit on Thanksgiving? Oh, take the clothes of Joey\\'s Cabbage Patch Kid. Oh Phoebe, listen. Well, I think we gotta go. This place is really freaking me out. I\\'ve been watching this guy over there, I don\\'t think he came with a kid! Phoebe, I think... It\\'s just too weird, I just saw a one year old running around with pantyhose on! Oh, Phoebe! Come on! You know what, it\\'s already three o\\'clock and they haven\\'t even gotten to Emma\\'s group yet. We gotta go, we got dinner! Phoebe, you have to calm down. Really? You heard them say that? All right, okay. Alright, let\\'s give to these babies something to cry about! No, what? No Phoebe, I am not letting you put makeup on my baby! Because I already did! No... What are you doing here! And I won! Yes! Y-E-S. Yes! Yeah. That\\'s me! She won a thousand dollars! Well, I don\\'t know, you guys figure it out, I got to put Emma down for a nap. Alright, Emma is napping... what happened to your shirt? You know what, we just say that she said it was 5 o\\'clock. We\\'ll just act casual. We\\'re not late, we\\'re right on time. Oh, God. This is bad. This is so bad. Oh, hey, I have an idea. Why don\\'t we play rock-paper-scissors, and whoever loses goes in first. Ready? . Alright, enough, enough, come on. Let\\'s just all go in at the same time. Alright, come on... Alright, you guys. We\\'re so sorry we\\'re late. Please let us in, so we can have dinner together. You guys, come on, it doesn\\'t matter why we\\'re late. We\\'re all here now, please let us in so we can have some of your delicious turkey. Oh, I just remembered. We do have something to eat. Monica put something in our oven this morning. Huh... OH MY GOD IT\\'S BRUSSELS SPROUTS. Oh, I know... I still have my old key! We can just unlock the door. You know what? I don\\'t want to be with them either, but it\\'s Thanksgiving and we should not want to be together, together. Oh! So bad. Dessert? Congratulatioooons! Ewww, is that what that is? Yeah! I\\'ll cook! Hey! I lent them to Ross. I\\'m so happy for you! Hey, who\\'s Phoebe with? Do you think I\\'m someone else? Well, believe it or not, it\\'s true. When Joey and I were together, he was wonderful. He was thoughtful and mature. And for the one week that we went out, he didn\\'t sleep with anybody else! Hi! Oh! Well, it\\'s a little low... pick up a little... a little bit more... a little bit more... There you go! Now throw it away! Ross, please, trust me. I buy 30 fashion magazines a month. Now, I don\\'t know who\\'s running for president or who that... NATO guy is, but I do know that you have to get as far away as you can from that hat. Hi what? Oh! Oh, no! Oh, yeah. Joey doesn’t share food. I mean, just last week we were having breakfast and he had a couple of grapes on his plate and ... Oh no! Not me! Emma! Ah, this place is great! Ross, look, I know that some of this stuff is out there, but I mean, come on, look at this, look at this sweater! . I mean, this is just beautiful! Yeah, down from seven hundred, you are saving like two hundred bucks! No, no, no, no! Ross, wait! Come on! You know, there’s other stuff. Here’s a nice shirt, look at these nice pants... Yes, they will! You know what you should do? Just go take a walk, all right? I know your size and I’m... I’m gonna pick up some really good stuff for you. Yes! And I know what looks sexy on guys. Please, just wear what I suggest, and she’s gonna go nuts for you. Why do men keep talking to me like this? Oh! Really? Do you wanna try some of them on for me? Oh no! I took one of Ross\\' bags by mistake, and one of mine is missing. My God, get a room! Oh God. What about you, Joe? What would you give up, sex or food? No, you gotta pick one! You gotta see these latest pictures of Emma. Yeah. Oh, no, no. That is a doll. Oh. Who is the blonde, she\\'s pretty. He\\'s not having an affair! No, you\\'re not! Last week you thought Ross was trying to kill you! Oh, that doesn\\'t mean anything. \"Dude, Where\\'s My Car?\" They\\'re in a caaar... Geez! Oh, yeah, ok. Let me just grab my night vision goggles and my stun gun. I’m telling you guys, we followed them out to a house in Westchester, the went in for like forty-five minutes and then they came out looking pretty happy! Oh, look at her, so happy! Phoebe and I saw Chandler with a blonde woman today outside on the street and then we followed them to a house in Westchester. Who\\'s Nancy? Are you serious? What is wrong with raising a kid in the city? I\\'m doing it, Ross is doing it, Sarah Jessica Parker is doing it! Yeah it is. Well, it is, all right? When we were out there today, all I kept thinking was: I can\\'t believe Chandler is screwing this woman, but MAN this would be a nice place to live! C\\'mon Daddy, listen to me! All of my life, everyone has always told me, \\'You\\'re a shoe! You\\'re a shoe, you\\'re a shoe, you\\'re a shoe!\\'. And today I just stopped and I said, \\'What if I don\\'t wanna be a shoe? What if I wanna be a- a purse, y\\'know? Or a- or a hat! No, I don\\'t want you to buy me a hat, I\\'m saying that I am a ha- It\\'s a metaphor, Daddy! Well maybe I\\'ll just stay here with Monica. You\\'re fly is open, Geller! Ow, that had to hurt! No Mon, you want to put them in concentric circles. I want to do this. Oooohh that’s interesting. 14? Space cowboy! Ow...Oh Gosh! Oh-oh-oh, he’s a transponce—transpondster! Y’know what, you are mean boys, who are just being mean! That is not true. She did! She forced me! Well it stupid, unfair question! Hey, what\\'s-what\\'s going on?! Funny, because I was just gonna go across the hall and write that on Chandler. Well, Phoebe that’s fine because I’m not moving. Yeah, I do. I-I do, do that. Well y’know, I don’t want you to be cold. And a crappy New Year. You can\\'t move. You just... you just can\\'t. Yeah. So don\\'t move, okay? Just stay here and... maybe close your blinds at night. Yeah, we\\'re gonna let you be alone. Aah! Why? What are these for? Ooh! Oh wow this is so beautiful. Oh God, that\\'s right. I blocked that out. Oh, d\\'you like it? What? Pheebs, I... there isn\\'t gonna be any flying about! We actually thought we were a little too mature for stuff like that. Seriously Pheebs, it\\'s not gonna be that kind of a party. Nooo! Phoebe, of course there is more! I mean, I\\'ll just go and talk to Monica and get an ETA on the pee-pee\\'s! Well, he\\'s coming from Jersey, he said he would get here as fast as he could! Uh! The police! Yeah? All right, look, we did not know that you wanted a stripper so we went to the phonebook and we got the first name we could find! No, that\\'s ok, let\\'s me just get my check book! This is so awesome! College guys are so cute! I know. But if some guy who looks like Corey Haim wants to kiss me tonight, I\\'m sooo gonna let them! It... You can so totally tell. Well lets see. Maybe he knows where Ross is. Hey, how\\'s it going . Yeah, Rachel. And this is Ross\\' sister, Monica. We met at Thanksgiving. . Bitchin\\' Oh. I am sooo drunk. I am soo not going to do good on my SATs tomorrow. Oh yeah. There is a plan! Why don\\'t I just start taking my smart pills now? Oh, what a line. Oh well, You know, I think it\\'s kinda really important that I go somewhere where there\\'s sun, so I\\'m sort of... Hey! Yeah okay. No, wait. No there\\'s gotta be something else that you can do. I mean, what skills do you have? So maybe something in an office. Really? Yeah. Oh, Monica made me send her to my mother\\'s. Apparently babies and weddings don\\'t mix. Uh... November? Hey Pheebs... Uhm... you haven\\'t told these guys what they\\'re doing in the wedding yet. Well, this is really awkward Oh, and I can leave! Goody, what is it! What, what, what, no, I don\\'t wanna do that. Happy wedding day! Ok-dokey, Joey, listen. This is gonna be bridesmaid central, all right? We\\'re gonna have hair and make-up going on in the bathroom and oh, I had to move a couple of things in the fridge to make room for the corsages. What d\\'you want? Oh, Ross, c\\'mon, please! Don\\'t make this harder than it already is! Well, Chandler said that it\\'s really important to him too! Oh, you are the lesser of two evils! Hi Even so, I think I\\'m gonna pick Ross. All right fine, I pick you. Oh my... Well, in my defense, you were not supposed to tell each other. Who\\'s there? Uh. You know what, I can\\'t do this. I don\\'t know which one of you guys to pick. Wow, this is a tough one. I think I\\'m gonna have to go with the dog. Since when do you watch the news? Wow, you know, it\\'s so beautiful out there. You always wanted to get married outside. Why don\\'t you guys just do it on the street? Well, look, it\\'s hardly snowing anymore. I mean you couldn\\'t ask for a more romantic setting. This could be the simple wedding you\\'ve always wanted! Oh Phoebe, I\\'m so happy for you honey. Geez Ross, you could have showered. How was the honeymoon? Oh! I did not know you spoke French. Oh... you\\'re so sexy! Seriously stop it, or I\\'m gonna jump on ya. Ross... My father had an heart attack... ...while I was at Barney’s. Yeah, they said he\\'s gonna be fine, but he\\'s still heavily sedated. No, come on, I\\'m totally ok. I don\\'t need you to come! I can totally handle this on my own. Ok. If you really need to. Oh, I really could. Ohh... Oh, uhm, excuse me, I\\'m here to see my father. My name is Rachel Green. Ross, please, this is a hospital, ok? That actually means something here. Can somebody please go in? Ross, please, don\\'t be so scared of him! Oh! Oh! Oh my God! Ohhh, ohhh, wow, that ear and nose hair trimmer I got him was just money down the drain, huh? Oh, great, Are you gonna be ok? Hi! Uh. Did you call your parents? Oh good. What? What do you mean? You\\'ve been in my room before! Ok I gotta tell ya, it\\'s really weird when you use my whole name. Yeah. Yeah, just so weird seeing him like that, you know? I mean he is a doctor, you don\\'t expect doctors to get sick! Ow. I don\\'t want him to wake up alone! I should go to the hospital! What? Really, I shouldn\\'t feel guilty? Ok, maybe you\\'re right. Wait, wait, wait, wait. Would you stay here with me for a little while? Ok. Thank you for coming with me today. Rachel Green is very happy you\\'re in her room! I just don\\'t want to be alone tonight. Wait, we won\\'t know that until we do it, will we? Taking advantage? I\\'m giving you the advantage, enjoy! Wow. Ok. Mhm-mh! Sure. Hmm-hmm. Yep. FYI.. In the future, when a girl asks for some ill-advised sympathy sex... just do it. Really? Well, it seems to me if you\\'d done the right thing, I would not have woken up today feeling stupid and embarrassed, I would have woken up feeling comforted and satisfied! Oh stop that! Oh, really, well Ross, you know what? I am a big girl. I don\\'t need someone telling me what is best for me. Oh, really, really? Well, it wasn\\'t very good for me either. What? Oh, good. Okay... Hey listen, just before you go I-I again, I just wanna say \"thank you\" for coming with me. And also, you know I uh, I was thinking about what you said, you know, about the whole sex thing and... it\\'s probably not a great idea to go down that road again. It\\'s a shame though, I mean, when we did it, it was pretty good. Hey uhm, do you remember that one really great time...? You know it was you\\'re uhm... birthday... Well, I guess that\\'s all in the past, now. Not even one more time? No matter how much we want it. That\\'s what we decided. ...It\\'s kinda hard though! You know, when two people have a connection, you know, that\\'s... just seems like such a... waste. ...Ross? Just so you know... With us... it\\'s never off the table. Hi you guys. Ooh, Italian! Hey you guys... You\\'re never gonna believe it. This headhunter called me. I have a meeting tomorrow with Gucci. Gucci wants me. Congratulations! Ooh! Hi, I\\'m here to see mr Campbell... with Gucci. The reservation is probably under Gucci. It\\'s spelled like Gukki, which could be confusing. Oh my God! That\\'s my boss. You have to seat us somewhere else. But my... but my boss cannot see me. I\\'m interviewing for another job. Sssshhhh! Hi... I\\'m on a date... Yeah, it is. Yeah, you know, it\\'s tough. Single mom, career... You gotta get out there. Oh. Yes, hi! Hi! Excuse us. Okay. Oh, yeah... Oh he\\'s cute! Wha... My resumé? I wouldn\\'t... I wouldn\\'t call my online dating profile a resumé. Whatever happened to just singing for no reason? Huh? What? I-I don\\'t. No, I-I-I love it there. Oh! It\\'s not good. Well, I didn\\'t get the job at Gucci and I got fired from Ralph Lauren. Well, my boss was at the same restaurant where I was having my interview and he heard everything. So later he calls me to his office and he tells me that he\\'s gonna have to let me go, because I\\'m not a team player. And I said \"Wait a minute! Yes I am.\" and I had to sit there for 45 minutes while he proved that that in fact... was true. Oh it... good! Yeah, but I\\'m not gonna hear from that for a couple of days. Ah, all right. Here\\'s to Ross! No, it\\'s not that. I got fired today. And I didn\\'t get the other job. Oh! No, it\\'s okay, you didn\\'t know. Oh, thank you... Well, now I don\\'t have to. Ross, what is taking you so long? Mark? Oh my God! I\\'m fantastic. You remember Ross? Oh, well, you\\'re not catching me on my best day. No, but it\\'s good, you know, I\\'m gonna take some time off and do some charity work. Well, screw charity work. What\\'ve you got? Great! I\\'ll call ya! Oh my God! Ross! That\\'s Mark. From Bloomingdales? You were insanely jealous of him. Yes. Oh. What? You don\\'t want me to get a job? Ugh. Ross, you know what? Okay, let\\'s talk about it later, there comes security. Hi you guys! Oh, it was great. Mark is so sweet. Oh Ross, come on. He\\'s happily married. His wife just had twins. He offered me one. I know, it\\'s amazing. It\\'s amazing. It\\'s so much better than what I had at Ralph Lauren. The money is great... He offered me one. The job is in Paris. Oh, God! Please, somebody say something. I know, it\\'s huge, and it\\'s scary, and it\\'s... really far, far away from you guys, but this is such an incredible opportunity for me. And I\\'ve already talked to them about our situation with Emma, and they said they\\'ll do whatever we need to make us feel comfortable. I mean, I\\'ll fly back and forth, they\\'ll fly you out... Anything we want. Thank you! Thank you! I think it is. I got a really incredible job offer. It\\'s in Paris. Look, you guys... this is really, really important to me. And it means a lot if you could try to get on board. Joey, it would mean so... Joey... Hi. Oh, well, she\\'s asleep now. Stop forcing that thing on her. Oh, you\\'re not gonna believe what happened to me today! Ralph Lauren called, and gave me my job back! Yee. I mean, it was so weirdest thing. They fired me and then out of nowhere they just hire me back! I mean, that place must have been falling apart without me. No, I\\'m still going. When the Louis Vuitton people found out that Ralph Lauren wanted me back, the offered me more money! Isn\\'t that great? Hi! You are never going to believe what happened to me today. Ralph Lauren called again and they offered me more money. Yeah. It was the weirdest thing. Zelner called me and he said we\\'ll do everything we can to get you back. And that I should thank some Ron... I don\\'t even know what department that guy\\'s in. Well, I took it. Ye-ah. Yeah! You know, the money\\'s great. It\\'s certainly the easier choice... Yeah, you know, was I looking forward to going to Paris? Sure. You know, was I excited about working in the fashion capital of the world? Ooh, absolutely... Oh...! Yeah, but you know, this is... it\\'s fine. I\\'m fine going back to a job where I\\'ve pretty much gotten everything out of that I possibly can... Well yeah, but I mean, it was good scared though, you know? Like when I-moved-to-New-York scared. Or uhm, when I-found-out-I-was-gonna-have-Emma scared... But this is... fine. This is gonna be good. What? You really think so? But I already told Zelner that I would come back... All right. ALL RIGHT! I\\'m gonna do it. I\\'m gonna go to Paris. Yeah! I\\'m going to Paris. Thank you, Ross! Oh! Oh, I\\'m so happy. Ok! Can\\'t believe I\\'m risking this again, but you\\'re on! All right Joe, you remember the rules! Heads I win, tails you lose. Oh, that sounds good! It\\'s all done! I know... Honey, seriously, I did it all. The luggage that I\\'m taking is in the bedroom, this is Emma\\'s Paris stuff, these are the boxes that I\\'m having shipped, and that\\'s the sandwich that I made for the plane... Oh, well. Everything that I need is in here and my travel documents are on the counter organized in the order that I will be needing them. It should be right next to my plane ticket. What? Maybe I put it in here . Oh, oh, it\\'s not in there! Oh, no! I must have packed it in one of these boxes! Shoot. Oh, I can\\'t believe I did this! No, no, no. It\\'s ok. I\\'m gonna be fine. Well, I\\'ve been better. You guys are gonna come and visit me, right? I\\'m gonna miss you so much. You know what? Uhm, I have some goodbye stuff that I wanted to say to each of you and I was gonna save it until the end of the night, but come here . Oh, Pheebs, I don\\'t even know where to start. Oh, oh. . What is this? I\\'m gonna throw this away, but thank you so much for the gesture! I love you Phoebe. All right. Well, if I gonna do this, I\\'d better keep going. Ok. Monica? Can you come here with me for a minute? Mon... Okay... I\\'ve gotta... just say what it is I\\'m gonna say... None of the amazing things that have happened to me in the last ten years, would have happened if it wasn\\'t for you. No-one has been more like a sister to me... I wouldn\\'t know what I\\'m gonna do without you... I... I... I... Oh, I\\'m sure gonna miss pretending to laugh at your weird jokes that I don\\'t get. Well, these aren\\'t mine. Maybe Monica used to use them with... Well, I think you\\'re forgetting the kinkiest former resident of that room. Can I talk to you alone for a minute? Oh honey... Oh, you know what? Let\\'s not say anything else. I love you. Okay. Oh... Oh! Oh... Well... I think I\\'m gonna take off. Oh, you guys. This was an amazing night. Thank you so much. I love you. Good night. What? Ross... You really think I didn\\'t say goodbye to you because I don\\'t care? I cannot believe that after ten years, you do not know ONE thing about me. Because it is too damn hard Ross. I can\\'t even begin to explain to you how much I\\'m gonna miss you. When I think about not seeing you every day, it makes me not want to go... Okay, so if you think that I didn\\'t say goodbye to you because you don\\'t mean as much to me as everybody else, you\\'re wrong. It\\'s because you mean more to me. So there, all right, there\\'s your goodbye... Oh! What? WHAT? So if you think I didn\\'t say goodbye to you because you don\\'t mean as much to me as everybody else, you\\'re wrong. It\\'s because you mean more to me. What?! Shh.. Go back to sleep. I have to go home. It really was. You\\'ve learned some new moves! Ah. I know! Morning! Hey. Good. You? Chick and the duck? Didn\\'t they die... You too. Last night was just wonderful. I woke up today with the biggest smile on my face. Uh-huh. I know. It was just, it was just the perfect way to say goodbye. Hi! Hi! So I just dropped Emma off at my mom\\'s. No, we decided that I would go ahead and set up first, and then my mom would bring Emma to Paris on Sunday. Are you kidding? Eight hours with my mother talking about Atkins? Good luck, Emma! Yeah? Gunther... Oh... I love you too. Probably not in the same way, but I do. And, and when I\\'m in a café, having coffee, or I see a man with hair brighter than the sun, I\\'ll think of you. Aw. Oh... Bye guys. Hi! You guys, the car-service just got here. I can\\'t believe they\\'re not home yet! I have to catch my stupid plane. I wanna see the baby! Oh my God! Hi! Oh my gosh! Oh. What... What... Aw.. Oh my gosh. Wow, so beautiful. Oh, you guys, I can\\'t believe this. But I\\'ll leave now, or I\\'m gonna miss my plane. Me too. Oh, I\\'m just sorry I\\'m not gonna be around to watch you two attempt to handle this! Alright, I can\\'t say goodbye to you guys again. I love you all so much. I will. Ross, come here. I just want you to know.. Last night.. I\\'ll never forget it. Alright, now I really have to go. Okay. Au revoir! Oh, they\\'re gonna really hate me over there. Oh my God! I was so afraid I wasn\\'t gonna remember any of my high-school French, but I understood every word you just said! Oh. Oh, shoot. I had it. Oh, I can\\'t believe this. I have it, I have it, I have it. Oh, okay, I can\\'t find it, but I remember that I was in seat 32C, because that\\'s my bra-size. Okay, fine! But you know what? If I was in 36D, we would not be having this problem. Oh! Shoot! Damn it! Where is it? Oh! Oh! I found it! I found it! Hah! I found it! I told you I would find it! In your face! You\\'re a different person. Hello? Yeah. Phoebe? Is everything okay? What? Why? Oh, honey, I\\'m sure there\\'s nothing wrong with the plane. Alright, look, I have to go. I love you, and I will call you the minute I get to Paris. Oh, that was just my crazy friend. She told me I should get off the plane, because she had a feeling that there was something wrong with the left Philange. I wouldn\\'t worry about it. She\\'s always coming up with stuff like this, and you know what? She\\'s almost never right. Well... Wait, what are you doing? Could I get some peanuts? This is ridiculous! I... Yeah, okay. Oh my God... What.. What are you guys doing here? What? What? Ross, you\\'re scaring me. What\\'s going on? Yeah? What? Oh my God. I - I have to get on the plane. Yes, I do. They\\'re waiting for me, Ross. I can\\'t do this right now, I\\'m sorry. I\\'m sorry. I\\'m so sorry. Ross, hi. It\\'s me. I just got back on the plane. And I just feel awful. That is so not how I wanted things to end with us. It\\'s just that I wasn\\'t expecting to see you, and all of a sudden you\\'re there and saying these things... And... And now I\\'m just sitting here and thinking of all the stuff I should have said, and I didn\\'t. I mean, I didn\\'t even get to tell you that I love you too. Because of course I do. I love you. I love you. I love you. What am I doing? I love you! Oh, I\\'ve gotta see you. I\\'ve gotta get off this plane. Excuse me? I\\'m sorry. I\\'m really sorry, but I need to get off the plane, okay? I need to tell someone that I love love them. Oh, please, miss, you don\\'t understand! Oh, come on, miss, isn\\'t there any way that you can just let me off... I got off the plane. I do love you. Okay. \\'Cause this is where I wanna be, okay? No more messing around. I don\\'t wanna mess this up again. Okay. You and me, alright? This is it. I know. It seems smaller somehow. '" ], "application/vnd.google.colaboratory.intrinsic+json": { "type": "string" } }, "metadata": {}, "execution_count": 33 } ] }, { "cell_type": "code", "source": [ "stop = stopwords.words('english')\n", "def text_normalization(text):\n", " text = str(text).lower() # convert to all lower letters\n", " spl_char_text = re.sub(r'[^a-z]', ' ', text) # remove any special characters including numbers\n", " tokens = nltk.word_tokenize(spl_char_text) # tokenize words\n", " lema = wordnet.WordNetLemmatizer() # lemmatizer initiation\n", " tags_list = pos_tag(tokens, tagset = None) # parts of speech\n", " lema_words = []\n", " for token, pos_token in tags_list:\n", " if pos_token.startswith('V'): # if the tag from tag_list is a verb, assign 'v' to it's pos_val\n", " pos_val = 'v'\n", " elif pos_token.startswith('J'): # adjective\n", " pos_val = 'a'\n", " elif pos_token.startswith('R'): # adverb\n", " pos_val = 'r'\n", " else: # otherwise it must be a noun\n", " pos_val = 'n'\n", " lema_token = lema.lemmatize(token, pos_val) # performing lemmatization\n", " lema_words.append(lema_token) # addid the lemmatized words into our list\n", "\n", " lema_words = [word for word in lema_words if word not in stop]\n", "\n", " # return \" \".join(lema_words) # return our list as a human sentence\n", " return lema_words" ], "metadata": { "id": "52iC6vtEYC-j" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "tokenized_word = nltk.word_tokenize(text)\n", "print(tokenized_word)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "Z6rIYx7Za23e", "outputId": "27b55079-2cec-4fb3-d43e-823dc91b51aa" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "['Oh', 'God', 'Monica', 'hi', '!', 'I', 'just', 'went', 'to', 'your', 'building', 'and', 'you', 'were', \"n't\", 'there', 'and', 'then', 'this', 'guy', 'with', 'a', 'big', 'hammer', 'said', 'you', 'might', 'be', 'here', 'and', 'you', 'are', ',', 'you', 'are', '!', 'Hi', ',', 'sure', '!', 'Oh', 'God', '...', 'well', ',', 'it', 'started', 'about', 'a', 'half', 'hour', 'before', 'the', 'wedding', '.', 'I', 'was', 'in', 'the', 'room', 'where', 'we', 'were', 'keeping', 'all', 'the', 'presents', ',', 'and', 'I', 'was', 'looking', 'at', 'this', 'gravy', 'boat', '.', 'This', 'really', 'gorgeous', 'Lamauge', 'gravy', 'boat', '.', 'When', 'all', 'of', 'a', 'sudden-', 'Sweet', \"'n\", \"'\", 'Lo', '?', '-', 'I', 'realised', 'that', 'I', 'was', 'more', 'turned', 'on', 'by', 'this', 'gravy', 'boat', 'than', 'by', 'Barry', '!', 'And', 'then', 'I', 'got', 'really', 'freaked', 'out', ',', 'and', 'that', \"'s\", 'when', 'it', 'hit', 'me', ':', 'how', 'much', 'Barry', 'looks', 'like', 'Mr', '.', 'Potato', 'Head', '.', \"Y'know\", ',', 'I', 'mean', ',', 'he', 'always', 'looked', 'familiar', ',', 'but', '...', 'Anyway', ',', 'I', 'just', 'had', 'to', 'get', 'out', 'of', 'there', ',', 'and', 'I', 'started', 'wondering', \"'Why\", 'am', 'I', 'doing', 'this', ',', 'and', 'who', 'am', 'I', 'doing', 'this', 'for', '?', \"'\", '.', 'So', 'anyway', 'I', 'just', 'did', \"n't\", 'know', 'where', 'to', 'go', ',', 'and', 'I', 'know', 'that', 'you', 'and', 'I', 'have', 'kinda', 'drifted', 'apart', ',', 'but', 'you', \"'re\", 'the', 'only', 'person', 'I', 'knew', 'who', 'lived', 'here', 'in', 'the', 'city', '.', 'Ooh', ',', 'I', 'was', 'kinda', 'hoping', 'that', 'would', \"n't\", 'be', 'an', 'issue', '...', 'Daddy', ',', 'I', 'just', '...', 'I', 'ca', \"n't\", 'marry', 'him', '!', 'I', \"'m\", 'sorry', '.', 'I', 'just', 'do', \"n't\", 'love', 'him', '.', 'Well', ',', 'it', 'matters', 'to', 'me', '!', \"C'mon\", 'Daddy', ',', 'listen', 'to', 'me', '!', 'All', 'of', 'my', 'life', ',', 'everyone', 'has', 'always', 'told', 'me', ',', \"'You\", \"'re\", 'a', 'shoe', '!', 'You', \"'re\", 'a', 'shoe', ',', 'you', \"'re\", 'a', 'shoe', ',', 'you', \"'re\", 'a', 'shoe', '!', \"'\", '.', 'And', 'today', 'I', 'just', 'stopped', 'and', 'I', 'said', ',', \"'What\", 'if', 'I', 'do', \"n't\", 'wan', 'na', 'be', 'a', 'shoe', '?', 'What', 'if', 'I', 'wan', 'na', 'be', 'a-', 'a', 'purse', ',', \"y'know\", '?', 'Or', 'a-', 'or', 'a', 'hat', '!', 'No', ',', 'I', \"'m\", 'not', 'saying', 'I', 'want', 'you', 'to', 'buy', 'me', 'a', 'hat', ',', 'I', \"'m\", 'saying', 'I', 'am', 'a', 'ha-', 'It', \"'s\", 'a', 'metaphor', ',', 'Daddy', '!', 'Look', 'Daddy', ',', 'it', \"'s\", 'my', 'life', '.', 'Well', 'maybe', 'I', \"'ll\", 'just', 'stay', 'here', 'with', 'Monica', '.', 'Well', ',', 'maybe', 'that', \"'s\", 'my', 'decision', '.', 'Well', ',', 'maybe', 'I', 'do', \"n't\", 'need', 'your', 'money', '.', 'Wait', '!', '!', 'Wait', ',', 'I', 'said', 'maybe', '!', '!', 'I', \"'m\", 'all', 'better', 'now', '.', 'Please', ',', 'no', ',', 'go', ',', 'that', \"'d\", 'be', 'fine', '!', 'Well', ',', 'I', 'was', 'kinda', 'supposed', 'to', 'be', 'headed', 'for', 'Aruba', 'on', 'my', 'honeymoon', ',', 'so', 'nothing', '!', 'Well', 'actually', 'thanks', ',', 'but', 'I', 'think', 'I', \"'m\", 'just', 'gon', 'na', 'hang', 'out', 'here', 'tonight', '..', 'Barry', ',', 'I', \"'m\", 'sorry', '...', 'I', 'am', 'so', 'sorry', '...', 'I', 'know', 'you', 'probably', 'think', 'that', 'this', 'is', 'all', 'about', 'what', 'I', 'said', 'the', 'other', 'day', 'about', 'you', 'making', 'love', 'with', 'your', 'socks', 'on', ',', 'but', 'it', 'is', \"n't\", '...', 'it', 'is', \"n't\", ',', 'it', \"'s\", 'about', 'me', ',', 'and', 'I', 'ju-', 'Hi', ',', 'machine', 'cut', 'me', 'off', 'again', '...', 'anyway', '...', 'Oh', '...', 'see', '...', 'but', 'Joanie', 'loved', 'Chachi', '!', 'That', \"'s\", 'the', 'difference', '!', 'Is', \"n't\", 'this', 'amazing', '?', 'I', 'mean', ',', 'I', 'have', 'never', 'made', 'coffee', 'before', 'in', 'my', 'entire', 'life', '.', 'Hello', ',', 'Paul', '.', 'So', ',', 'like', ',', 'you', 'guys', 'all', 'have', 'jobs', '?', 'Wow', '!', 'Would', 'I', 'have', 'seen', 'you', 'in', 'anything', '?', 'I', 'can', 'see', 'that', '.', 'You', 'look', 'like', 'you', 'slept', 'with', 'a', 'hanger', 'in', 'your', 'mouth', '.', 'Oh', ',', 'yeah', '.', 'Oh', 'wow', '.', 'Are', 'you', 'in', 'trouble', '.', 'Oh', ',', 'look', ',', 'wish', 'me', 'luck', '!', 'I', \"'m\", 'gon', 'na', 'go', 'get', 'one', 'of', 'those', 'job', 'things', '.', 'Guess', 'what', '?', 'Are', 'you', 'kidding', '?', 'I', \"'m\", 'trained', 'for', 'nothing', '!', 'I', 'was', 'laughed', 'out', 'of', 'twelve', 'interviews', 'today', '.', 'You', 'would', 'be', 'too', 'if', 'you', 'found', 'John', 'and', 'David', 'boots', 'on', 'sale', ',', 'fifty', 'percent', 'off', '!', 'They', \"'re\", 'my', 'new', \"'\", 'I', 'do', \"n't\", 'need', 'a', 'job', ',', 'I', 'do', \"n't\", 'need', 'my', 'parents', ',', 'I', \"'ve\", 'got', 'great', 'boots', \"'\", 'boots', '!', 'Uh', ',', 'credit', 'card', '.', 'Um', '...', 'my', '...', 'father', '.', 'I', 'know', 'that', '.', 'That', \"'s\", 'why', 'I', 'was', 'getting', 'married', '.', 'Thank', 'you', '.', 'I', 'do', \"n't\", 'think', 'so', '.', 'You', 'gon', 'na', 'crash', 'on', 'the', 'couch', '?', 'Hey', 'Mon', ',', 'look', 'what', 'I', 'just', 'found', 'on', 'the', 'floor', '.', 'What', '?', 'Sorry-', 'No', ',', 'you', 'have', 'it', ',', 'really', ',', 'I', 'do', \"n't\", 'want', 'it-', 'Okay', '.', 'I', 'knew', '.', 'I', 'did', '.', 'Yeah', ',', 'maybe', '...', 'Goodnight', '.', 'Would', 'anybody', 'like', 'more', 'coffee', '?', 'I', \"'m\", 'just', 'serving', 'it', '.', 'Everything', 'you', 'need', 'to', 'know', 'is', 'in', 'that', 'first', 'kiss', '.', 'Yeah', ',', 'well', ',', 'word', 'of', 'advice', ':', 'Bring', 'back', 'the', 'comedian', '.', 'Otherwise', 'next', 'time', 'you', \"'re\", 'gon', 'na', 'find', 'yourself', 'sitting', 'at', 'home', ',', 'listening', 'to', 'that', 'album', 'alone', '.', 'Has', 'anybody', 'seen', 'my', 'engagement', 'ring', '?', 'Oh', 'God', ',', 'oh', 'God', ',', 'oh', 'God', 'oh', 'God', 'oh', 'God', 'oh', 'God', '....', 'Oh', ',', 'like', 'I', 'was', \"n't\", 'dreading', 'tomorrow', 'enough', ',', 'having', 'to', 'give', 'it', 'back', 'to', 'him', '...', \"'Hi\", 'Barry', '!', 'Remember', 'me', '?', 'I', \"'m\", 'the', 'girl', 'in', 'the', 'veil', 'who', 'stomped', 'on', 'your', 'heart', 'in', 'front', 'of', 'your', 'entire', 'family', '!', \"'\", 'Oh', 'God', 'and', 'now', 'I', \"'m\", 'gon', 'na', 'have', 'to', 'return', 'the', 'ring', ',', 'without', 'the', 'ring', ',', 'which', 'makes', 'it', 'so', 'much', 'harder', '...', 'I', 'know', 'I', 'had', 'it', 'this', 'morning', ',', 'and', 'I', 'know', 'I', 'had', 'it', 'when', 'I', 'was', 'in', 'the', 'kitchen', 'with', '...', 'Ohhhhh', ',', 'do', \"n't\", 'be', 'mad', '...', 'Oh', ',', 'I', 'am', 'sorry', '...', 'Oh', ',', 'but', 'look', 'how', 'straight', 'those', 'noodles', 'are', '!', 'Well', 'now', ',', 'how-how', 'do', 'you', 'fit', 'into', 'this', 'whole', 'thing', '?', 'So', 'what', 'are', 'you', 'gon', 'na', 'do', '?', 'You', \"'re\", 'twins', '?', 'All', 'right', ',', 'you', 'guys', ',', 'I', 'kinda', 'got', 'ta', 'clean', 'up', 'now', '.', 'The', 'lights', ',', 'please', '..', 'I', \"'m\", 'just', 'cleaning', 'up', '.', 'Uh', '..', 'okay', ',', 'sure', '!', 'Thanks', '!', 'Oh', '..', 'a', 'little', '..', 'A', 'lot', '.', 'So', ',', 'got', 'any', 'advice', '?', \"Y'know\", ',', 'as', 'someone', 'who', \"'s\", 'recently', 'been-', 'dumped', '?', 'Oh', ',', 'you', \"'ve\", 'got', 'Carol', 'tomorrow', '..', 'When', 'did', 'it', 'get', 'so', 'complicated', '?', 'Remember', 'when', 'we', 'were', 'in', 'high', 'school', 'together', '?', 'I', 'mean', ',', 'did', \"n't\", 'you', 'think', 'you', 'were', 'just', 'gon', 'na', 'meet', 'somone', ',', 'fall', 'in', 'love-', 'and', 'that', \"'d\", 'be', 'it', '?', '..', 'Ross', '?', 'Oh', '!', 'Man', ',', 'I', 'never', 'thought', 'I', \"'d\", 'be', 'here', '..', 'Barry', '?', 'Are', 'you', 'sure', '?', \"I'm-\", 'uh-', 'I', \"'m\", 'okay', '...', 'You', 'look', 'great', '!', 'I', 'dumped', 'him', '.', 'Oh', ',', 'not', 'much', '.', 'I-I', 'got', 'a', 'job', '.', 'Why', 'are-', 'why', 'are', 'you', 'so', 'tanned', '?', 'Oh', 'no', '.', 'You', 'went', 'on', 'our', 'honeymoon', 'alone', '?', 'Mindy', '?', '!', 'My', 'maid', 'of', 'honour', ',', 'Mindy', '?', '!', 'Oh', '!', 'Well', ',', 'um', '..', 'You', \"'ve\", 'got', 'plugs', '!', 'And', 'you', \"'ve\", 'got', 'lenses', '!', 'But', 'you', 'hate', 'sticking', 'your', 'finger', 'in', 'your', 'eye', '!', 'Okay', '..', 'Wow', '.', 'What', '?', 'Anyway', ',', 'um', ',', 'I', 'guess', 'this', 'belongs', 'to', 'you', '.', 'And', 'thank', 'you', 'for', 'giving', 'it', 'to', 'me', '.', 'Hi', ',', 'Mindy', '.', 'Hi', ',', 'it-it', \"'s\", 'Rachel', '.', 'Yeah', ',', 'I', \"'m\", 'fine', '.', 'I-I', 'saw', 'Barry', 'today', '.', 'Oh', ',', 'yeah', ',', 'yeah', 'he-he', 'told', 'me', '.', 'No', ',', 'no', ',', 'it', \"'s\", 'okay', '.', 'I', 'hope', 'you', 'two', 'are', 'very', 'happy', ',', 'I', 'really', 'do', '.', 'Oh', ',', 'oh', ',', 'and', 'Mind', ',', \"y'know\", ',', 'if-if', 'everything', 'works', 'out', ',', 'and', 'you', 'guys', 'end', 'up', 'getting', 'married', 'and', 'having', 'kids-', 'and', 'everything-', 'I', 'just', 'hope', 'they', 'have', 'his', 'old', 'hairline', 'and', 'your', 'old', 'nose', '.', 'Okay', ',', 'I', 'know', 'it', 'was', 'a', 'cheap', 'shot', ',', 'but', 'I', 'feel', 'SO', 'much', 'better', 'now', '.', 'What', '?', 'He', 'said', \"'we\", 'should', 'do', 'it', 'again', \"'\", ',', 'that', \"'s\", 'good', ',', 'right', '?', 'Since', 'when', '?', 'And', 'everybody', 'knows', 'this', '?', 'Alright', ',', 'do', \"n't\", 'tell', 'me', ',', 'do', \"n't\", 'tell', 'me', '!', 'Decaf', 'cappucino', 'for', 'Joey', '..', 'Coffee', 'black', '..', 'Late', '..', 'And', 'an', 'iced', 'tea', '.', 'I', \"'m\", 'getting', 'pretty', 'good', 'at', 'this', '!', 'Good', 'for', 'me', '!', 'Yeah', ',', 'but', 'if', 'you', 'spent', 'it', ',', 'it', 'would', 'be', 'like', 'shopping', '!', 'Chandler', ',', 'what', 'are', 'you', 'doing', '?', 'This', 'Alan', 'again', '?', 'How', \"'s\", 'it', 'goin', \"'\", '?', 'Well', ',', 'then', 'can', 'we', 'meet', 'him', '?', 'What', 'bank', 'is', 'this', '?', 'And', 'did', 'you', 'notice', '...', '?', 'What', 'future', 'boyfriends', '?', 'Nono', ',', 'I', 'th-', 'I', 'think', 'this', 'could', 'be', ',', \"y'know\", ',', 'it', '.', 'I', 'mean', ',', 'it-it', 'was', 'like', ',', 'it', 'was', 'like', 'he', 'made', 'us', 'into', 'a', 'team', '.', 'Well', ',', 'no', '.', 'That', \"'s\", 'impossible', '.', 'You', 'can', 'never', 'be', 'too', 'Alan', '.', 'It', \"'s\", 'worse', 'than', 'the', 'thumb', '!', 'Well', ',', 'I-I', 'could', 'live', 'without', 'it', '.', '``', 'Indeed', 'there', 'is', \"n't\", \"''\", '...', 'I', 'should', 'really', 'get', 'back', 'to', 'work', '.', 'Ohh-ho-hooohhh', '.', 'The', 'hair', 'comes', 'out', ',', 'and', 'the', 'gloves', 'come', 'on', '.', 'Chandler', '?', 'It', \"'s\", 'Alan', ',', 'he', 'wants', 'to', 'speak', 'to', 'you', '.', 'God', ',', 'he', \"'s\", 'good', '.', 'Yeah', '.', 'I', 'think', 'he', \"'s\", 'across', 'the', 'hall', '.', 'Uh', ',', 'Joey', '..', 'We', 'did', \"n't\", 'change', '..', 'I', 'just', 'ca', \"n't\", 'believe', 'this', '!', 'I', 'mean', ',', 'with', 'the', 'holidays', 'coming', 'up-', 'I', 'wanted', 'him', 'to', 'meet', 'my', 'family-', 'Remember', 'when', 'we', 'went', 'to', 'Central', 'Park', 'and', 'rented', 'boats', '?', '..', 'That', 'was', 'fun', '.', 'See', ',', 'there', \"'s\", 'always', 'one', 'guy', '.', '``', 'If', 'I', 'had', 'a', 'wish', ',', 'I', \"'d\", 'wish', 'for', 'three', 'more', 'wishes', '.', \"''\", 'Look', 'look', 'look', 'look', 'look', ',', 'my', 'first', 'pay', 'check', '!', 'Look', 'at', 'the', 'window', ',', 'there', \"'s\", 'my', 'name', '!', 'Hi', ',', 'me', '!', 'God', ',', 'is', \"n't\", 'this', 'exciting', '?', 'I', 'earned', 'this', '.', 'I', 'wiped', 'tables', 'for', 'it', ',', 'I', 'steamed', 'milk', 'for', 'it', ',', 'and', 'it', 'was', 'totally-', '-not', 'worth', 'it', '.', 'Who', \"'s\", 'FICA', '?', 'Why', \"'s\", 'he', 'getting', 'all', 'my', 'money', '?', 'I', 'mean', ',', 'what-', 'Chandler', ',', 'look', 'at', 'that', '.', 'Oh', 'my', 'God', '!', 'What', 'are', 'you', 'guys', 'doing', 'here', '?', 'LESLIE', ')', 'Look', 'at', 'you', ',', 'you', 'are', 'so', 'big', 'I', 'ca', \"n't\", 'believe', 'it', '!', 'So', 'what', \"'s\", 'going', 'on', 'with', 'you', '?', 'So', \"c'mon\", ',', 'you', 'guys', ',', 'tell', 'me', 'all', 'the', 'dirt', '!', 'Okay', '.', 'What', '?', 'Guys', ',', 'I', \"'m\", 'not', '.', 'I', \"'m\", 'not', '!', 'This', 'is', 'what', 'I', \"'m\", 'doing', 'now', '.', 'I', \"'ve\", 'got', 'this', 'job-', 'Okay', ',', 'I', \"'m\", 'not', 'just', 'waitressing', '.', 'I', \"'m\", '..', 'I', ',', 'um', '...', 'I', 'write', 'the', 'specials', 'on', 'the', 'specials', 'board', ',', 'and', ',', 'uh', '...', 'and', 'I', ',', 'uh', '...', 'I', 'take', 'the', 'uh', 'dead', 'flowers', 'out', 'of', 'the', 'vase', '...', 'Oh', ',', 'and', ',', 'um', ',', 'sometimes', 'Artelle', 'lets', 'me', 'put', 'the', 'little', 'chocolate', 'blobbies', 'on', 'the', 'cookies', '.', 'What', \"'s\", 'that', '?', 'Okay', '.', 'Oh', ',', 'God', ',', 'ask', 'them', 'what', 'they', 'want', '.', 'But', 'I', 'have', \"n't\", 'used', 'my', 'card', 'in', 'weeks', '!', 'They', 'wan', 'na', 'know', 'if', 'I', \"'m\", 'okay', '.', 'Okay', '..', 'they', 'wan', 'na', 'know', 'if', 'I', \"'m\", 'okay', ',', 'okay', ',', 'let', \"'s\", 'see', '.', 'Well', ',', 'let', \"'s\", 'see', ',', 'the', 'FICA', 'guys', 'took', 'all', 'my', 'money', ',', 'everyone', 'I', 'know', 'is', 'either', 'getting', 'married', ',', 'or', 'getting', 'promoted', ',', 'or', 'getting', 'pregnant', ',', 'and', 'I', \"'m\", 'getting', 'coffee', '!', 'And', 'it', \"'s\", 'not', 'even', 'for', 'me', '!', 'So', 'if', 'that', 'sounds', 'like', 'I', \"'m\", 'okay', ',', 'okay', ',', 'then', 'you', 'can', 'tell', 'them', 'I', \"'m\", 'okay', ',', 'okay', '?', 'Alright', ',', \"c'mon\", '!', 'Let', \"'s\", 'play', 'Twister', '!', 'Monica', ',', 'what', 'is', 'so', 'amazing', '?', 'I', 'gave', 'up', ',', 'like', ',', 'everything', '.', 'And', 'for', 'what', '?', '...', 'Jack', 'from', 'downstairs', '?', 'Okay', ',', 'but', 'Pheebs', ',', 'Pheebs', ',', 'Jack', 'gave', 'up', 'a', 'cow', ',', 'I', 'gave', 'up', 'an', 'orthodontist', '.', 'Okay', ',', 'I-I-I', 'know', ',', 'I', 'know', 'I', 'did', \"n't\", 'love', 'him-', 'But', 'see', ',', 'it', 'was', 'a', 'plan', '.', \"Y'know\", ',', 'it', 'was', 'clear', '.', 'It', 'was', 'figured', 'out', ',', 'and', 'now', 'everything', \"'s\", 'just', 'kinda', 'like-', 'Yeah', '.', 'Okay', ',', 'but', 'Monica', ',', 'what', 'if-', 'what', 'if', 'it', 'does', \"n't\", 'come', 'together', '?', 'Okay', ',', 'see', ',', 'see', ',', 'you', 'guys', ',', 'what', 'if', 'we', 'do', \"n't\", 'get', 'magic', 'beans', '?', 'I', 'mean', ',', 'what', 'if', 'all', 'we', \"'ve\", 'got', 'are', '..', 'beans', '?', 'I', \"'m\", 'so', 'sorry', ',', 'you', 'guys', '.', 'I', 'did', \"n't\", 'mean', 'to', 'bring', 'you', 'down', '.', 'Thank', 'God', '.', 'Food', '.', 'No', ',', 'no', ',', 'that', \"'s\", 'not', 'what', 'we', 'ordered', '...', 'We', 'ordered', 'a', 'fat-free', 'crust', 'with', 'extra', 'cheese', '.', 'Uh', ',', 'Pheebs', '?', 'Who', \"'s\", 'George', 'Snuffalopagus', '?', 'Hello', '?', 'Who', 'are', 'we', 'spying', 'on', '?', 'Oh', ',', 'him', ',', 'the', 'little', 'guy', '?', 'Oh', ',', 'I', 'love', 'him', '!', 'Yeah', '.', 'Oh', 'please', ',', 'they', \"'re\", 'having', 'sex', '.', 'So', ',', 'whaddya', 'think', 'George', 'is', 'like', '?', 'How', 'long', '?', 'Okay', ',', 'okay', ',', 'okay', ',', 'I', 'got', 'one', '!', 'Anyway-', 'The', 'valentine', 'Tommy', 'Rollerson', 'left', 'in', 'your', 'locker', 'was', 'really', 'from', 'me', '.', 'Hello', '?', 'Like', 'he', 'was', 'really', 'gon', 'na', 'send', 'you', 'one', '?', 'She', 'was', 'a', 'big', 'girl', '.', 'I', 'was', 'laughing', '!', 'You', 'made', 'me', 'laugh', '!', 'He', 'is', 'so', 'cute', '!', 'Oh', ',', 'okay', '.', 'Will', 'you', 'take', 'my', 'place', '?', 'Nooo', '!', 'Hello', '?', 'Oh', ',', 'yeah', ',', 'no', ',', 'I', 'know', ',', 'I-I', 'have', \"n't\", 'been', 'using', 'it', 'much', '.', 'Oh', ',', 'well', ',', 'thanks', ',', 'but', ',', 'I', \"'m\", 'okay', ',', 'really', '.', 'I', \"'ve\", 'got', 'magic', 'beans', '.', 'Never-never', 'mind', '.', 'Ohhh', '...', 'I', \"'m\", 'fine', '.', 'Ooh', '!', 'Look', '!', 'Look', '!', 'Look', '!', 'Look', ',', 'there', \"'s\", 'Joey', \"'s\", 'picture', '!', 'This', 'is', 'so', 'exciting', '!', 'God', '.', 'I', 'feel', 'violated', '.', 'Oh', ',', \"c'mon\", '.', 'She', \"'s\", 'a', 'person', ',', 'you', 'can', 'do', 'it', '!', 'What', 'is', 'it', '?', 'Tah-daaah', '!', 'Look', '!', 'I', 'cleaned', '!', 'I', 'did', 'the', 'windows', ',', 'I', 'did', 'the', 'floors', '...', 'I', 'even', 'used', 'all', 'the', 'attachments', 'on', 'the', 'vacuum', ',', 'except', 'that', 'little', 'round', 'one', 'with', 'the', 'bristles', ',', 'I', 'do', \"n't\", 'know', 'what', 'that', \"'s\", 'for', '.', 'Well', ',', 'whaddya', 'think', '?', 'I', 'dunno', '..', 'I-I', 'thought', 'it', 'looked', 'better', 'there', '.', 'And', 'I-', 'and', 'also', ',', 'it', \"'s\", 'an', 'extra', 'seat', 'around', 'the', 'coffee', 'table', '.', 'Okay', ',', 'uh', ',', 'you', 'let', 'me', 'go', 'grocery', 'shopping', ',', 'and', 'I', 'buy', 'laundry', 'detergent', ',', 'but', 'it', \"'s\", 'not', 'the', 'one', 'with', 'the', 'easy-pour', 'spout', '.', '..', 'You', \"'re\", ',', 'you', \"'re\", \"'mah\", 'mah', 'mah', \"'\", 'what', '?', 'Who', 'is', 'being', 'loud', '?', 'Ooh', ',', 'do', 'I', 'sense', 'a', 'little', 'bit', 'of', 'resentment', '?', 'Oh', ',', 'Joey', ',', 'you', 'know', 'what', ',', 'no-one', 'is', 'gon', 'na', 'be', 'able', 'to', 'tell', '.', 'Uh', ',', 'Mon', ',', 'you-you', 'gon', 'na', 'leave', 'your', 'shoes', 'out', 'here', '?', 'Really', '?', 'Just', 'casually', 'strewn', 'about', 'in', 'that', 'reckless', 'haphazard', 'manner', '?', 'Everybody', '.', 'Shh', ',', 'shhh', '.', 'Err', ',', 'Central', 'Perk', 'is', 'proud', 'to', 'present', 'the', 'music', 'of', 'Miss', 'Phoebe', 'Buffay', '.', 'Wow', ',', 'this', 'is', 'so', 'cool', 'you', 'guys', ',', 'the', 'entire', 'city', 'is', 'blacked', 'out', '.', 'Wow', ',', 'you', 'guys', 'this', 'is', 'big', '.', 'Ooo', 'Ooo', '.', 'That', 'had', 'to', 'hurt', '.', 'Ok', 'ok', ',', 'somebody', 'somebody', '.', 'A', 'pool', 'table', '?', 'Er', 'Rossss', '?', 'Oh', 'come', 'on', ',', 'I', 'already', 'went', '.', 'Yes', 'I', 'did', '!', 'Come', 'on', '.', 'Alright', ',', 'errrr', 'the', 'weirdest', 'place', '.', '.', '.', '.', 'would', 'have', 'to', 'beeee', '.', '.', '.', '.', 'oh', '.', '.', '.', 'the', 'foot', 'of', 'the', 'bed', '.', 'Huh', ',', 'I', '`', 've', 'just', 'never', '.', '.', '.', 'had', 'a', 'relationship', 'with', 'that', 'kind', 'of', 'passion', ',', 'you', 'know', ',', 'where', ',', 'where', 'you', 'have', 'to', 'have', 'somebody', 'right', 'there', 'in', 'the', 'middle', 'of', 'a', 'theme', 'park', '.', 'Alright', 'well', ',', 'see', ',', 'I', 'mean', ',', 'Barry', 'wouldn', '`', 't', 'even', 'kiss', 'me', 'on', 'a', 'minature', 'golf', 'course', '.', 'No', '..', 'he', 'said', 'we', 'were', 'holding', 'up', 'the', 'people', 'behind', 'us', '.', 'I', 'mean', 'd', '`', 'you', 'think', '.', 'there', 'are', 'people', 'that', 'go', 'through', 'life', 'never', 'having', 'that', 'kind', 'of', '.', 'Really', '?', 'Yeah', ',', 'right', '!', 'Ok.', 'You', 'don', '`', 't', '?', 'Really', '?', 'Ya', 'do', '?', 'Oh', 'Ross', ',', 'your', 'so', 'great', ',', 'nuh', '.', 'What', 'are', 'we', 'Shushing', '?', 'What', '?', 'What', '?', 'Ahhhhhhohhh', '.', 'Ur', 'huh', 'Erm', ',', 'so', 'nice', '.', 'Ok.', 'Ohhhhh', '.', 'Ohhh', 'look', 'at', 'that', 'little', 'girl', 'ohhh', '.', 'During', 'a', 'blackout', '?', 'She', '`', 'll', 'get', 'trampled', '!', 'Oh', ',', 'no', 'the', 'Melons', ',', 'they', 'hate', 'all', 'living', 'things', '!', 'Hi', ',', 'we', 'just', 'found', 'this', 'cat', ',', 'and', 'we', 'er', ',', 'looking', 'for', 'the', 'owner', '.', 'Bob', 'buttons', '?', 'Cah', '.', 'Here', 'kitty', 'kitty', 'kitty', ',', 'here', 'kitty', 'kitty', ',', 'where', '`', 'd', 'ya', 'go', 'little', 'kitty', 'kitty', 'kitty', '.', 'Kitty', ',', 'kitty', ',', 'kitty', ',', 'come', '`', 'ere', 'kitty', 'kitty', 'kitty', 'kitty', 'kitty', 'kitty', 'kitty', '..', 'kitty', 'kitty', '..', 'hi', '?', 'Oh', 'wow', '!', 'Everybody', ',', 'this', 'is', 'Paolo', '.', 'Paolo', 'I', 'want', 'you', 'to', 'meet', 'my', 'friends', ',', 'this', 'is', 'Monica', 'And', 'Joey', '.', 'And', ',', 'and', 'Ross', '.', 'Hur', ',', 'hur', 'hur', ',', 'he', 'doesn', '`', 't', 'speak', 'much', 'English', '.', 'Ohhhh', ',', 'look', 'at', 'that', '.', 'ROSS', ':', 'So', ',', 'er', ',', 'where', 'did', 'er', ',', 'Paolo', 'come', 'from', '..', 'Oh', ',', '..', 'Italy', ',', 'I', 'think', '?', 'Hur', 'hur', 'hur', '.', 'Well', ',', 'the', 'that', 'cat', ',', 'the', 'ca', 'cat', ',', 'turned', 'out', 'to', 'be', 'Paolo', '`', 's', 'cat', ',', 'Int', 'that', 'funny', '.', 'I', 'think', 'it', '`', 's', 'his', 'cat', '.', 'Oh', 'I', 'found', 'him', '.', 'It', 'was', 'Paolo', '`', 's', 'cat', '.', 'Oh', 'Paolo', ',', 'this', 'is', 'Phoebe', '.', 'Hur', 'hur', 'hur', 'hur', '.', 'Er', 'Ohhhhh', '.', 'I', 'have', 'absolutely', 'no', 'idea', '.', 'Oh', 'my', 'God', ',', 'you', 'guys', ',', 'whata', 'my', 'doin', '`', 'whata', 'my', 'doin', '`', 'this', 'is', 'so', 'un-meeeeee', '?', 'Cah', '.', 'God', ',', 'the', 'first', 'time', 'he', 'smiled', ',', 'at', 'me', ',', 'those', 'three', 'seconds', 'were', 'more', 'exciting', 'than', 'three', 'weeks', 'in', 'Burmuda', 'with', 'Barry', '.', 'Oh', ',', 'God', ',', 'you', 'know', ',', 'I', 'know', 'It', '`', 's', 'totally', 'superfical', ',', 'and', 'we', 'have', 'nothing', 'in', 'common', ',', 'and', 'we', 'don', '`', 't', 'even', 'speak', 'the', 'same', 'language', ',', 'but', 'Gohohohodddddd', '.', 'Whoa', 'ha', 'ha', 'ha', 'ha', 'ha', 'harrrrrr', '!', 'Um', '...', 'yeah', '.', 'Well', ',', 'I', 'mean', ',', 'when', 'I', 'first', 'met', 'you', ',', \"y'know\", ',', 'I', 'thought', 'maybe', ',', 'possibly', ',', 'you', 'might', 'be', '...', 'Yeah', ',', 'but', 'then', 'you', 'spent', 'Phoebe', \"'s\", 'entire', 'birthday', 'party', 'talking', 'to', 'my', 'breasts', ',', 'so', 'then', 'I', 'figured', 'maybe', 'not', '.', 'Oh', 'my', 'God', '!', 'Calling', 'from', 'Rome', '!', 'Bon', 'giorno', ',', 'caro', 'mio', '.', 'Monica', ',', 'your', 'dad', 'just', 'beeped', 'in', ',', 'but', 'can', 'you', 'make', 'it', 'quick', '?', 'Talking', 'to', 'Rome', '.', 'I', \"'m\", 'talking', 'to', 'Rome', '.', 'Yes', ',', 'Chandler', ',', 'that', \"'s\", 'exactly', 'what', 'it', 'is', '.', 'It', \"'s\", 'your', 'hair', '.', 'So', ',', 'um', ',', 'did', 'she', '...', 'Aw', '.', 'Hey', ',', 'Pheebs', ',', 'want', 'this', '?', 'Sure', '.', 'I', 'just', 'sharpened', 'her', 'this', 'morning', '.', 'Oh', ',', 'you-you', 'mean', 'your', 'earrings', '?', 'Hm-m', '.', 'Yes', '.', 'Paolo', 'sent', 'them', 'from', 'Italy', '.', 'Oh', 'no', '!', 'My', 'new', 'Paolo', 'shoes', '!', 'Oh', ',', 'well', 'you', 'know', 'who', 'I', 'love', 'the', 'most', '?', 'You', '!', 'Pheebs', ',', 'could', 'you', 'maybe', 'hand', 'me', 'a', 'cracker', '?', 'Hey', ',', 'who', \"'s\", 'this', 'little', 'naked', 'guy', '?', 'Aww', ',', 'look', 'at', 'the', 'little', 'thing', '.', 'Wow', ',', 'Monica', ',', 'you', 'look', 'just', 'like', 'your', 'grandmother', '.', 'How', 'old', 'was', 'she', 'there', '?', 'It', \"'s\", 'so', 'that', 'I', 'can', 'spend', 'Thanksgiving', 'with', 'my', 'family', '.', 'See', ',', 'every', 'year', 'we', 'go', 'skiing', 'in', 'Vail', ',', 'and', 'normally', 'my', 'father', 'pays', 'for', 'my', 'ticket', ',', 'but', 'I', 'sort', 'of', 'started', 'the', 'whole', 'independence', 'thing', ',', 'you', 'know', ',', 'which', 'is', 'actually', 'why', 'I', 'took', 'this', 'job', '.', 'Ok', ',', 'I', ',', 'I', 'hear', 'what', 'you', \"'re\", 'sayin', \"'\", '.', 'I', \"'m\", 'with', 'you', '.', 'Um', ',', 'but', 'I', ',', 'but', 'I', \"'m\", 'trying', 'really', 'hard', '.', 'And', 'I', 'think', 'I', \"'m\", 'doing', 'better', '.', 'I', 'really', 'do', '.', 'Does', 'anybody', 'need', 'coffee', '?', 'Oh', ',', 'look', 'at', 'that', '.', 'Excuse', 'me', ',', 'sir', '.', 'Hi', ',', 'you', 'come', 'in', 'here', 'all', 'time', '.', 'I', 'was', 'just', 'wondering', ',', 'do', 'you', 'think', 'there', \"'s\", 'a', 'possibility', 'that', 'you', 'could', 'give', 'me', 'an', 'advance', 'on', 'my', 'tips', '?', 'Ok', ',', 'ok', ',', 'that', \"'s\", 'fine', '.', 'Fine', '.', 'Hey', ',', 'I', \"'m\", 'sorry', 'about', 'that', 'spill', 'before', '.', 'Only', '$', '98.50', 'to', 'go', '.', 'Absolutely', '.', 'Shoop', ',', 'shoop', ',', 'shoop', '.', 'Only', 'a', 'hundred', 'and', 'two', 'dollars', 'to', 'go', '.', 'Yeah', ',', 'well', 'it', 'was', '.', 'I', ',', 'I', 'broke', 'a', 'cup', '.', 'No', ',', 'not', 'even', 'close', '.', 'Forget', 'Vail', ',', 'forget', 'seeing', 'my', 'family', ',', 'forget', 'shoop', ',', 'shoop', ',', 'shoop', '.', 'Thanks', ',', 'you', 'can', 'just', 'put', 'it', 'on', 'the', 'table', '.', 'Thanks', ',', 'you', 'can', 'just', 'put', 'it', 'on', 'the', 'table', '.', 'Oh', 'my', 'god', ',', 'oh', ',', 'you', 'guys', 'are', 'great', '.', 'Thank', 'you', '.', 'Thank', 'you', 'so', 'much', '!', 'Wait', ',', 'wait', ',', 'Chandler', ',', 'this', 'is', 'what', 'you', \"'re\", 'havin', \"'\", 'for', 'Thanksgiving', 'dinner', '?', 'What', ',', 'what', ',', 'what', 'is', 'it', 'with', 'you', 'and', 'this', 'holiday', '?', 'Oh', 'my', 'god', '.', 'Saw', 'what', '?', 'I', 'got', 'the', 'tickets', '!', 'I', 'got', 'the', 'tickets', '!', 'Five', 'hours', 'from', 'now', ',', 'shoop', ',', 'shoop', ',', 'shoop', '.', 'Ok', ',', 'I', \"'m\", 'gon', 'na', 'get', 'my', 'stuff', '.', 'Ok', ',', 'good-bye', 'you', 'guys', '.', 'Thanks', 'for', 'everything', '.', 'Oh', ',', 'sorry', '!', 'Oh', ',', 'sorry', '!', 'I', 'ca', \"n't\", ',', 'I', 'got', 'ta', 'go', '.', 'Ok', '.', 'I', 'loved', 'the', 'moment', 'when', 'you', 'first', 'saw', 'the', 'giant', 'dog', 'shadow', 'all', 'over', 'the', 'park', '.', 'We', \"'re\", 'waiting', 'for', 'you', 'to', 'open', 'the', 'door', '.', 'You', 'got', 'the', 'keys', '.', 'Yes', ',', 'you', 'do', '.', 'When', 'we', 'left', ',', 'you', 'said', ',', '``', 'got', 'the', 'keys', '.', \"''\", 'No', ',', 'no', ',', 'no', ',', 'you', 'said', ',', '``', 'got', 'the', 'keys', \"''\", '.', 'Oh', ',', 'I', 'got', 'ta', 'get', 'my', 'ticket', '!', 'All', 'right', ',', 'listen', ',', 'smirky', '.', 'If', 'it', 'was', \"n't\", 'for', 'you', 'and', 'your', 'stupid', 'balloon', ',', 'I', 'would', 'be', 'on', 'a', 'plane', 'watching', 'a', 'woman', 'do', 'this', 'right', 'now', '.', 'But', 'I', \"'m\", 'not', '.', 'No', ',', 'I', 'did', \"n't\", '.', 'I', 'would', \"n't\", 'say', 'I', 'had', 'the', 'keys', 'unless', 'I', 'had', 'the', 'keys', ',', 'and', 'I', 'obviously', 'did', \"n't\", 'have', 'the', 'keys', '.', 'Aside', 'from', 'the', 'fact', 'that', 'you', 'said', 'you', 'had', 'them', '?', 'Well', ',', 'you', 'should', 'have', '.', 'Because', '!', 'Because', '!', 'Oh', ',', 'god', ',', 'this', 'is', 'great', '!', 'The', 'plane', 'is', 'gone', ',', 'so', 'it', 'looks', 'like', 'I', \"'m\", 'stuck', 'here', 'with', 'you', 'guys', '.', 'What', '?', 'By', 'all', 'means', '.', 'And', 'a', 'crappy', 'New', 'Year', '.', 'Oh', ',', 'he', 'is', 'precious', '!', 'Where', 'did', 'you', 'get', 'him', '?', 'Hey', ',', 'do', 'you', 'guys', 'know', 'what', 'you', \"'re\", 'doing', 'for', 'New', 'Year', \"'s\", '?', 'Gee', ',', 'what', '?', '!', 'What', 'is', 'wrong', 'with', 'New', 'Year', \"'s\", '?', 'Well', ',', 'for', 'your', 'information', ',', 'Paolo', 'is', 'gon', 'na', 'be', 'in', 'Rome', 'this', 'New', 'Year', ',', 'so', 'I', \"'ll\", 'be', 'just', 'as', 'pathetic', 'as', 'the', 'rest', 'of', 'you', '.', 'Phoebe', ',', 'you', \"'re\", 'on', '.', 'Okay', ',', 'hi', '.', 'Ladies', 'and', 'gentlemen', ',', 'back', 'by', 'popular', 'demand', ',', 'Miss', 'Phoebe', 'Buffay', '.', 'Wooh', '!', 'Pheebs', ',', 'I', 'ca', \"n't\", 'believe', 'he', 'has', \"n't\", 'kissed', 'you', 'yet', '.', 'I', 'mean', 'God', ',', 'by', 'my', 'sixth', 'date', 'with', 'Paolo', ',', 'I', 'mean', 'he', 'had', 'already', 'named', 'both', 'my', 'breasts', '!', '...', 'Ooh', '.', 'Did', 'I', 'just', 'share', 'too', 'much', '?', 'Yeah', '!', 'Okay', ',', 'here', 'we', 'go', '...', 'There', '.', 'Now', 'there', 'is', '.', 'Five', '.', 'Sorry', '.', 'Paolo', \"'s\", 'catching', 'an', 'earlier', 'flight', '.', 'Oh', ',', \"c'mon\", '.', 'We', \"'ll\", 'have', ',', 'we', \"'ll\", 'have', 'a', 'big', 'party', ',', 'and', 'no-one', \"'ll\", 'know', 'who', \"'s\", 'with', 'who', '.', 'Rome', '.', 'Jerk', 'missed', 'his', 'flight', '.', 'No', '.', 'Okay', '.', 'I', 'was', 'at', 'the', 'airport', ',', 'getting', 'into', 'a', 'cab', ',', 'when', 'this', 'woman-', 'this', 'blonde', 'planet', 'with', 'a', 'pocketbook-', 'starts', 'yelling', 'at', 'me', '.', 'Something', 'about', 'how', 'it', 'was', 'her', 'cab', 'first', '.', 'And', 'then', 'the', 'next', 'thing', 'I', 'know', 'she', 'just', 'starts-', 'starts', 'pulling', 'me', 'out', 'by', 'my', 'hair', '!', 'So', 'I', \"'m\", 'blowing', 'my', 'attack', 'whistle', 'thingy', 'and', 'three', 'more', 'cabs', 'show', 'up', ',', 'and', 'as', 'I', \"'m\", 'going', 'to', 'get', 'into', 'a', 'cab', 'she', 'tackles', 'me', '.', 'And', 'I', 'hit', 'my', 'head', 'on', 'the', 'kerb', 'and', 'cut', 'my', 'lip', 'on', 'my', 'whistle', '...', 'oh', '...', 'everybody', 'having', 'fun', 'at', 'the', 'party', '?', 'Are', 'people', 'eating', 'my', 'dip', '?', 'Vrrbddy', ',', 'the', 'bll', 'is', 'drrbing', '.', 'The', 'bll', 'is', 'drrbing', '!', 'I', 'ca', \"n't\", 'kiss', 'anyone', '.', '...', 'I', 'think', 'that', 'bitch', 'cracked', 'my', 'tooth', '.', 'Oh', ',', 'she', \"'s\", 'coming', 'up', '!', 'She', \"'s\", 'coming', 'up', '!', 'No', 'way', ',', 'forget', 'it', '.', 'Chandler', ',', 'I', 'got', 'ta', 'tell', 'you', ',', 'I', 'love', 'your', 'mom', \"'s\", 'books', '!', 'I', 'love', 'her', 'books', '!', 'I', 'can', 'not', 'get', 'on', 'a', 'plane', 'without', 'one', '!', 'I', 'mean', ',', 'this', 'is', 'so', 'cool', '!', 'Oh', ',', 'hi', 'sweetie', '.', 'Hi', '!', 'Sorry-', 'sorry', 'we', \"'re\", 'late', ',', 'we', ',', 'uh', ',', 'kinda', 'just', ',', \"y'know\", ',', 'lost', 'track', 'of', 'time', '.', 'Mrs.', 'Bing', ',', 'I', 'have', 'to', 'tell', 'you', ',', 'I', \"'ve\", 'read', 'everything', 'you', \"'ve\", 'ever', 'written', '.', 'No', ',', 'I', 'mean', 'it', '!', 'I', 'mean', ',', 'when', 'I', 'read', 'Euphoria', 'at', 'Midnight', ',', 'all', 'I', 'wanted', 'to', 'do', 'was', 'become', 'a', 'writer', '.', 'Hey', '.', 'What', \"'re\", 'you', 'guys', 'doing', 'out', 'here', '?', 'Well', ',', 'sounds', 'like', 'you', 'two', 'have', 'issues', '.', 'Goodbye', ',', 'baby', '.', 'Hey', '.', 'Yeah', '.', 'Thought', 'I', \"'d\", 'give', 'it', 'a', 'shot', '.', 'I', \"'m\", 'still', 'on', 'the', 'first', 'chapter', '.', 'Now', ',', 'do', 'you', 'think', 'his', \"'love\", 'stick', 'can', 'be', 'liberated', 'from', 'its', 'denim', 'prison', \"'\", '?', 'Hey', '.', 'Okay', '.', 'I', 'am', 'so', 'hot', '!', 'Central', 'Perk', 'is', 'proud', 'to', 'present', 'Miss', 'Phoebe', 'Buffay', '.', 'Okay', ',', 'that', 'was', 'Phoebe', 'Buffay', ',', 'everybody', '.', 'Woo', '!', 'Okay', '.', 'Now', 'this', 'is', 'just', 'the', 'first', 'chapter', ',', 'and', 'I', 'want', 'your', 'absolute', 'honest', 'opinion', '.', 'Oh', ',', 'oh', ',', 'and', 'on', 'page', 'two', ',', 'he', \"'s\", 'not', \"'reaching\", 'for', 'her', 'heaving', 'beasts', \"'\", '.', 'Alright', ',', 'alright', ',', 'so', 'I', \"'m\", 'not', 'a', 'great', 'typist', '...', 'Alright', ',', 'that', \"'s\", 'it', '!', 'Give', 'it', 'back', '!', 'That', \"'s\", 'it', '!', 'Honey', ',', 'you', 'can', 'say', 'it', ',', 'Poconos', ',', 'Poconos', ',', 'it', \"'s\", 'like', 'Poc-o-nos', 'Yes', ',', 'my', 'sister', \"'s\", 'giving', 'us', 'her', 'place', 'for', 'the', 'weekend', '.', 'I', 'know', '...', 'I', 'mean', ',', 'we', 'are', 'way', 'past', 'the', 'fling', 'thing', ',', 'I', 'mean', ',', 'I', 'am', 'feeling', 'things', 'that', 'I', \"'ve\", 'only', 'read', 'about', 'in', 'Danielle', 'Steele', 'books', ',', 'you', 'know', '?', 'I', 'mean', ',', 'when', 'I', \"'m\", 'with', 'him', ',', 'I', \"'m\", 'totally', ',', 'totally', '...', 'Pheebs', '!', 'Oh', ',', 'right', ',', 'that', \"'s\", 'me', '!', '``', 'Ooo', \"''\", ',', 'what', '?', 'Hi', 'Pheebs', '!', 'No', ',', 'these', 'are', \"n't\", 'all', 'my', 'suitcases', '.', 'This', 'one', \"'s\", 'Paolo', \"'s\", '.', 'Well', ',', 'sure', '...', 'just', 'a', 'sec', ',', 'though', ',', \"'cause\", 'Paolo', \"'s\", 'on', 'his', 'way', 'over', '.', 'Oh', ',', 'Pheebs', ',', 'Pheebs', '...', 'Why', 'have', 'I', 'never', 'tasted', 'these', 'before', '?', 'All', 'right', ',', 'well', ',', 'you', \"'re\", 'right', ',', 'these', 'are', 'the', 'best', 'oatmeal', 'cookies', 'I', \"'ve\", 'ever', 'had', '.', 'I', 'guess', 'you', 'do', \"n't\", '.', 'I', 'need', 'some', 'milk', '.', 'No', '...', 'oh', '!', ',', 'I', 'feel', 'so', 'stupid', '!', 'Oh', ',', 'I', 'think', 'about', 'the', 'other', 'day', 'with', 'you', 'guys', 'and', 'I', 'was', 'all', '``', 'Oh', ',', 'Paolo', ',', 'he', \"'s\", 'so', 'great', ',', 'he', 'makes', 'me', 'feel', 'so', '...', \"''\", 'Oh', ',', 'God', ',', 'I', \"'m\", 'so', 'embarrassed', '!', 'Pheebs', ',', 'if', 'I', 'had', 'never', 'met', 'him', 'this', 'never', 'would', 'have', 'happened', '!', 'I', 'do', \"n't\", 'know', '...', 'right', ',', 'he', \"'s\", 'the', 'pig', '!', 'Oh', ',', 'God', ',', 'he', \"'s\", 'such', 'a', 'pig', ',', 'He', \"'s\", 'like', 'a', 'big', 'disgusting', '...', '...', 'pig', '...', 'pig', 'man', '!', 'Oh', ',', 'but', 'he', 'was', 'my', 'pig', 'man', '...', 'how', 'did', 'I', 'not', 'see', 'this', '?', 'Ok', ',', 'Ok', ',', 'Pheebs', '...', 'Oh', ',', 'God', '...', 'No', ',', 'no', ',', 'trust', ',', 'me', ',', 'it', \"'s\", ',', 'it', \"'s\", ',', 'it', \"'s\", 'much', 'better', 'that', 'I', 'know', '.', 'Uh', ',', 'I', 'just', 'liked', 'it', 'better', 'before', 'it', 'was', 'better', '...', 'Hey', '.', 'Ooh', ',', 'I', \"'ve\", 'been', 'better', '...', 'Oh', ',', 'Ross', '...', 'I', 'am', 'so', 'sick', 'of', 'guys', '.', 'I', 'do', \"n't\", 'want', 'to', 'look', 'at', 'another', 'guy', ',', 'I', 'do', \"n't\", \"'\", 'want', 'to', 'think', 'about', 'another', 'guy', ',', 'I', 'do', \"n't\", 'even', 'want', 'to', 'be', 'near', 'another', 'guy', '.', 'Oh', 'Ross', ',', 'you', \"'re\", 'so', 'great', '!', 'Oh', '...', '...', 'medium', '...', 'hmm', '...', 'any', 'cookies', 'left', '?', 'No', '.', 'I', 'just', 'need', 'to', 'be', 'by', 'myself', 'for', 'a', 'while', ',', 'you', 'know', '?', 'I', 'just', 'got', 'to', 'figure', 'out', 'what', 'I', 'want', 'No', ',', 'I', 'know', ',', 'I', 'know', ',', 'and', 'I', \"'m\", 'sure', 'your', 'little', 'boy', 'is', 'not', 'going', 'to', 'grow', 'up', 'to', 'be', 'one', '.', 'What', '?', 'Uh', '...', 'no', '.', 'No', ',', 'no', ',', 'in', 'fact', ',', 'you', \"'re\", 'not', 'having', 'a', 'boy', '.', 'Daaargh', '!', 'That', \"'s\", 'it', '!', 'You', 'just', 'barge', 'in', 'here', '!', 'You', 'do', \"n't\", 'knock', ',', 'you', 'have', 'no', '...', '...', 'respect', 'for', 'anybody', \"'s\", 'privacy', '...', 'No', ',', 'you', 'wait', '.', 'This', 'is', 'ridiculous', '...', 'What', '?', '!', 'What', '?', '!', 'Aaarrggh', '!', 'He', \"'s\", 'so', 'cute', '.', 'And', 'he', 'seems', 'to', 'like', 'you', 'so', 'much', '...', 'OK.', 'Any', 'of', 'you', 'guys', 'want', 'anything', 'else', '?', 'No', ',', 'I', \"'m\", 'sorry', ',', 'we', \"'re\", 'all', 'out', 'of', 'those', '.', 'Anybody', 'else', '?', 'OK.', 'OK.', 'Can', 'we', 'change', 'the', 'subject', ',', 'please', '?', 'OK', ',', 'Phoebes', ',', 'I', 'was', 'hoping', 'for', 'more', 'of', 'a', 'change', '.', 'Nice', '?', 'They', 'were', '...', 'nice', '?', 'I', 'mean', ',', 'tha', '...', 'that', \"'s\", 'it', '?', 'I', 'mean', ',', 'mittens', 'are', 'nice', '!', 'Now', ',', 'I', 'know', '.', 'I', 'mean', ',', 'why', 'ca', \"n't\", 'parents', 'just', 'stay', 'parents', '?', 'You', 'know', '?', 'Why', 'do', 'they', 'have', 'to', 'become', 'people', '?', 'Why', 'do', 'you', 'have', '...', 'Why', '...', 'ca', \"n't\", 'you', 'stop', 'staring', 'at', 'me', 'breasts', '?', 'Did', 'you', 'not', 'get', 'a', 'good', 'enough', 'look', 'the', 'other', 'day', '?', 'Come', 'on', '.', 'He', \"'s\", 'right', '.', 'Tit', 'for', 'tat', '.', 'You', \"'re\", 'right', '...', 'I', 'mean', ',', 'you', \"'re\", 'right', '.', 'It', 'was', \"n't\", 'just', 'the', 'Weebles', ',', 'but', 'it', 'was', 'the', 'Weeble', 'Play', 'Palace', ',', 'and', ',', 'and', 'the', 'Weebles', \"'\", 'Cruise', 'Ship', ',', 'oh', ',', 'which', ',', 'which', 'had', 'this', 'little', 'lifeboat', 'for', 'the', 'Weebles', 'to', 'wobble', 'in', '.', 'Hi', ',', 'I', \"'m\", 'Rachel', '.', 'The', 'bathroom', \"'s\", 'up', 'there', '.', 'Hey', ',', 'listen', 'Ronnie', ',', 'how', 'long', 'would', 'you', 'say', 'Chandler', \"'s\", 'been', 'in', 'the', 'shower', '?', 'Oh', ',', 'great', '.', 'Fasten', 'your', 'seatbelts', '.', 'It', \"'s\", 'pee-pee', 'time', '!', 'Hey', 'Mr.Trib', '.', 'Chandler', 'Bing', ',', 'it', \"'s\", 'time', 'to', 'see', 'your', 'thing', '...', 'I', 'thought', 'it', 'was', 'Chandler', 'You', 'were', 'supposed', 'to', 'be', 'in', 'there', 'so', 'I', 'could', 'see', 'your', 'thing', '!', 'Wow', '.', 'Just', 'think', '.', 'In', 'a', 'couple', 'of', 'years', 'we', 'get', 'to', 'turn', 'into', 'them', '.', 'What', 'happened', '?', 'Do', 'what', ',', 'do', 'what', '?', 'No', '!', 'Phoebes', '!', 'Do', \"n't\", 'you', 'remember', 'why', 'you', 'dumped', 'the', 'guy', '?', 'Well', ',', 'what', 'are', 'you', 'guys', 'doing', 'tomorrow', 'night', '?', 'Ok', ',', 'ok', ',', 'Roger', 'was', 'creepy', ',', 'but', 'he', 'was', 'nothing', 'compared', 'to', 'Pete', 'Carney', '.', 'He', 'was', 'the', 'weeper', '.', 'Remember', 'that', 'guy', 'who', 'used', 'to', 'cry', 'every', 'time', 'we', 'had', 'sex', '.', '``', 'Was', 'it', 'good', 'for', 'you', '?', \"''\", 'How', 'did', 'we', 'end', 'up', 'with', 'these', 'jerks', '?', 'We', \"'re\", 'good', 'people', '!', 'Phoebes', ',', 'this', 'woman', 'is', 'voluntarily', 'bald', '.', 'Or', '?', 'Burning', \"'s\", 'good', '.', 'Yeah', ',', 'I', 'got', 'stuff', 'to', 'burn', '.', 'Oh', 'my', 'god', '.', 'Janice', ',', 'hi', '!', 'Oh', ',', 'Joey', ',', 'look', 'who', 'it', 'is', '.', 'Ok', ',', 'Pheebs', ',', 'you', 'know', 'what', ',', 'if', 'we', 'had', 'that', ',', 'we', 'would', \"n't\", 'be', 'doing', 'the', 'ritual', 'in', 'the', 'first', 'place', '.', 'Ok', ',', 'Barry', \"'s\", 'letters', '.', 'Adam', 'Ritter', \"'s\", 'boxer', 'shorts', '.', 'Hey', 'he', \"'s\", 'wearing', 'a', 'sweater', '.', 'And', 'here', 'we', 'have', 'the', 'last', 'of', 'Paulo', \"'s\", 'grappa', '.', 'Really', '?', 'So', ',', 'um', ',', 'will', 'you', 'bring', 'the', 'truck', '?', 'Oh', ',', 'my', 'god', '.', 'Oh', ',', 'they', \"'re\", 'firemen', 'guys', '.', 'Oh', ',', 'yeah', ',', 'I', \"'ve\", 'done', 'that', '.', 'I', \"'ve\", 'never', 'done', 'that', '.', 'Um', ',', 'Pheebs', ',', 'so', ',', 'you', 'guys', 'just', 'do', \"n't\", 'get', 'along', '?', 'So', ',', 'is', 'this', 'just', 'gon', 'na', 'be', 'you', 'and', 'Carol', '?', 'Well', ',', 'is', \"n't\", 'that', 'gon', 'na', 'be', 'weird', '?', 'Oh', ',', 'cool', '.', '``', 'Urkel', \"''\", 'in', 'Spanish', 'is', '``', 'Urkel', \"''\", '.', 'Well', 'someone', 'was', 'supposed', 'to', 'write', '``', 'Rache', ',', 'take', 'down', 'the', 'lights', \"''\", 'and', 'put', 'it', 'on', 'the', 'refrigerator', '.', 'How', 'long', 'has', 'that', 'been', 'there', '?', 'So', 'Pheebs', ',', 'what', 'do', 'you', 'want', 'for', 'your', 'birthday', '?', 'Ok.', 'Let', 'me', 'put', 'it', 'this', 'way', '.', 'Anything', 'from', 'Crabtree', '&', 'amp', ';', 'Evelyn', '?', 'Oh', ',', 'well', ',', 'that', 'should', \"n't\", 'be', 'so', 'hard', ',', 'now', 'that', 'you', \"'re\", 'dating', '.', 'Sweetheart', ',', 'you', \"'re\", 'fired', ',', 'but', 'how', \"'bout\", 'a', 'quickie', 'before', 'I', 'go', 'to', 'work', '.', 'You', 'do', \"n't\", 'even', 'have', 'cats', '.', 'We', \"'ll\", 'try', 'to', 'keep', 'it', 'down', '.', 'Are', 'you', 'seein', \"'\", 'her', 'again', 'tonight', '?', 'It', \"'s\", 'just', 'occurring', 'to', 'you', '?', 'Oh', ',', 'you', \"'re\", 'gon', 'na', 'be', 'great', '!', 'Oh', ',', 'how', \"'d\", 'she', 'take', 'it', '?', 'Ok', ',', 'Pheebs', ',', 'can', 'I', 'ask', '?', 'So', ',', 'he', \"'s\", 'going', 'out', 'with', 'her', '.', 'I', 'mean', ',', 'is', 'it', 'really', 'so', 'terrible', '?', 'Please', ',', 'they', \"'ve\", 'been', 'going', 'out', 'a', 'week', '.', 'They', 'have', \"n't\", 'even', 'slept', 'together', 'yet', ',', 'I', 'mean', ',', 'that', \"'s\", 'not', 'serious', '.', 'No', 'no', 'no', 'no', 'no', '.', 'You', 'wanted', 'me', 'to', 'take', 'them', 'down', ',', 'so', 'I', \"'m\", 'takin', \"'\", \"'em\", 'down', '.', 'Ok', '?', 'Whoa', '!', 'I', \"'m\", 'ok', '!', 'I', \"'m\", 'ok', '!', 'Mr.', 'Heckles', ',', 'Mr.', 'Heckles', 'could', 'you', 'help', 'me', 'please', '?', 'Ow', 'ow', 'ow', '.', 'Ow', 'ow', 'ow', '.', 'Ow', 'ow', 'ow', '.', 'Ow', 'ow', 'ow', '.', 'Ow', 'ow', 'ow', '.', 'Ow', 'ow', 'ow', '.', 'You', '.', 'Yeah', '.', 'Oh', ',', 'yeah', ',', 'check', 'it', '.', 'Definitely', ',', 'I', 'want', 'some', 'of', 'that', '.', 'Monica', ':', 'You', 'do', \"n't\", 'have', 'insurance', '?', 'Why', ',', 'how', 'much', 'is', 'this', 'gon', 'na', 'cost', '?', 'Well', 'what', 'are', 'we', 'gon', 'na', 'do', '?', 'Um', ',', 'unless', ',', 'unless', 'I', 'use', 'yours', '.', 'Well', ',', 'now', ',', 'wait', 'a', 'second', '.', 'Who', 'did', 'I', 'just', 'put', 'as', 'my', '``', 'In', 'case', 'of', 'emergency', \"''\", 'call', 'person', '?', 'Well', ',', 'all', 'right', ',', 'then', ',', 'forget', 'it', '.', 'Might', 'as', 'well', 'just', 'go', 'home', '.', 'Ow', '!', 'Thank', 'you', '.', 'Thank', 'you', '.', 'I', 'love', 'you', '.', 'Hi', ',', 'this', 'is', 'my', 'friend', 'Rachel', '.', 'Are', \"n't\", 'you', 'a', 'little', 'cute', 'to', 'be', 'a', 'doctor', '?', 'I', 'meant', 'young', ',', 'young', ',', 'I', 'meant', 'young', ',', 'young', 'to', 'be', 'a', 'doctor', '.', 'Oh', ',', 'Good', 'Rach', '.', 'Right', '.', 'So', ',', 'he', 'said', 'it', 'was', 'just', 'a', 'sprain', ',', 'and', 'that', 'was', 'it', '.', 'Not', 'stupid', '.', 'The', 'very', 'cute', ',', 'cute', ',', 'cute', 'doctors', 'asked', 'us', 'out', 'for', 'tomorrow', 'night', ',', 'and', 'I', 'said', 'yes', '.', 'What', '?', 'Monica', ',', 'they', 'are', 'cute', ',', 'they', 'are', 'doctors', ',', 'cute', 'doctors', ',', 'doctors', 'who', 'are', 'cute', '!', 'Was', 'that', 'the', 'cake', '?', 'I', 'hope', 'it', \"'s\", 'ok.', 'Ok', ',', 'coming', '!', 'Oh', ',', 'that', \"'s\", 'great', '.', 'Look', 'at', 'that', '.', 'You', 'know', 'what', ',', 'it', \"'s\", 'feeling', 'a', 'lot', 'better', ',', 'thank', 'you', '.', 'Well', ',', 'listen', ',', 'why', 'do', \"n't\", 'you', 'two', 'sit', 'down', ',', 'and', 'we', \"'ll\", 'get', 'you', 'some', 'glasses', '....', 'STAT', '.', 'Ok', ',', 'listen', ',', 'I', \"'m\", 'thinking', ',', 'why', 'do', \"n't\", 'we', 'just', 'tell', 'them', 'who', 'we', 'really', 'are', '.', 'I', 'mean', ',', 'it', \"'ll\", 'be', 'fine', ',', 'I', 'really', 'think', 'it', \"'ll\", 'be', 'fine', ',', 'I', 'really', 'do', '.', 'Would', 'you', 'stop', 'being', 'such', 'a', 'wuss', '?', 'I', 'am', 'not', 'a', 'baby', '.', 'You', 'know', 'what', '?', 'You', 'know', 'what', '?', 'Every', 'day', ',', 'you', 'are', 'becoming', 'more', 'and', 'more', 'like', 'your', 'mother', '.', 'I', \"'ve\", 'been', 'here', 'about', 'six', 'years', ',', 'and', 'Rachel', 'moved', 'in', 'a', 'few', 'months', 'ago', '.', 'Uh', ',', 'I', \"'m\", 'a', 'uh', ',', 'chef', 'at', 'a', 'restaurant', 'uptown', '.', 'Yeah', 'it', 'is', '.', 'Mostly', 'because', 'I', 'get', 'to', 'boss', 'people', 'around', ',', 'which', 'I', 'just', 'love', 'to', 'do', '.', 'And', 'by', 'the', 'way', ',', 'have', 'I', 'mentioned', 'that', 'back', 'in', 'high', 'school', ',', 'I', 'was', 'a', 'cow', '.', 'I', 'use', 'my', 'breasts', 'to', 'get', 'other', 'people', \"'s\", 'attention', '.', 'Daddy', ',', 'daddy', ',', 'why', '?', 'Why', 'would', 'I', 'sleep', 'with', 'Billy', 'Drestin', '?', 'His', 'father', 'tried', 'to', 'put', 'you', 'out', 'of', 'business', '!', 'You', 'are', 'dead', '!', 'Hello', '?', 'Uh', ',', 'yeah', ',', 'uh', ',', 'hold', 'on', 'a', 'second', '.', 'Let', 'me', 'see', 'if', 'she', \"'s\", 'here', '.', 'It', \"'s\", 'the', 'woman', 'from', 'the', 'hospital', 'admissions', 'office', '.', 'Oh', ',', 'god', ',', 'what', 'do', 'we', 'do', ',', 'what', 'do', 'we', 'do', '?', 'No', ',', 'you', 'do', 'it', '.', 'What', '?', 'You', 'were', 'right', ',', 'this', 'was', 'just', 'not', 'worth', 'it', '.', 'Ok', ',', 'let', 'me', 'just', 'change', '.', 'Hi', ',', 'remember', 'us', '?', 'And', 'I', \"'m\", 'just', 'gon', 'na', 'pay', 'for', 'this', 'with', 'a', 'check', '.', 'I', 'know', '.', 'I', \"'m\", 'just', 'not', 'that', 'bright', 'either', '.', 'What', '?', 'Oh', '.', 'Hi', '.', 'Miren', '!', 'El', 'viejo', 'desnudo', 'est', 'haciendo', 'el', 'hula', 'hoop', '!', '(', 'Look', '!', 'The', 'naked', 'old', 'man', 'is', 'hula', 'hooping', '!', 'OK', ',', 'OK', ',', 'I', 'checked', ',', 'we', 'have', 'Earl', 'Grey', ',', 'English', 'Breakfast', ',', 'Cinnamon', 'Stick', ',', 'Camomile', ',', 'Mint', 'Medley', ',', 'Blackberry', ',', 'and', 'er', ',', 'oh', 'wait', ',', 'there', 'was', 'one', 'more', ',', 'erm', ',', 'Lemon', 'Soother', '!', 'You', \"'re\", 'not', 'the', 'guy', 'who', 'asked', 'for', 'the', 'tea', ',', 'are', 'you', '?', '....', 'OK', '.', 'Thank', 'you', '...', 'Oh', 'cool', '.', 'Free', 'sample', 'of', 'coffee', '.', 'Oh', '.', 'Right', '....', 'Oh', 'great', '.', 'Country', 'club', 'newsletter', '.', 'My', 'mother', 'sends', 'me', 'the', 'engagement', 'notices', 'for', 'inspiration', '....', 'Oh', 'my', 'god', '...', 'Oh', 'my', 'god', ',', 'it', \"'s\", 'Barry', 'and', 'Mindy', '!', 'Barry', 'who', 'I', 'almost', '...', 'Mindy', 'my', 'maid', 'of', '...', 'What', '?', 'Oh', '!', 'I', \"'m\", 'sorry', '.', 'Oh', '.', 'This', 'is', 'so', 'stupid', '!', 'I', 'mean', ',', 'I', 'gave', 'Barry', 'up', ',', 'right', '?', 'I', 'should', 'be', 'happy', 'for', 'them', '....', 'I', 'am', '.', 'I', \"'m\", 'happy', 'for', 'them', '.', 'No', '....', 'Oh', '....', 'Oh', ',', 'I', 'guess', 'it', \"'d\", 'be', 'different', 'if', 'I', 'were', ',', 'with', 'somebody', '.', 'Oh', '.', 'I', 'do', \"n't\", 'know', '.', 'I', 'guess', 'it', \"'s\", 'not', 'about', '``', 'no', 'guys', \"''\", ',', 'it', \"'s\", 'about', 'the', '``', 'right', 'guy', \"''\", 'you', 'know', '?', 'I', 'mean', 'with', 'Barry', ',', 'it', 'was', ',', 'it', 'was', 'safe', ',', 'and', 'it', 'was', 'easy', ',', 'but', 'there', 'was', 'no', 'heat', '.', 'You', 'know', 'with', 'Paulo', ',', 'that', 'all', 'there', 'was', ',', 'was', 'heat', '.', 'I', ',', 'I', 'mean', 'it', 'was', 'just', 'this', 'raw', ',', 'animal', ',', 'sexual', '...', 'Ah', '.', 'I', 'mean', ',', 'do', 'you', 'think', 'you', 'can', 'ever', 'have', 'both', '?', 'You', 'know', ',', 'someone', 'who', \"'s\", ',', 'like', ',', 'who', \"'s\", 'like', 'your', 'best', 'friend', ',', 'but', 'then', 'also', 'can', 'make', 'your', 'toes', 'curl', '?', 'Hey', 'guys', ',', 'how', 'was', 'the', 'movie', '?', 'And', 'I', 'will', 'see', 'you', 'tomorrow', '!', 'Now', ',', 'now', 'the', 'one', 'in', 'the', 'feather', 'boa', ',', 'that', \"'s\", 'Dr.Francis', ',', 'now', 'she', 'used', 'to', 'be', 'a', 'man', '.', 'OK', '?', 'Oh', 'look', 'see', ',', 'now', 'there', \"'s\", 'Raven', '.', 'We', 'hate', 'her', '.', 'We', \"'re\", 'glad', 'she', \"'s\", 'dying', '.', 'An', '...', 'Wh', '...', 'M', '...', 'Marcel', '?', 'Are', 'you', 'playing', 'with', 'Monica', \"'s\", 'shoes', '?', 'You', 'know', 'you', \"'re\", 'not', 'supposed', 'to', 'p', '...', 'Whoa', '!', 'Whoa', '!', 'Marcel', '?', 'Did', 'you', 'poo', 'in', 'the', 'shoe', '?', 'Oh', 'my', 'god', '.', 'Bad', ',', 'bad', '.', 'Oh', 'god', '.', 'Oh', '.', 'Sorry', 'Barry', '.', 'A', 'little', 'engagement', 'gift', '.', 'I', \"'m\", 'sure', 'you', 'did', \"n't\", 'register', 'for', 'that', '!', 'I', 'do', \"n't\", 'know', ',', 'I', 'do', \"n't\", 'know', ',', 'we', 'were', 'watching', 'TV', ',', 'and', 'then', 'he', 'pooped', 'in', 'Monica', \"'s\", 'shoe', '...', 'I', 'do', \"n't\", 'know', '...', 'The', 'left', 'one', '.', 'Oh', ',', 'oh', ',', 'those', 'little', 'clunkly', 'Amish', 'things', 'you', 'think', 'go', 'with', 'everything', '.', 'Come', 'on', 'you', 'guys', ',', 'what', 'am', 'I', 'going', 'to', 'do', '?', 'What', 'are', 'we', 'going', 'to', 'do', '?', 'Oh', 'my', 'god', '.', 'Come', 'on', 'you', 'guys', '.', 'He', \"'s\", 'gon', 'na', 'be', 'home', 'any', 'minute', '.', 'He', \"'s\", 'gon', 'na', 'kill', 'me', '.', 'Wha', ',', 'wha', ',', 'wh', ',', 'what', 'am', 'I', 'gon', 'na', 'do', '?', 'What', 'am', 'I', 'gon', 'na', 'do', '?', 'Does', 'anybody', 'wan', 'na', 'trade', '?', 'Oh', '.', 'OK', '.', 'He', \"'s\", 'a', ',', 'he', \"'s\", 'a', 'black', 'Capuchin', 'monkey', ',', 'with', 'a', 'white', 'face', '...', '...', 'with', ',', 'with', 'Russian', 'dressing', ',', 'and', 'pickles', 'on', 'the', 'side', '.', 'OK', '.', 'Thanks', '...', 'Hi', '!', 'Oh', ',', 'great', '!', 'It', 'went', 'great', '.', 'Really', 'great', '...', 'Hey', '!', 'Is', 'that', 'wine', '?', 'Oh', ',', 'I', 'would', 'love', 'some', ',', 'but', 'you', 'know', 'what', '?', 'You', 'know', 'what', '?', 'Let', \"'s\", 'not', 'drink', 'it', 'here', '...', 'I', \"'m\", 'feeling', 'kinda', 'crazy', '.', 'You', 'wan', 'na', 'go', 'to', 'Newark', '?', 'Oh', 'god', ',', 'Ross', '.', 'I', 'can', 'not', 'do', 'this', '...', 'Oh', 'god', '.', 'OK.', 'Alright', ',', 'alright', '.', 'OK.', 'Ross', ',', 'please', 'do', \"n't\", 'hate', 'me', '...', 'Ah', '.', 'You', 'know', 'Marcel', '?', 'Well', ',', 'I', ',', 'kinda', ',', 'kind', 'of', 'lost', 'him', '...', 'I', 'know', ',', 'I', 'know', ',', 'I', \"'m\", 'sorry', '...', 'Ross', '.', 'I', \"'m\", 'doing', 'everything', 'that', 'I', 'can', '.', 'I', \"'ve\", 'got', 'everybody', 'looking', 'for', 'him', ',', 'and', 'then', 'I', '...', 'Who', 'is', 'it', '?', 'See', ',', 'I', \"'ve\", 'even', 'got', 'Animal', 'Control', '...', 'Uh-huh', '.', 'Why', '?', 'Do', 'you', 'not', 'like', 'them', '?', 'OK.', 'Well', ',', 'now', ',', 'see', ',', 'you', 'never', 'ever', 'ever', 'told', 'us', 'that', '...', 'Hi', '!', 'Thanks', 'for', 'coming', '!', 'Oh', '.', 'Oh', 'yeah', '!', 'You', 'know', 'what', '?', 'That', 'was', 'a', 'complete', 'misunderstanding', '.', 'It', 'turned', 'out', 'it', 'was', 'a', 'hat', '!', 'Cat', '!', 'What', 'did', 'I', 'say', '?', 'Cat', '.', 'Yeah', '!', 'Louisa', '?', 'Oh', 'my', 'god', '!', 'Monica', '!', 'It', \"'s\", 'Louisa', '!', 'Yes', '!', 'No', '.', 'WHAT', '?', 'Marcel', '!', 'Oh', ',', 'Ross', ',', 'you', 'do', \"n't\", 'know', 'that', '.', 'Ross', ',', 'you', 'know', ',', 'I', \"'ve\", 'said', 'I', \"'m\", 'sorry', ',', 'like', ',', 'a', 'million', 'times', '.', 'What', 'do', 'you', 'want', 'me', 'to', 'do', '?', 'Huh', '?', 'What', 'do', 'you', 'want', ',', 'you', 'want', 'me', 'to', 'break', 'my', 'foot', 'too', '?', 'Is', 'that', 'it', '?', 'OK', ',', 'here', ',', 'I', \"'m\", 'gon', 'na', 'break', 'my', 'foot', ',', 'right', 'now', ',', 'there', '...', '...', 'Ow', '!', 'Oh', 'god', ',', 'oh', 'my', 'god', '!', 'There', ',', 'are', 'you', 'happy', 'now', '?', 'You', 'know', '?', 'It', \"'s\", 'not', 'like', 'I', 'did', 'this', 'on', 'purpose', '...', 'Ross', '.', 'Ross', '!', 'ROSS', '!', 'Hey', '!', 'Then', 'what', \"'s\", 'with', 'all', 'the', 'bananas', '?', 'Oh', ',', 'come', 'on', ',', 'Louisa', '.', 'Alright', ',', 'look', ',', 'OK', '.', 'In', 'high', 'school', ',', 'I', 'was', 'the', 'Prom', 'Queen', ',', 'and', 'I', 'was', 'the', 'Homecoming', 'Queen', ',', 'and', 'the', 'class', 'president', ',', 'and', 'you', '...', 'were', 'also', 'there', '.', 'If', 'you', 'take', 'this', 'monkey', ',', 'I', 'will', 'loose', 'one', 'of', 'the', 'most', 'important', 'people', 'in', 'my', 'life', '.', 'You', 'can', 'hate', 'me', 'if', 'you', 'want', ',', 'but', 'please', 'do', 'not', 'punish', 'him', '.', 'Come', 'on', 'Louisa', ',', 'you', 'have', 'a', 'chance', 'to', 'be', 'the', 'bigger', 'person', 'here', '.', 'Take', 'it', '!', 'Alright', '.', 'Well', 'then', 'how', 'about', 'I', 'call', 'your', 'supervisor', 'and', 'I', 'tell', 'her', 'that', 'you', 'shot', 'my', 'friend', 'in', 'the', 'ass', 'with', 'a', 'dart', '?', 'You', 'know', ',', 'with', 'the', 'right', 'pair', 'of', 'pumps', ',', 'that', 'would', 'be', 'a', 'great', 'little', 'outfit', '!', 'Oh', 'Ross', ',', 'come', 'on', '.', 'No', ',', 'no', ',', 'it', 'was', 'my', 'fault', '.', 'I', 'almost', 'lost', 'your', '...', 'Sure', '.', 'That', \"'ll\", 'be', 'good', '.', 'Barry', '?', '!', 'Oh', ',', 'that', 'is', 'so', 'sick', '.', \"Y'know\", ',', 'it', 'was', ',', 'uh', '..', 'it', 'was', 'actually', 'really', 'great', '.', 'He', 'took', 'Then', 'we', 'took', 'a', 'walk', 'down', 'to', 'Bendall', \"'s\", ',', 'and', 'I', 'told', 'him', 'not', 'Right', ',', '..', 'well', ',', '..', 'we', 'never', 'actually', 'got', 'to', 'that', '...', 'Oh', ',', 'it', 'was', 'Yeah', ',', 'but', 'it', 'was', 'different', 'with', 'him', 'today', '!', 'And', 'he', 'was', \"n't\", ',', 'Why', '?', 'All', 'right', '.', 'All', 'right', 'all', 'right', 'all', 'right', 'all', 'right', ',', 'I', 'know', 'Wow', '...', 'Wow', '!', 'I', \"'m\", 'not', 'crazy', ',', 'right', '?', 'I', 'mean', ',', 'it', 'was', 'never', 'like', 'that', '.', 'Ooh', ',', 'and', 'it', \"'s\", 'so', 'nice', 'having', 'this', 'little', 'sink', 'here', '...', 'Oh', ',', 'it', \"'s\", 'just', '...', 'Oh', ',', 'Barry', ',', 'this', 'was', 'not', 'good', '.', 'Well', ',', 'what', 'about', 'Mindy', '?', 'No', ',', 'not', 'that', ',', 'I', 'mean', ',', 'what', 'about', 'you', 'and', 'Mindy', '?', 'No', '.', 'No', 'no', 'no', 'no', ',', 'no', '.', 'I', 'mean', ',', 'do', \"n't\", 'do', 'that', '.', 'Not', ',', 'I', 'mean', 'Oh', ',', 'Barry', '..', '!', 'Come', 'on', ',', 'this', 'is', 'all', 'way', 'too', '..', 'I', 'had', 'a', 'bra', '.', 'What', '?', '!', 'Pretty', 'well', ',', 'actually', '...', 'Oh', ',', 'do', 'I', '?', '....', 'We', 'ended', 'up', 'having', 'sex', 'in', 'his', 'chair', '.', 'I', 'do', \"n't\", 'know', '!', 'I', 'mean', ',', 'we', 'still', 'care', 'about', 'each', 'other', '.', 'Please', '.', 'If', 'she', 'said', 'to', 'you', ',', '``', 'Ross', ',', 'I', 'want', 'you', 'on', 'this', 'couch', ',', 'Hello', '?', 'Mindy', '!', 'Hi', '!', 'Hey', ',', 'how', 'are', 'you', '?', 'Yes', ',', 'yes', ',', 'I', \"'ve\", 'heard', ',', 'Oh', ',', 'she', 'wants', 'to', 'see', 'me', 'tomorrow', '...', 'Oh', ',', 'she', 'sounded', 'really', 'Get', 'down', '?', 'Thanks', ',', 'but', 'I', 'got', 'ta', 'go', 'to', 'work', 'and', 'get', 'my', 'eyes', 'scratched', 'Please', '.', 'I', 'have', \"n't\", 'heard', 'from', 'her', 'in', 'seven', 'months', ',', 'and', 'And', 'now', ',', \"y'know\", ',', 'I', \"'m\", 'like', '...', 'I', \"'m\", 'like', 'the', 'other', 'woman', '!', 'I', 'Right', ',', 'I', \"'ll\", 'see', 'you', 'guys', 'later', '...', 'Mindy', '.', 'Hey', ',', 'you', '....', 'So', ',', 'what', \"'s\", 'up', '?', 'Sure', 'we', 'should', '...', 'So', '.', 'Okay', '.', 'Of', 'course', '!', 'Was', 'that', 'all', 'you', 'wanted', 'to', 'ask', 'me', '?', 'Ohhhh', '!', '!', '...', 'What', '?', 'What', '?', 'Oh', 'sure', 'it', 'is', '!', 'Um', ',', 'what-', 'what', 'would', 'make', 'you', 'think', 'that', '?', 'Really', '.', 'Mindy', ',', 'if', 'it', \"'ll\", 'make', 'you', 'feel', 'any', 'What', '?', 'What', \"'s\", 'what', 'you', 'were', 'afraid', 'of', '?', 'What', '?', 'Uh', '..', 'Oh', ',', 'Mindy', ',', 'you', 'are', 'so', 'stupid', '.', 'Oh', ',', 'we', 'are', 'both', 'so', 'Smell', 'familiar', '?', 'Oh', ',', 'I', 'am', 'so', 'sorry', '.', 'Hey', '.', 'Got', 'a', 'second', '?', 'Uh', ',', 'we', 'are', 'here', 'to', 'break', 'up', 'with', 'you', '.', 'Uh-', 'which', 'one', 'of', 'us', 'are', 'you', 'talking', 'to', 'there', ',', 'Barr', '?', 'Even', 'when', 'we', 'were', 'having', 'sex', 'in', 'that', 'chair', '?', 'Please', '!', 'During', 'that', 'second', 'time', 'you', 'could', \"n't\", 'have', 'picked', 'Well', ',', 'the', 'first', 'time', 'did', \"n't\", 'really', 'count', '...', 'I', 'mean', ',', \"y'know\", ',', 'Okay', '.', 'Okay', ',', 'we', \"'ll\", 'be', 'here', '!', 'Hating', 'you', '!', 'Did', 'you', 'see', 'how', 'What', 'are', 'you', 'talking', 'about', '?', '!', 'Mindy', ',', 'the', 'guy', 'is', 'the', 'devil', '!', 'Oh', 'God', '.', 'And', 'I', 'hope', 'Barry', 'does', \"n't\", 'kill', 'you', 'and', 'eat', 'you', 'in', 'Aruba', '.', 'Yeah', '.', 'Yeah', '!', \"Y'know\", ',', 'ever', 'since', 'I', 'ran', 'out', 'on', 'Barry', 'at', 'the', 'wedding', ',', 'You', 'DO', \"N'T\", 'KNOW', '?', 'Monica', ',', 'would', 'you', 'calm', 'down', '?', 'The', 'credit', 'card', 'people', 'said', 'that', 'you', 'only', 'have', 'to', 'pay', 'for', 'the', 'stuff', 'that', 'you', 'bought', '.', 'Oh', 'no', ',', 'not', 'in', 'my', 'room', '!', 'I', \"'ll\", 'get', 'him', '.', 'Stop', 'it', '!', 'Marcel', '!', 'Bad', 'monkey', '!', 'Let', \"'s\", 'just', 'say', 'my', 'Curious', 'George', 'doll', 'is', 'no', 'longer', 'curious', '.', 'Oh', ',', 'Monica', '.', 'You', 'are', 'not', 'still', 'going', 'over', 'that', 'thing', '.', 'What', '?', 'You', \"'re\", 'not', 'an', 'artist', '.', 'Oh', ',', 'Monica', ',', \"c'mon\", ',', 'you', 'do', 'cool', 'things', '.', 'Oh', ',', 'it', \"'s\", 'so', 'late', 'for', \"'Shall\", 'we', \"'\", '...', 'Nooo', '...', 'Hey', '.', 'What', ',', 'what', ',', 'so', 'that', 'you', 'can', 'dance', 'with', 'the', 'woman', 'that', 'stole', 'your', 'credit', 'card', '?', 'Go', 'to', 'the', 'post', 'office', '!', 'I', \"'m\", 'sure', 'her', 'picture', \"'s\", 'up', '!', '...', 'Okay', ',', 'Monica', ',', \"y'know\", 'what', ',', 'honey', ',', 'you', \"'re\", 'kinda', 'losing', 'it', 'here', '!', 'I', 'mean', ',', 'this', 'is', 'really', 'becoming', 'like', 'a', 'weird', 'obsession', 'thing', '.', 'Which', 'one', 'do', 'you', 'think', 'she', 'is', '?', 'What', 'does', 'she', 'mean', '?', 'She', 'could', 'be', 'you', '.', 'What', '?', 'You', 'just', 'click', 'when', 'they', 'click', '.', 'Nope', '.', 'We', 'took', 'her', 'to', 'lunch', '.', 'No', 'way', '.', 'No', 'way', 'did', 'you', 'do', 'this', '.', 'Go', 'Monana', '!', 'Well', ',', 'you', 'ladies', 'are', 'not', 'the', 'only', 'ones', 'living', 'the', 'dream', '.', 'I', 'get', 'to', 'go', 'pour', 'coffee', 'for', 'people', 'I', 'do', \"n't\", 'know', '.', 'Do', \"n't\", 'wait', 'up', '.', 'Oh', ',', 'somebody', 'will', '.', 'Where', 'the', 'hell', \"'ve\", 'you', 'been', '?', 'Are', 'you', 'drunk', '?', '!', 'Oh', 'God', ',', 'oh', '.', 'Great', ',', 'Monica', ',', \"y'know\", 'what', ',', 'you', 'could', \"'ve\", 'called', ',', 'I', 'have', 'been', 'up', 'here', ',', 'I', \"'ve\", 'been', 'worried', '...', 'Monica', '?', 'Monica', '!', 'Yes', ',', 'yes', ',', 'it', 'does', '.', 'Okay', ',', 'look', ',', 'the', 'restaurant', 'called', ',', 'they', 'wan', 'na', 'know', 'if', 'you', \"'re\", 'gon', 'na', 'be', 'showing', 'up', 'for', 'work', '?', 'Okay', 'Monica', ',', 'what', 'are', 'you', 'doing', '?', 'You', \"'re\", 'gon', 'na', 'lose', 'your', 'job', '!', 'This', 'is', 'not', 'you', '!', 'Hello', '?', 'Yes', ',', 'she', 'is', ',', 'hold', 'on', 'a', 'second', ',', 'please', '.', 'Monana', ',', 'it', \"'s\", 'for', 'you', ',', 'the', 'credit', 'card', 'people', '.', 'What', '?', 'Marcel', ',', 'this', 'is', 'for', 'you', '.', 'It', \"'s\", ',', 'uh', ',', 'just', ',', \"y'know\", ',', 'something', 'to', ',', 'um', ',', 'do', 'on', 'the', \"'plane\", '.', 'No', '.', 'Shut', 'up', '!', 'All', 'right', ',', 'all', 'right', ',', 'all', 'right', '.', 'Last', 'night', ',', 'I', 'had', 'a', 'dream', 'that', ',', 'uh', ',', 'you', 'and', 'I', ',', 'were', '...', 'Well', ',', 'you', 'were', 'pretty', 'damnedy', 'good', '.', 'Well', ',', 'last', 'night', 'you', 'seemed', 'to', 'know', 'your', 'way', 'around', 'the', 'table', '.', 'Get', 'off', '.', 'What', 'are', 'you', 'playing', 'with', '?', 'Off', 'to', 'see', 'young', 'Ethan', '?', 'Just', 'a', 'touch', '.', 'Mon', ',', 'I', 'do', \"n't\", 'understand', '.', 'I', 'mean', ',', 'you', \"'ve\", 'been', 'dating', 'this', 'guy', 'since', 'like', ',', 'what', '...', 'his', 'midterms', '?', 'I', 'mean', ',', 'why', 'all', 'the', 'sudden', 'are', 'you', 'so', '...', 'Oh', '.', 'Could', 'tonight', 'be', 'the', 'Night', '?', 'So', ',', 'did', 'you', 'shave', 'your', 'legs', '?', 'Aha', '!', 'No', ',', 'forget', 'it', '.', 'All', 'right', ',', 'fine', '.', 'Um', ',', 'you', 'were', 'not', 'the', 'only', 'one', 'there', '.', 'Joey', 'was', 'there', 'too', '.', 'No', '.', 'No', ',', 'it', 'was', 'just', 'the', 'three', 'of', 'us', '.', 'He', ',', 'he', ',', 'he', '.', 'You', 'know', 'what', '?', 'There', 'were', 'times', 'when', 'it', 'was', \"n't\", 'even', 'me', '.', 'Mon', ',', 'Ethan', 'called', 'again', '.', 'Mon', '?', 'Ethan', 'called', 'again', '.', 'I', ',', 'I', 'did', \"n't\", 'say', 'any', '...', 'I', 'sw', '...', 'I', 'did', 'not', 'say', 'anything', ',', 'I', 'swear', '.', 'Where', 'are', 'you', 'going', '?', 'Hey', ',', 'did', 'you', 'guys', 'check', 'out', 'those', 'new', 'handdryers', 'in', 'the', 'bathroom', '?', 'True', 'story', '.', 'Let', \"'s\", 'dry', \"'em\", 'again', '.', 'Oooooooooh', '.', 'Oh', ',', 'that', \"'s\", 'nice', '.', 'Oh', ',', 'oh', '.', 'Huh', ',', 'Ross', '.', 'Ross', '?', 'You', 'are', '.', 'Well', ',', 'um', '...', 'We', ',', 'we', ',', 'we', 'were', 'just', '...', 'What', '?', 'What', '?', 'I', 'do', \"n't\", 'know', 'where', 'the', 'phone', 'is', '.', 'Ross', '?', 'What', ',', 'so', 'I', 'ca', \"n't\", 'lokk', 'nice', '?', 'There', 'might', 'be', 'doctors', 'there', '.', 'Rossy', ',', 'Rossy', '.', 'Oh', ',', 'Ross', ',', 'relax', '.', 'It', \"'s\", 'probably', 'like', 'two', 'dollars', 'for', 'the', 'first', 'contraction', ',', 'and', 'then', 'fifty', 'cents', 'for', 'each', 'additional', 'contraction', '.', 'What', ',', 'it', \"'s\", 'ok', 'when', 'Chandler', 'does', 'it', '?', 'Hi', ',', 'I', 'thought', 'you', 'might', 'like', 'some', 'ice', 'chips', '.', 'And', 'if', 'you', 'need', 'anything', 'else', ',', 'I', '--', 'do', 'not', 'believe', 'we', \"'ve\", 'met', '.', 'Hi', '.', 'I', \"'m\", 'uh', 'Rachel', 'Green', '.', 'I', \"'m\", 'Carol', \"'s\", 'ex-husband', \"'s\", 'sister', \"'s\", 'roommate', '.', 'Oh', ',', 'that', \"'s\", 'funny', '!', 'Hey', '.', 'Yeah', ',', 'well', ',', 'it', \"'s\", 'an', 'important', 'day', '.', 'I', 'wan', 'na', 'look', 'nice', '.', 'Um', ',', 'has', 'uh', 'Dr.', 'Franzblau', 'been', 'by', '?', 'Well', ',', 'where', 'is', 'he', '?', 'He', 'is', 'supposed', 'to', 'be', 'here', '.', 'What', 'if', 'the', 'baby', 'needs', 'him', '?', 'Yeah', ',', 'why', '?', 'No', ',', 'honey', ',', 'they', \"'re\", 'not', ',', 'but', 'do', \"n't\", 'worry', ',', 'because', 'we', 'are', 'going', 'to', 'find', 'them', ',', 'and', 'until', 'we', 'do', ',', 'we', 'are', 'all', 'here', 'for', 'you', ',', 'ok', '?', 'Ok', '?', 'Ok', ',', 'so', 'anyway', ',', 'you', 'were', 'telling', 'me', 'about', 'Paris', ',', 'it', 'sounds', 'fascinating', '.', 'No', ',', 'no', ',', 'not', 'at', 'the', 'moment', ',', 'no', ',', 'I', \"'m\", 'not', '.', 'Are', 'you', '?', 'Right', ',', 'yeah', ',', 'I', \"'ve\", 'heard', 'that', 'about', 'cute', 'doctors', '.', 'Oh', '.', 'I', \"'m\", 'a', 'waitress', '.', 'Yeah', ',', 'gotcha', '.', 'Ok.', 'That', \"'s\", 'fine', '.', 'Yeah', ',', 'honey', ',', 'they', 'would', \"n't\", 'miss', 'this', '.', 'Oh', ',', 'god', ',', 'I', 'ca', \"n't\", 'believe', 'one', 'of', 'us', 'actually', 'has', 'one', 'of', 'these', '.', 'Oh', ',', 'I', 'know', '.', 'Look', 'at', 'him', '.', 'You', 'guys', 'wan', 'na', 'get', 'some', 'coffee', '?', 'Oh', 'my', 'god', '.', 'Oh', 'my', 'god', '.', 'Excuse', 'me', '.', 'Emergency', '!', 'Excuse', 'me', '!', 'Oh', ',', 'there', 'you', 'are', '!', 'Hi', '!', 'Oh', ',', 'so', ',', 'so', ',', 'how', 'was', 'China', ',', 'you', '?', 'What', '?', 'I', 'am', '?', 'Oh', ',', 'look', 'at', 'that', ',', 'yes', 'I', 'am', '.', 'Enough', 'about', 'me', ',', 'enough', 'about', 'me', ',', 'Mr.', 'Back', 'from', 'the', 'Orient', '.', 'I', 'wan', 'na', 'hear', 'everything', '!', 'These', 'are', ',', 'these', 'are', \"n't\", 'for', 'you', '.', 'These', 'are', 'for', 'you', '.', 'Welcome', 'to', 'our', 'country', '.', 'Ok', ',', 'well', ',', 'not', 'a', 'problem', '.', 'We', \"'ll\", 'just', 'use', 'them', 'to', 'stop', 'the', 'bleeding', '.', 'Ok.', 'Baggage', 'claim', '?', 'Ok.', 'Airport', ',', 'airport', '.', 'Ross', ',', 'not', 'alone', ',', 'Julie', ',', 'arm', 'around', 'her', '.', 'Cramp', ',', 'cramp', '.', 'You', ',', 'you', ',', 'you', 'said', 'he', 'liked', 'me', '.', 'You', ',', 'you', 'slowpokes', '!', 'And', 'the', 'chicken', 'poops', 'in', 'her', 'lap', '.', 'Oh', ',', 'I', \"'m\", 'so', 'sorry', '.', 'I', 'just', 'gave', 'away', 'the', 'ending', ',', 'did', \"n't\", 'I', '?', 'Oh', '!', 'It', \"'s\", 'just', ',', 'I', 'just', 'heard', 'this', 'story', 'in', 'the', 'cab', ',', 'and', 'it', 'is', 'all', 'I', 'can', 'think', 'about', '.', 'Julie', '!', 'Julie', ',', 'is', \"n't\", 'that', 'great', '?', 'I', 'mean', ',', 'is', \"n't\", 'that', 'just', 'kick-', 'you-in-the-crotch', ',', 'spit-on-your-neck', 'fantastic', '?', 'Yeah', ',', 'sure', '.', 'Did', 'you', 'talk', 'to', 'him', '?', 'Then', ',', 'no', '.', 'Here', \"'s\", 'your', 'lemonade', '.', 'Oh', '.', 'Well', 'than', ',', 'you', 'better', 'go', 'take', 'that', 'back', 'because', 'they', \"'re\", 'gon', 'na', 'charge', 'you', 'for', 'that', '.', 'Go', 'go', 'go', 'go', ',', 'come', 'on', '!', 'Well', ',', 'what', 'did', 'you', 'find', 'out', '?', 'Sorry', ',', 'I', 'thought', 'you', 'were', 'talking', 'to', 'me', '.', 'Ok', ',', 'ok', ',', 'ok.', 'How', 'did', 'this', 'happen', 'to', 'me', '?', 'How', 'did', 'this', 'happen', 'to', 'me', '?', 'A', 'week', 'ago', ',', 'two', 'weeks', 'ago', ',', 'I', 'was', 'fine', '.', 'Ross', 'was', 'just', 'Ross', ',', 'just', 'this', 'guy', '.', 'Now', 'he', \"'s\", 'Rrrooossss', ',', 'oh', ',', 'this', 'really', 'great', 'guy', 'that', 'I', 'ca', \"n't\", 'have', '.', 'I', 'know', 'you', 'did', '.', 'I', \"'m\", 'just', 'gon', 'na', 'deal', 'with', 'it', ',', 'I', \"'m\", 'just', 'gon', 'na', 'deal', 'with', 'it', '.', 'I', 'got', 'ta', 'get', 'out', 'of', 'here', '.', 'Uh', ',', 'morning', '.', 'Do', 'you', 'guys', 'think', 'you', 'could', 'close', 'your', 'eyes', 'for', 'just', 'a', 'sec', '?', 'Well', ',', 'I', 'sorta', 'did', 'a', 'stupid', 'thing', 'last', 'night', '.', 'Ok', ',', 'Paulo', ',', 'why', 'do', \"n't\", 'you', 'just', 'go', 'get', 'dressed', ',', 'and', 'then', 'you', 'be', 'on', 'your', 'way', ',', 'ok', ',', 'bye-bye', '.', 'I', 'do', \"n't\", 'know', ',', 'I', 'just', 'kinda', 'ran', 'into', 'him', 'last', 'night', '.', 'At', 'his', 'apartment', '.', 'Is', 'this', 'juice', '?', 'I', 'know', ',', 'I', 'know', 'I', \"'m\", 'a', 'pathetic', 'loser', '.', 'Yeah', ',', 'he', \"'s\", 'back', '.', 'Is', 'that', 'a', 'problem', '?', 'I', \"'m\", 'glad', 'it', \"'s\", 'not', 'a', 'problem', '.', 'How', 'is', 'she', '?', 'I', \"'m\", 'ok', '.', 'When', 'I', 'saw', 'him', 'get', 'off', 'that', 'plane', 'with', 'her', ',', 'I', 'really', 'thought', 'I', 'hit', 'rock', 'bottom', '.', 'But', 'today', ',', 'it', \"'s\", 'like', 'there', \"'s\", 'rock', 'bottom', ',', 'then', '50', 'feet', 'of', 'crap', ',', 'then', 'me', '.', 'Come', 'on', '.', 'How', 'can', 'I', 'just', 'tell', 'him', '?', 'What', 'about', 'Julie', '?', 'I', 'do', \"n't\", 'know', ',', 'I', 'do', \"n't\", 'know', '.', 'Wait', ',', 'are', 'you', 'leaving', '?', 'Well', ',', 'first', 'of', 'all', ',', 'Paulo', 'and', 'I', 'are', 'not', 'back', 'together', '.', 'It', 'was', 'just', 'a', 'stupid', 'thing', 'I', 'did', ',', 'and', 'if', 'I', 'could', 'go', 'back', 'in', 'time', 'and', 'do', 'it', 'again', ',', 'well', ',', 'I', 'would', \"n't\", '.', 'Um', ',', 'second', 'of', 'all', ',', 'what', '?', 'No', '.', 'No', ',', 'I', 'think', 'that', 'was', 'the', 'whole', 'all', '.', 'No', '.', 'No', 'no', 'no', 'no', 'no', '.', 'That', \"'s\", 'Rodney', 'McDowell', '.', 'Andy', 'McDowell', 'is', 'the', 'guy', 'from', 'Planet', 'of', 'the', 'Apes', '.', 'You', \"'re\", 'welcome', '.', 'Yeah', ',', 'I', 'forget', 'which', 'ones', '.', 'Thank', 'you', '.', 'What', 'a', 'bitch', '.', 'Hey', ',', 'guys', ',', 'what', \"'s\", 'up', '.', 'Good', ',', 'Pheebs', '.', 'What', \"'d\", 'you', 'buy', '?', 'You', 'went', 'shopping', 'for', 'fur', '?', 'You', 'bought', 'boobs', '?', 'Oh', ',', 'this', 'is', 'so', 'cute', '.', 'Did', 'you', 'just', 'say', 'Hi', ',', 'Jew', '?', 'Phoebe', ',', 'that', 'is', 'juice', ',', 'squeezed', 'from', 'a', 'person', '.', 'They', 'took', 'Ben', 'to', 'the', 'park', '.', 'Where', \"'ve\", 'you', 'been', '?', 'Oh', ',', 'no', 'problem', '.', 'You', 'can', 'borrow', 'it', ',', 'by', 'the', 'way', '.', 'Here', 'are', 'your', 'keys', ',', 'hon', '.', 'Mon', ',', 'if', 'uh', 'you', 'were', 'at', 'lunch', 'alone', ',', 'how', 'come', 'it', 'cost', 'you', 'uh', '53', 'dollars', '?', 'And', 'sorta', 'just', 'put', 'the', 'receipt', 'back', 'in', 'your', 'pocket', 'Monica', ',', 'what', 'is', 'with', 'you', '?', 'Who', \"'d\", 'you', 'have', 'lunch', 'with', '?', 'Who', '?', 'What', '?', 'You', 'were', 'with', 'Julie', '?', 'Oh', '.', 'Oh', 'my', 'god', '.', 'Yeah', ',', 'right', '.', 'Oh', ',', 'please', ',', 'you', 'wanted', 'to', 'get', 'caught', '.', 'Oh', ',', 'so', 'you', 'just', 'sort', 'of', 'happened', 'to', 'leave', 'it', 'in', 'here', '?', 'Ok', ',', 'Monica', '.', 'I', 'just', 'have', 'to', 'know', 'one', 'thing', '.', 'Did', 'you', 'go', 'with', 'her', 'to', 'Bloomingdales', '?', 'Oh', '!', 'Ok', ',', 'ok', ',', 'ok', ',', 'I', 'just', 'really', ',', 'uh', ',', 'I', 'just', 'really', 'need', 'to', 'not', 'be', 'with', 'you', 'right', 'now', '.', 'Well', 'that', 'works', 'out', 'good', ',', 'because', 'I', \"'m\", 'not', 'listening', '.', 'Oh', ',', 'I', \"'m\", 'sorry', ',', 'did', 'my', 'back', 'hurt', 'your', 'knife', '?', 'Yes', '.', 'Yes', '.', 'Monica', ',', 'you', 'do', \"n't\", 'get', 'it', '.', 'It', \"'s\", 'bad', 'enough', 'that', 'she', \"'s\", 'stolen', 'the', 'guy', 'who', 'might', 'actually', 'be', 'the', 'person', 'that', 'I', 'am', 'supposed', 'to', 'be', 'with', ',', 'but', 'now', ',', 'she', \"'s\", 'actually', ',', 'but', 'now', 'she', \"'s\", 'actually', 'stealing', 'you', '.', 'I', 'love', 'you', 'too', '.', 'I', \"'d\", 'do', 'anything', 'for', 'you', ',', 'you', 'know', 'that', '.', 'So', '.', 'I', 'just', 'thought', 'the', 'two', 'of', 'us', 'should', 'hang', 'out', 'for', 'a', 'bit', '.', 'I', 'mean', ',', 'you', 'know', ',', 'we', \"'ve\", 'never', 'really', 'talked', '.', 'I', 'guess', 'you', \"'d\", 'know', 'that', ',', 'being', 'one', 'of', 'the', 'two', 'of', 'us', ',', 'though', ',', 'right', '?', 'Really', '?', 'Me', '?', 'Well', ',', 'you', \"'re\", 'not', 'totally', 'paranoid', '.', 'Um', ',', 'ok', ',', 'uh', ',', 'oh', 'god', ',', 'um', ',', 'when', 'you', 'and', 'uh', 'Ross', 'first', 'started', 'going', 'out', ',', 'it', 'was', 'really', 'hard', 'for', 'me', ',', 'um', ',', 'for', 'many', 'reasons', ',', 'which', 'I', \"'m\", 'not', 'gon', 'na', 'bore', 'you', 'with', 'now', ',', 'but', 'um', ',', 'I', 'just', ',', 'I', 'see', 'how', 'happy', 'he', 'is', ',', 'you', 'know', ',', 'and', 'how', 'good', 'you', 'guys', 'are', 'together', ',', 'and', 'um', ',', 'Monica', \"'s\", 'always', 'saying', 'how', 'nice', 'you', 'are', ',', 'and', 'god', 'I', 'hate', 'it', 'when', 'she', \"'s\", 'right', '.', 'Yeah', ',', 'that', \"'d\", 'be', 'great', '.', 'I', \"'d\", 'love', 'it', '.', 'All', 'right', ',', 'Julie', '.', 'What', 'a', 'manipulative', 'bitch', '.', 'Come', 'on', ',', 'they', 'were', 'not', 'that', 'huge', '.', 'You', 'do', \"n't\", 'have', 'birds', '.', 'All', 'right', ',', 'bye-bye', '.', '``', 'Oh', ',', 'my', ',', 'god', '.', \"''\", 'We', 'won', '.', 'We', 'won', '!', 'How', 'did', 'this', 'happen', '?', 'Ok', ',', 'so', 'let', \"'s\", 'talk', 'money', '.', 'Have', 'you', 'ever', 'seen', 'so', 'much', 'crap', '?', 'Monica', ',', 'Monica', ',', 'look', 'at', 'this', 'lamp', '.', 'Is', 'this', 'tacky', 'or', 'what', '?', 'We', 'have', 'to', 'have', 'this', '.', 'What', '?', 'Come', 'on', ',', 'it', \"'s\", 'not', 'like', 'I', \"'m\", 'asking', 'for', 'this', 'girly', 'clock', 'or', 'anything', ',', 'which', ',', 'by', 'the', 'way', ',', 'I', 'also', 'think', 'is', 'really', 'cool', '.', 'Well', ',', 'what', 'about', 'my', 'stuff', '?', 'You', 'still', 'think', 'of', 'it', 'as', 'your', 'apartment', ',', 'do', \"n't\", 'you', '?', 'Yes', 'you', 'do', '.', 'You', 'think', 'of', 'it', 'as', 'your', 'apartment', ',', 'and', 'I', \"'m\", 'just', 'somebody', 'who', 'rents', 'a', 'room', '.', 'Ok', ',', 'while', 'you', '``', 'mmm', \"''\", 'on', 'it', 'for', 'awhile', ',', 'I', \"'m\", 'gon', 'na', 'go', 'find', 'a', 'place', 'for', 'my', 'new', 'lamp', '.', 'What', '?', 'Monica', ',', 'let', 'it', 'go', '.', 'Well', ',', 'then', ',', 'you', \"'ll\", 'just', 'have', 'to', 'eat', 'the', 'other', 'lamps', '.', 'I', 'am', '.', 'Let', 'me', 'just', 'get', 'my', 'coat', '.', 'Oh', ',', 'please', ',', 'Monica', '.', 'You', \"'ve\", 'always', 'hated', 'my', 'lamp', ',', 'and', 'then', ',', 'all', 'of', 'a', 'sudden', ',', 'it', \"'s\", 'just', 'magically', 'broken', '?', 'Hey', 'Chandler', '.', 'Monica', 'just', 'broke', 'my', 'seashell', 'lamp', '.', 'Ok', ',', 'you', 'win', '.', 'Chandler', ',', 'you', 'have', 'just', 'described', 'virtually', 'every', 'man', 'that', 'we', 'have', 'ever', 'gone', 'out', 'with', '.', 'She', \"'s\", 'right', '.', 'She', \"'s\", 'right', '.', 'You', 'are', 'no', 'different', 'than', 'the', 'rest', 'of', 'them', '.', 'Yeah', '.', 'You', \"'re\", 'not', 'gon', 'na', 'end', 'up', 'alone', '.', 'You', 'are', 'ready', 'to', 'make', 'a', 'commitment', '!', 'What', 'you', 'got', 'there', '?', 'Something', 'else', 'that', \"'s\", 'not', 'yours', 'that', 'you', 'can', 'break', '?', 'Thank', 'you', '.', 'It', \"'s\", 'really', 'not', 'that', 'big', '!', 'Mom', ',', 'would', 'you', 'relax', '.', 'That', 'was', '10', 'blocks', 'from', 'here', 'and', ',', 'the', ',', 'the', 'woman', 'was', 'walking', 'alone', 'at', 'night', ',', 'I', 'would', 'never', 'do', 'that', '.', 'Mom', ',', \"c'mon\", ',', 'stop', 'worrying', '.', 'This', 'is', 'a', 'safe', 'street', ',', 'this', 'is', 'a', 'safe', 'building', ',', 'there', \"'s\", 'nothing', 'OH', 'MY', 'GOOOD', ',', 'oh', 'my', 'God', ',', 'oh', 'I', 'got', 'ta', 'go', ',', 'I', 'got', 'ta', 'go', ',', 'I', 'got', 'ta', 'go', '.', 'OK', ',', 'that', \"'s\", 'fine', ',', 'you', 'just', 'read', 'the', 'paper', ',', 'I', \"'m\", 'gon', 'na', 'get', 'a', 'pot', ',', 'it', \"'s\", 'not', 'for', 'you', '.', 'OK', ',', 'that', \"'s\", 'fine', ',', 'read', 'the', 'Family', 'Circus', ',', 'enjoy', 'the', 'gentle', 'comedy', '.', 'Aaahh', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'oh', 'my', 'God', ',', 'aaaaahh', '.', 'It', \"'s\", 'open', 'you', 'guys', '.', 'Hi', ',', 'hi', 'can', 'I', 'help', 'you', '?', 'Uh', ',', 'no', 'she', 'does', \"n't\", 'but', 'I', 'can', ',', 'I', 'can', 'get', 'a', 'message', 'to', 'her', '.', 'What', '?', 'What', '!', 'Oh', 'as', ',', 'as', 'opposed', 'to', 'your', 'other', 'multi-functional', 'nipples', '?', 'Ooh', ',', 'Julie', \"'s\", 'so', 'smart', ',', 'Julie', \"'s\", 'so', 'special', '.', 'Ohh', ',', 'I', \"'m\", 'gon', 'na', 'have', 'to', 'get', 'over', 'it', '.', 'God', ',', 'see', 'I', 'did', \"n't\", 'know', 'that', \"'s\", 'I', 'had', 'to', 'do', ',', 'I', 'just', 'have', 'to', 'get', 'over', 'it', '.', 'Bye-bye', 'Julie', '.', 'Hey', '.', 'Hey', ',', \"c'mon\", ',', 'cut', 'it', 'out', '.', 'What', '?', 'Sure', '.', 'What', '?', \"C'mon\", ',', 'talk', 'to', 'me', '.', 'Why', '?', 'Who', \"'s\", 'not', 'having', '.', '.', '.', 'Are', 'you', 'and', 'Julie', 'not', ',', 'are', ',', 'are', 'you', 'and', ',', 'are', 'you', 'and', 'Julie', 'not', 'having', 'sex', '?', 'Wow', '.', 'Is', 'it', ',', 'is', 'it', \"'cause\", 'she', \"'s\", 'so', 'cold', 'in', 'bed', '.', 'Or', ',', 'or', 'is', 'it', \"'cause\", 'she', \"'s\", 'like', ',', 'kinda', 'bossy', ',', 'makes', 'it', 'feel', 'like', 'school', '?', 'No', ',', 'no', 'no', 'no', ',', 'do', \"n't\", 'need', 'to', 'know', 'the', 'details', '.', 'No', ',', 'no', ',', 'no', ',', 'no', 'I', 'do', \"n't\", 'think', 'it', \"'s\", 'weird', ',', 'I', 'think', ',', 'I', 'think', 'umm', ',', 'in', 'fact', ',', 'in', 'fact', 'you', 'know', 'what', 'I', 'think', '?', 'I', 'think', 'it', \"'s\", 'sexy', '.', 'Let', 'me', 'tell', 'you', 'something', '.', 'As', 'a', 'woman', 'there', 'is', 'nothing', 'sexier', 'than', 'a', 'man', 'who', 'does', 'not', 'want', 'to', 'have', 'sex', '.', 'Oh', 'yeah', '.', 'In', 'fact', 'you', 'know', 'what', 'I', \"'d\", 'do', '?', 'I', \"'d\", 'wait', '.', 'Yes', ',', 'absolutely', '.', 'I', 'would', 'wait', 'and', 'wait', '.', '.', '.', 'then', 'I', \"'d\", 'wait', 'some', 'more', '.', 'Oh', 'yeah', ',', 'I', 'do', \"n't\", 'care', 'how', 'much', 'she', 'tells', 'you', 'she', 'wants', 'it', ',', 'I', 'do', \"n't\", 'care', 'if', 'begs', ',', 'she', 'pleads', ',', 'she', 'tells', 'you', 'she', ',', 'she', \"'s\", 'gon', 'na', 'have', 'sex', 'with', ',', 'with', 'another', 'man', '.', 'That', 'just', 'means', 'it', \"'s\", 'working', '.', 'More', 'than', 'jewelry', '.', 'Oh', ',', 'God', ',', 'no', 'problem', '.', 'So', 'you', \"'re\", 'gon', 'na', 'go', 'with', 'the', 'uh', ',', 'waiting', 'thing', '?', 'What', 'did', ',', 'what', 'did', 'he', 'say', '?', 'Great', ',', 'people', 'having', 'sex', ',', 'that', \"'s\", 'just', 'what', 'I', 'need', 'to', 'see', '.', 'Well', ',', 'well', 'um', ',', 'you', 'know', ',', 'these', 'movies', 'are', 'offensive', 'and', 'uh', ',', 'degrading', 'to', 'women', 'and', 'females', '.', 'And', 'uh', ',', 'and', 'the', 'lighting', \"'s\", 'always', 'unflattering', '.', 'And', ',', 'Monica', 'help', 'me', 'out', 'here', '.', 'No', ',', 'no', ',', 'I', 'mean', ',', 'no', ',', \"c'mon\", 'you', 'guys', ',', 'I', 'mean', ',', \"c'mon\", 'look', 'it', \"'s\", 'only', 'eleven', 'thirty', '.', 'Let', \"'s\", 'just', 'talk', ',', 'we', 'never', 'just', 'hang', 'out', 'and', 'talk', 'anymore', '.', 'Maybe', 'that', \"'s\", 'all', 'we', 'do', ',', 'what', 'about', 'Julie', '?', 'Well', ',', 'you', 'have', 'been', 'in', 'our', 'lives', 'for', 'nearly', 'two', 'months', 'now', 'and', 'we', 'do', \"n't\", 'really', 'know', 'you', '.', 'I', 'mean', ',', 'who', 'is', 'Julie', '?', 'I', 'mean', ',', 'what', 'do', 'you', 'like', ',', 'what', 'do', \"n't\", 'you', 'like', '?', 'We', 'wan', 'na', 'hear', 'everything', '.', 'So', '.', 'I', 'mean', ',', 'who', 'here', 'does', 'not', 'have', 'the', 'time', 'to', 'get', 'to', 'know', 'Julie', '?', 'OK', 'Julie', ',', 'so', 'now', 'let', \"'s\", 'start', 'with', 'your', 'childhood', ',', 'what', 'was', 'that', 'like', '?', 'Nah', ',', 'uh', ',', 'uh', ',', 'uh', ',', 'uh', '.', 'Now', ',', 'what', 'exactly', 'is', 'in', 'a', 'cobb', 'salad', '?', 'What', '?', 'So', ',', 'it', \"'s\", 'pretty', 'late', ',', 'you', \"'re\", 'probably', 'uh', ',', 'not', 'still', 'planning', 'on', '.', '.', '.', 'Oh', ',', 'well', ',', 'are', 'hey', ',', 'are', 'you', 'nervous', '?', 'Uh', ',', 'OK', ',', 'I', 'mean', 'uh', ',', 'what', ',', 'how', 'are', 'you', 'gon', 'na', 'handle', 'it', '.', 'I', 'mean', ',', 'are', ',', 'are', 'ya', 'gon', 'na', ',', 'are', 'ya', 'gon', 'na', 'talk', 'about', 'it', 'before', 'hand', ',', 'are', 'you', 'just', 'gon', 'na', 'pounce', '?', 'Nothing', ',', 'I', 'mean', ',', 'um', ',', 'it', 'is', 'your', 'first', 'time', 'with', 'her', 'and', ',', 'you', 'know', 'if', 'the', 'first', 'time', 'does', \"n't\", 'go', 'well', ',', 'well', 'then', 'that', \"'s\", ',', 'that', \"'s\", 'pretty', 'darn', 'hard', 'to', 'recover', 'from', '.', 'Maybe', 'you', 'should', 'put', 'it', 'off', '.', 'I', 'know', ',', 'yeah', ',', 'sorry', '.', 'Maybe', 'it', ',', 'maybe', 'it', 'does', \"n't\", 'have', 'to', 'be', 'this', 'tough', '.', 'I', 'mean', ',', 'maybe', 'you', 'were', 'on', 'the', 'right', 'track', 'with', 'this', 'whole', ',', 'you', 'know', ',', 'spontaneous', 'thing', '.', 'I', 'mean', ',', 'women', 'really', 'like', 'that', '.', 'Yeah', ',', 'I', 'mean', ',', 'you', 'know', 'it', ',', 'I', 'mean', ',', 'if', 'it', 'were', 'me', 'I', ',', 'I', ',', 'you', 'know', ',', 'I', \"'d\", 'want', 'you', 'to', ',', 'I', 'do', \"n't\", 'know', ',', 'like', 'catch', 'me', 'off', 'guard', ',', 'you', 'know', ',', 'with', 'like', 'a', 'really', 'good', 'kiss', ',', 'you', 'know', 'really', ',', 'sort', 'of', 'um', ',', 'soft', 'at', 'first', ',', 'then', 'maybe', 'um', 'brush', 'the', 'hair', 'away', 'from', 'my', 'face', ',', 'and', 'look', 'far', 'into', 'my', 'eyes', 'in', 'a', 'way', 'that', 'let', \"'s\", 'me', 'know', 'that', 'something', 'amazing', 'is', 'about', 'to', 'happen', '.', 'And', 'then', ',', 'I', 'do', \"n't\", 'know', ',', 'I', 'mean', 'you', \"'d\", 'pull', 'me', 'really', 'close', 'to', 'you', 'so', 'that', ',', 'so', 'that', 'I', \"'d\", 'be', 'pressed', 'up', ',', 'you', 'know', ',', 'right', 'against', 'you', '.', 'And', ',', 'um', ',', 'it', 'would', 'get', 'kind', 'of', 'sweaty', 'and', 'uh', ',', 'and', 'blurry', ',', 'and', 'then', 'it', \"'s\", 'just', 'happening', '.', 'Ohh', ',', 'God', '.', 'Hi', ',', 'Julie', '.', 'Yeah', ',', 'whoosh', '!', 'So', 'uh', ',', 'what', 'are', 'you', 'guys', 'doing', 'for', 'dinner', 'tonight', '?', 'Do', 'you', 'guys', 'ever', 'get', 'the', 'feeling', 'that', 'um', ',', 'Chandler', 'and', 'those', 'guys', 'just', 'do', \"n't\", 'get', 'that', 'we', 'do', \"n't\", 'make', 'as', 'much', 'money', 'as', 'they', 'do', '?', 'For', 'Ross', ',', 'Ross', ',', 'Ross', '.', 'Hey', '.', 'What', '?', 'Oh', ',', 'you', 'know', 'what', ',', 'we', 'have', \"n't\", 'even', 'looked', 'yet', '.', 'Yeah', ',', 'these', 'are', 'pretty', 'ch-ching', '.', 'Ok', ',', 'I', 'will', 'have', 'the', 'uh', ',', 'side', 'salad', '.', 'Uh', ',', 'I', 'do', \"n't\", 'know', '.', 'Why', 'do', \"n't\", 'you', 'put', 'it', 'right', 'here', 'next', 'to', 'my', 'water', '?', 'Um', ',', 'everyone', '?', 'Ok', ',', 'look', 'you', 'guys', ',', 'I', 'really', 'do', \"n't\", 'want', 'to', 'get', 'into', 'this', 'right', 'now', '.', 'I', 'think', 'it', \"'ll\", 'just', 'make', 'everyone', 'uncomfortable', '.', 'That', \"'s\", \"'cause\", 'you', 'have', 'it', '.', 'Basically', ',', 'there', \"'s\", 'the', 'thing', ',', 'and', 'then', 'there', \"'s\", 'the', 'stuff', 'after', 'the', 'thing', '.', 'Ok', '.', 'Thank', 'you', '.', 'Ross', ',', 'you', 'have', 'to', 'understand', 'that', 'your', 'nice', 'thing', 'makes', 'us', 'feel', 'this', 'big', '.', 'Ok', ',', 'we', 'never', 'shoulda', 'talked', 'about', 'this', '.', 'Me', 'neither', '.', 'What', '?', 'Come', 'on', ',', 'you', 'do', 'what', 'you', 'want', 'to', 'do', '.', 'Do', 'we', 'always', 'have', 'to', 'do', 'everything', 'together', '?', 'Fine', '.', 'Happy', 'birthday', '.', 'Oh', ',', 'well', ',', 'it', 'pretty', 'much', 'sucked', '.', 'How', 'was', 'yours', '?', 'Oh', 'yeah', '.', 'I', 'used', 'to', 'babysit', 'him', '.', 'Hey', ',', 'how', \"'s\", 'his', 'dad', '?', 'On', 'someone', \"'s\", 'lips', '?', 'Where', \"'d\", 'you', 'get', 'the', 'hickey', '?', 'What', 'party', '?', 'Who', 'gave', 'you', 'that', 'hickey', '?', 'Oh', '!', 'What', ',', 'as', 'part', 'of', 'your', 'poor', 'friends', 'outreach', 'program', '?', 'Oh', '!', 'Ok.', 'What', \"'s\", 'up', '?', 'But', 'what', 'about', 'Phoebe', '?', 'Ok', ',', 'ok', ',', 'so', 'you', \"'re\", 'not', 'a', 'fan', ',', 'but', 'I', 'mean', ',', 'come', 'on', ',', 'you', 'can', 'not', 'do', 'this', 'to', 'her', '.', 'Oh', ',', 'no', 'no', 'no', 'no', '.', 'Oh', 'no', 'no', 'no', 'no', '.', 'I', 'have', 'to', 'do', 'this', 'to', 'her', '?', 'Honey', ',', 'I', \"'m\", 'sorry', '.', 'Terry', 'is', 'a', 'jerk', ',', 'ok', '?', 'That', \"'s\", 'why', 'we', \"'re\", 'always', 'saying', '``', 'Terry', \"'s\", 'a', 'jerk', '!', \"''\", 'That', \"'s\", 'where', 'that', 'came', 'from', '.', 'Ok', ',', 'you', 'know', 'what', ',', 'lem', 'me', ',', 'let', 'me', 'just', 'see', 'what', 'else', 'I', 'can', 'do', '.', 'All', 'right', ',', 'look', ',', 'look', '.', 'Why', 'do', \"n't\", 'you', 'just', 'let', 'her', 'go', 'on', 'after', 'Stephanie', 'whatever-her-name-is', '.', 'I', 'mean', ',', 'you', 'wo', \"n't\", 'even', 'be', 'here', '.', 'You', 'do', \"n't\", 'pay', 'her', '.', 'It', \"'s\", 'not', 'gon', 'na', 'cost', 'you', 'anything', '.', 'Come', 'on', ',', 'Terry', ',', 'I', \"'ll\", 'even', 'clean', 'the', 'cappuccino', 'machine', '.', 'Of', 'course', 'I', 'clean', 'it', '.', 'I', 'mean', ',', 'I', ',', 'I', 'will', 'cleeeean', 'it', '.', 'I', 'mean', ',', 'I', 'will', 'cleeeean', 'it', '.', 'Done', '.', 'Yeah', '.', 'Who', \"'s\", 'workin', \"'\", 'for', 'you', 'babe', '?', 'What', '?', 'Oh', ',', 'no', ',', 'no', 'no', '.', 'I', 'meant', 'that', 'he', \"'s\", 'gon', 'na', 'be', 'paying', 'that', 'other', 'woman', 'beause', 'she', \"'s\", 'a', 'professional', '.', 'Well', ',', 'but', 'Pheebs', '.', 'Ok', ',', 'everybody', ',', 'let', \"'s\", 'give', 'a', 'uh', 'nice', 'warm', 'Central', 'Perk', 'welcome', 'to', '--', 'Uh', ',', 'to', 'Stephanie', 'Schiffer', '.', 'Hey', '.', 'Here', '.', 'I', 'thought', 'you', 'might', 'be', 'cold', '.', 'Whoa', ',', 'look', 'at', 'you', ',', 'you', 'did', 'pretty', 'well', '.', 'Do', 'you', '?', 'Well', ',', 'you', 'know', ',', 'honey', ',', 'I', 'do', \"n't\", 'think', 'everybody', 'gets', 'Smelly', 'Cat', '.', 'You', 'know', ',', 'I', 'mean', ',', 'if', 'all', 'you', \"'ve\", 'ever', 'actually', 'had', 'are', 'healthy', 'pets', ',', 'then', ',', 'whoosh', '!', 'Well', ',', 'people', 'missed', 'you', 'in', 'there', '.', 'And', 'in', 'fact', ',', 'there', 'was', 'actually', 'a', 'request', 'for', '``', 'Smelly', 'Cat', \"''\", '.', 'Well', ',', 'from', 'me', '.', 'And', 'I', 'know', 'it', \"'s\", 'not', 'your', 'big', 'money', 'song', ',', 'but', 'it', \"'s\", 'my', 'favorite', '.', 'So', ',', 'how', 'was', 'the', 'party', '.', 'Hey', 'Phoebs', ',', 'how', \"'d\", 'it', 'go', 'with', 'Scott', 'last', 'night', '?', 'Yeah', ',', 'but', 'how', 'much', 'can', 'you', 'tell', 'from', 'a', 'look', '?', 'What', '?', \"C'mon\", 'you', 'guys', ',', 'I', 'do', \"n't\", 'care', ',', 'I', 'have', 'a', 'date', 'tonight', '.', 'Yeah', ',', 'Monica', \"'s\", 'settin', \"'\", 'me', 'up', '.', 'Oh', 'what', ',', 'my', 'whole', 'insane', 'jealousy', 'thing', '?', 'Well', ',', 'ya', 'know', ',', 'as', 'much', 'fun', 'as', 'that', 'was', ',', 'I', \"'ve\", 'decided', 'to', 'opt', 'for', 'sanity', '.', 'Oh', 'yeah', ',', \"c'mon\", ',', 'I', \"'m\", 'movin', \"'\", 'on', ',', 'he', 'can', 'press', 'her', 'up', 'against', 'that', 'window', 'as', 'much', 'as', 'he', 'wants', '.', 'For', 'all', 'I', 'care', ',', 'he', 'can', 'throw', 'her', 'through', 'the', 'damn', 'thing', '.', 'Together', '?', 'Both', 'of', 'you', '?', 'Together', '.', 'Ohh', ',', 'well', ',', 'is', \"n't\", 'that', 'just', 'lovely', '.', 'That', \"'s\", 'something', 'the', 'two', 'of', 'you', 'will', 'be', 'able', 'to', 'enjoy', 'for', 'a', 'really', ',', 'really', ',', 'really', ',', 'really', ',', 'really', 'long', 'time', '.', 'Well', '.', 'Woah', ',', 'look', 'at', 'that', '!', 'I', 'got', 'ta', 'go', ',', 'I', 'got', 'ta', 'date', ',', 'with', 'a', 'man', '.', 'Um', ',', 'OK', ',', 'you', 'guys', 'have', 'a', 'really', 'uh', ',', 'have', 'a', 'really', 'good', 'night', 'and', 'you', 'two', 'have', 'a', 'uh', ',', 'have', 'a', 'uh', ',', 'really', 'good', 'cat', '.', 'OK', ',', 'we', \"'re\", 'not', 'supposed', 'to', 'take', 'these', 'when', 'we', 'leave', '.', 'How', 'long', 'do', 'cats', 'live', '?', 'Cats', ',', 'how', 'long', 'do', 'they', 'live', 'figuring', 'you', 'do', \"n't\", ',', 'you', 'know', ',', 'throw', \"'em\", 'under', 'a', 'bus', 'or', 'something', '?', 'That', \"'s\", 'just', 'great', '.', 'Oh', ',', 'right', ',', 'clink', '.', 'Oh', ',', 'no', ',', 'Michael', ',', 'it', \"'s\", 'not', 'you', '.', 'I', \"'m\", 'sorry', ',', 'it', \"'s\", 'just', ',', 'it', \"'s\", 'this', 'thing', '.', 'It', \"'s\", 'probably', 'not', 'as', 'bad', 'as', 'it', 'sounds', 'but', 'this', 'friend', 'of', 'mine', 'is', ',', 'is', 'getting', 'a', 'cat', 'with', 'his', 'girlfriend', '.', 'I', 'mean', 'he', 'just', 'started', 'going', 'out', 'with', 'her', '.', 'Ah', ',', 'hah-hah-hah-ho', ',', 'yeah', ',', 'he', 'wishes', '.', 'Oh', ',', 'I', \"'m\", 'sorry', ',', 'look', 'at', 'me', '.', 'OK', ',', 'Michael', ',', 'let', \"'s\", 'talk', 'about', 'you', '.', 'OK', ',', 'OK', '.', 'So', ',', 'you', 'ever', 'get', 'a', 'pet', 'with', 'a', 'girlfriend', '?', 'I', 'mean', ',', 'it', \"'s\", 'a', 'cat', ',', 'ya', 'know', ',', 'it', \"'s\", 'a', 'cat', '.', 'Why', 'ca', \"n't\", 'they', 'get', 'one', 'of', 'those', 'bugs', ',', 'ya', 'know', ',', 'one', 'of', 'those', 'fruitflys', ',', 'those', 'things', 'that', 'live', 'for', 'like', 'a', 'day', 'or', 'something', '?', 'What', \"'re\", 'they', 'called', ',', 'what', \"'re\", 'they', 'called', ',', 'what', \"'re\", 'they', 'called', '?', 'Yes', '!', 'Thank', 'you', '.', 'Oh', ',', 'you', \"'re\", 'not', 'having', 'fun', ',', 'are', 'you', '?', 'Oh', ',', 'look', 'at', 'me', ',', 'look', 'at', 'me', '.', 'Oh', ',', 'I', \"'m\", 'on', 'a', 'date', 'with', 'a', 'really', 'great', 'guy', ',', 'all', 'I', 'can', 'think', 'about', 'is', 'Ross', 'and', 'his', 'cat', 'and', 'his', 'Julie', '.', 'I', 'just', 'want', 'to', 'get', 'over', 'him', 'gosh', ',', 'why', 'ca', \"n't\", 'I', 'do', 'that', '?', 'Yeah', '!', 'Closure', '.', 'That', \"'s\", 'what', 'it', 'is', ',', 'that', \"'s\", 'what', 'I', 'need', '.', 'God', ',', 'you', \"'re\", 'brilliant', '!', 'Why', 'did', \"n't\", 'I', 'think', 'of', 'that', '?', 'How', 'do', 'I', 'get', 'that', '?', 'Closure', ',', 'that', \"'s\", 'what', 'it', 'is', '.', 'Closure', '.', 'Hello', ',', 'excuse', 'me', '.', 'Excuse', 'me', ',', 'hel', '.', '.', '.', 'woo', 'Hello', ',', 'excuse', 'me', '.', 'Hi', ',', 'I', \"'m\", 'sorry', ',', 'I', 'need', 'to', 'borrow', 'your', 'phone', 'for', 'just', 'one', 'minute', '.', 'I', 'can', 'see', 'that', '.', 'I', ',', 'just', 'one', 'phone', 'call', ',', 'I', \"'ll\", 'be', 'very', 'quick', ',', 'I', \"'ll\", 'even', 'pay', 'for', 'it', 'myself', '.', 'OK', ',', 'you', \"'re\", 'bein', \"'\", 'a', 'little', 'weird', 'about', 'your', 'phone', '.', 'Thank', 'you', '.', 'OK', 'Machine', '.', 'Just', 'waiting', 'for', 'the', 'beep', '.', 'Ross', ',', 'hi', ',', 'it', \"'s\", 'Rachel', '.', 'I', \"'m\", 'just', 'calling', 'to', 'say', 'that', 'uhm', ',', 'everything', \"'s\", 'fine', 'and', 'I', \"'m\", 'really', 'happy', 'for', 'you', 'and', 'your', 'cat', 'who', ',', 'by', 'the', 'way', ',', 'I', 'think', 'you', 'should', 'name', 'Michael', '.', 'And', ',', 'you', 'know', ',', 'ya', 'see', 'there', 'I', \"'m\", 'thinking', 'of', 'names', 'so', 'obviously', ',', 'I', 'am', 'over', 'you', '.', 'I', 'am', 'over', 'you', 'and', 'that', ',', 'my', 'friend', ',', 'is', 'what', 'they', 'call', 'closure', '.', 'Ahhhh', '.', 'Uhmm', ',', 'I', 'think', 'there', 'was', 'a', 'restraunt', ',', 'I', 'know', 'there', 'was', 'wine', '.', '.', '.', 'I', 'do', \"n't\", 'know', ',', 'I', ',', 'I', 'feel', 'like', 'I', 'had', 'a', 'dream', 'about', 'you', 'last', 'night', 'but', 'I', ',', 'I', 'do', \"n't\", 'remember', '.', 'Did', 'we', 'speak', 'on', 'the', 'phone', 'last', 'night', '?', 'Did', 'you', 'call', 'me', '?', 'Huh', '.', 'Oh', 'yeah', ',', 'go', 'ahead', '.', 'Oh', 'my', 'God', '.', 'Oh', 'my', 'God', 'Ross', ',', 'no', ',', 'hang', 'up', 'the', 'phone', ',', 'give', 'me', 'the', 'phone', 'Ross', ',', 'give', 'me', 'the', 'phone', ',', 'give', 'me', 'the', 'phone', ',', 'give', 'me', 'the', '.', '.', '.', 'Ohh', 'God', '.', 'Ohh', ',', 'ohh', '.', 'Ohh', ',', 'OK', ',', 'OK', ',', 'OK', ',', 'well', ',', 'basically', ',', 'lately', ',', 'I', \"'ve\", 'uh', ',', 'I', \"'ve\", 'uh', ',', 'sort', 'of', 'had', 'feelings', 'for', 'you', '.', 'Yeah', ',', 'what', ',', 'so', ',', 'you', 'had', 'feelings', 'for', 'me', 'first', '.', 'Chandler', 'told', 'me', '.', 'When', 'you', 'were', 'in', 'China', '.', 'Meeting', 'Julie', '.', 'Are', 'you', 'over', 'me', '?', 'Wait', ',', 'so', ',', 'you', \"'re\", 'going', '?', 'OK', ',', 'OK.', 'Hi', '.', 'Oh', ',', 'that', \"'s\", 'um', ',', 'interesting', '.', 'Alright', ',', 'I', 'got', 'it', 'Ross', '.', 'What', '?', 'Hey', ',', 'I', 'was', 'doin', \"'\", 'great', 'before', 'I', 'found', 'out', 'about', 'you', '.', 'You', 'think', 'it', \"'s\", 'easy', 'for', 'me', 'to', 'see', 'you', 'with', 'Julie', '?', 'I', 'did', \"n't\", 'know', 'then', '.', 'And', 'how', 'come', 'you', 'never', 'said', 'anything', 'to', 'me', '.', 'Right', ',', 'you', ',', 'you', 'only', 'had', 'a', 'year', '.', 'We', 'only', 'hung', 'out', 'every', 'night', '.', 'Hey', ',', 'there', 'was', 'one', 'Italian', 'guy', ',', 'OK', ',', 'and', 'do', 'you', 'even', 'have', 'a', 'point', '?', 'Yeah', ',', 'what', \"'re\", 'you', 'saying', ',', 'you', 'just', 'sort', 'of', 'put', 'away', 'feelings', 'or', 'whatever', 'the', 'hell', 'it', 'was', 'you', 'felt', 'for', 'me', '?', 'Alright', ',', 'fine', ',', 'you', 'go', 'ahead', 'and', 'you', 'do', 'that', ',', 'alright', 'Ross', '.', \"'Cause\", 'I', 'do', \"n't\", 'need', 'your', 'stupid', 'ship', '.', 'Good', '.', 'And', 'ya', 'know', 'what', ',', 'now', 'I', \"'ve\", 'got', 'closure', '.', 'It', 'was', 'unbelievable', '!', 'Oh', ',', 'it', 'ended', 'very', 'well', '.', 'Well', ',', 'at', 'first', 'it', 'was', 'really', 'intense', ',', 'you', 'know', '.', 'And', 'then', ',', 'oh', ',', 'god', ',', 'and', 'then', 'we', 'just', 'sort', 'of', 'sunk', 'into', 'it', '.', 'No', ',', 'actually', 'first', 'they', 'started', 'on', 'my', 'waist', '.', 'And', 'then', ',', 'they', 'slid', 'up', ',', 'and', 'then', ',', 'they', 'were', 'in', 'my', 'hair', '.', 'Hey', ',', 'you', '.', 'Good', '.', 'How', 'are', 'you', '?', 'Hey', '.', 'Did', 'uh', ',', 'Ross', 'call', '?', 'Why', 'did', \"n't\", 'he', 'call', '?', 'He', \"'s\", 'gon', 'na', 'stay', 'with', 'Julie', ',', 'is', \"n't\", 'he', '?', 'He', \"'s\", 'gon', 'na', 'stay', 'with', 'her', 'and', 'she', \"'s\", 'going', 'to', 'be', 'all', ',', '``', 'Hi', ',', 'I', \"'m\", 'Julie', ',', 'Ross', 'picked', 'me', ',', 'and', 'we', \"'re\", 'gon', 'na', 'to', 'get', 'married', ',', 'have', 'a', 'lot', 'of', 'kids', 'and', 'dig', 'up', 'stuff', 'together', '.', \"''\", 'Oh', 'my', 'god', '.', 'Oh', 'my', 'god', ',', 'I', 'ca', \"n't\", 'believe', 'you', 'let', 'me', 'put', 'this', 'in', 'my', 'mouth', '.', 'Hey', ',', 'do', 'you', 'guys', 'have', '...', 'hi', '.', 'Where', 'you', 'goin', \"'\", '?', 'Oh', '.', 'Well', ',', 'what', \"'s\", 'the', 'other', 'thing', ',', 'what', 'do', 'I', 'think', '?', 'Really', '?', 'Oh', ',', 'god', '.', 'Oh', ',', 'oh', ',', 'this', 'is', 'good', ',', 'this', 'is', 'really', 'good', '.', 'Let', 'me', 'get', 'my', 'coat', '.', 'Ok', ',', 'he', \"'s\", 'goin', \"'\", 'to', 'get', 'my', 'coat', '.', 'He', \"'s\", 'goin', \"'\", 'to', 'get', 'my', 'coat', '.', 'Oh', 'my', 'god', ',', 'you', 'guys', '.', 'I', 'ca', \"n't\", 'believe', 'this', '.', 'This', 'is', 'unbelievable', '.', 'What', \"'s\", 'that', '?', 'What', \"'s\", 'that', '?', 'What', '?', 'I', 'saw', 'my', 'name', '.', 'What', 'is', 'it', '?', 'Well', 'what', 'is', 'it', '?', 'Let', 'me', 'see', '.', 'Ross', ',', 'Chandler', 'wrote', 'something', 'about', 'me', 'on', 'his', 'computer', 'and', 'he', 'wo', \"n't\", 'let', 'me', 'see', '.', 'And', 'I', \"'m\", 'in', 'it', '?', 'Then', 'let', 'me', 'read', 'it', '.', 'Come', 'on', '.', 'All', 'right', ',', 'you', 'know', 'what', '?', 'This', 'is', \"n't\", 'funny', 'anymore', '.', 'There', \"'s\", 'something', 'about', 'me', 'on', 'that', 'piece', 'of', 'paper', 'and', 'I', 'want', 'to', 'see', 'it', '.', 'All', 'right', ',', 'you', 'know', 'what', ',', 'that', \"'s\", 'fine', '.', 'If', 'you', 'guys', 'want', 'to', 'be', 'children', 'about', 'this', ',', 'that', \"'s\", 'fine', '.', 'I', 'do', 'not', 'need', 'to', 'see', 'it', '.', 'What', 'is', 'this', '?', 'Ross', ',', 'what', 'is', 'this', '?', 'Kind', 'of', 'ditzy', '?', 'Too', 'into', 'her', 'looks', '?', 'Spoiled', '?', 'Just', 'a', 'waitress', '?', 'Oh', '!', 'I', 'do', 'not', 'have', 'chubby', 'ankles', '!', 'She', 'is', 'not', 'Rachem', '.', 'What', 'the', 'hell', \"'s\", 'a', 'Rachem', '?', 'Is', 'that', 'some', 'stupid', 'paleontology', 'word', 'that', 'I', 'would', \"n't\", 'know', 'because', 'I', \"'m\", 'just', 'a', 'waitress', '.', 'When', 'somebody', 'does', 'not', 'buzz', 'you', 'in', ',', 'Ross', ',', 'that', 'means', 'go', 'away', '.', 'That', 'does', \"n't\", 'mean', 'please', 'climb', 'up', 'the', 'fire', 'escape', '.', 'Not', 'interested', '.', 'No', '.', 'That', \"'s\", 'what', 'I', 'said', '.', 'No', ',', 'you', 'guys', ',', 'you', 'really', 'do', \"n't\", 'have', 'to', 'go', ',', 'we', \"'re\", 'done', 'talking', '.', 'No', ',', 'you', 'do', \"n't\", ',', 'Ross', '.', 'Imagine', 'the', 'worst', 'things', 'you', 'think', 'about', 'yourself', '.', 'Now', ',', 'how', 'would', 'you', 'feel', 'if', 'the', 'one', 'person', 'that', 'you', 'trusted', 'the', 'most', 'in', 'the', 'world', 'not', 'only', 'thinks', 'them', 'too', ',', 'but', 'actually', 'uses', 'them', 'as', 'reasons', 'not', 'to', 'be', 'with', 'you', '.', 'Oh', ',', 'well', ',', 'that', \"'s\", ',', 'that', \"'s\", 'mighty', 'big', 'of', 'you', ',', 'Ross', '.', 'I', 'said', 'do', \"n't\", 'go', '!', 'Well', ',', 'then', ',', 'I', 'guess', 'that', \"'s\", 'the', 'difference', 'between', 'us', '.', 'See', ',', 'I', \"'d\", 'never', 'make', 'a', 'list', '.', 'Is', 'that', 'him', 'again', '?', 'Tell', 'him', 'I', \"'d\", 'come', 'to', 'the', 'phone', ',', 'but', 'my', 'ankles', 'are', 'weighin', \"'\", 'me', 'down', '.', 'Hey', '.', 'Uhh', ',', 'the', 'mailman', ',', 'the', 'super', '.', 'What', '?', 'Ooh', ',', 'goooosh', ',', 'ooh', ',', 'these', 'are', 'cookies', 'smashed', 'in', 'the', 'sports', 'section', '.', 'Horrible', 'and', 'degrading', 'list', 'of', 'reasons', 'not', 'to', 'be', 'with', 'me', '?', 'Phoebe', ',', 'I', 'thought', 'your', 'dad', 'was', 'in', 'prison', '.', 'How', 'have', 'you', 'never', 'been', 'on', 'Oprah', '?', 'Well', ',', 'that', 'does', \"n't\", 'sound', 'like', 'a', 'very', 'merry', 'Christmas', '.', 'No', ',', 'nothin', \"'\", '.', 'Oh', ',', 'by', 'the', 'way', 'Mon', ',', 'I', 'do', \"n't\", 'think', 'the', 'mailman', 'liked', 'your', 'cookies', '.', 'Here', 'are', 'the', 'ornaments', 'your', 'mom', 'sent', '.', 'Wha', '...', 'forget', 'it', 'Ross', ',', 'no', ',', 'I', 'am', 'not', 'gon', 'na', 'stand', 'here', 'and', 'make', 'a', 'list', 'of', '.', '.', '.', 'OK', ',', 'you', \"'re\", 'whiney', ',', 'you', 'are', ',', 'you', \"'re\", 'obsessive', ',', 'you', 'are', 'insecure', ',', 'you', \"'re\", ',', 'you', \"'re\", 'gutless', ',', 'you', 'know', ',', 'you', 'do', \"n't\", 'ever', ',', 'you', 'do', \"n't\", 'just', 'sort', 'of', 'seize', 'the', 'day', ',', 'you', 'know', '.', 'You', 'like', 'me', 'for', 'what', ',', 'a', 'year', ',', 'you', 'did', \"n't\", 'do', 'anything', 'about', 'it', '.', 'And', ',', 'uh', ',', 'oh', ',', 'you', 'wear', 'too', 'much', 'of', 'that', 'gel', 'in', 'your', 'hair', '.', 'Yeah', ',', 'and', 'you', 'know', 'what', '?', 'You', \"'re\", 'right', ',', 'I', 'do', 'feel', 'better', ',', 'thank', 'you', 'Ross', '.', 'Oh', ',', 'gosh', ',', 'it', \"'s\", 'hot', 'in', 'here', '.', 'Did', 'you', 'just', 'break', 'the', 'radiator', '?', 'I', \"'ll\", 'call', 'the', 'super', '.', 'Hi', ',', 'Mr.', 'Treeger', '.', 'Hi', ',', 'it', \"'s\", 'Rachel', 'Green', 'from', 'upstairs', '.', 'Yes', ',', 'somebody', ',', 'uh', ',', 'broke', 'our', 'knob', 'on', 'the', 'radiator', 'and', 'it', \"'s\", 'really', 'hot', 'in', 'here', '.', 'Yes', ',', 'it', \"'s\", ',', 'it', \"'s\", 'hot', 'enough', 'to', 'bake', 'cookies', '.', 'Well', ',', 'do', 'you', 'think', 'we', 'could', 'have', 'a', 'new', 'one', 'by', '6', '?', 'What', ',', 'no', ',', 'no', ',', 'Tuesday', ',', 'we', 'ca', \"n't\", 'wait', 'until', 'Tuesday', ',', 'we', \"'re\", 'having', 'a', 'party', 'tonight', '.', 'Hi', ',', 'welcome', 'to', 'our', 'tropical', 'Christmas', 'party', '.', 'You', 'can', 'put', 'your', 'coats', 'and', 'sweaters', 'and', 'pants', 'and', 'shirts', 'in', 'the', 'bedroom', '.', 'Mr.', 'Treeger', '.', 'Oh', ',', 'yeah', ',', 'well', 'hey', ',', 'welcome', 'to', 'our', 'sauna', '.', 'Yeah', ',', 'I', \"'m\", 'with', 'Mon', '.', \"What'cha\", 'gon', 'na', \"'\", 'do', '?', 'Nice', 'seizing', '.', '.', '.', 'gel', 'boy', '.', 'Huh-huh', ',', 'no', 'act', '--', 'no', ',', 'uhh', ',', 'that', ',', 'that', 'is', 'basil', '.', 'Huh-hoo', ',', 'yeah', ',', 'no', ',', 'it', \"'s\", 'still', 'basil', '.', 'Wiper', 'blades', '.', 'I', 'do', \"n't\", 'even', 'have', 'a', 'car', '.', 'Joey', ',', 'would', 'you', 'slow', 'down', ',', 'they', \"'re\", 'not', 'gon', 'na', 'be', 'sold', 'out', 'of', 'papers', 'at', 'one', \"o'clock\", 'in', 'the', 'morning', '.', 'Joey', ',', 'honey', ',', 'they', 'do', \"n't\", 'know', 'what', 'they', \"'re\", 'talking', 'about', '.', 'We', 'went', 'through', 'a', 'lot', 'of', 'wine', 'tonight', ',', 'you', 'guys', '.', 'I', 'had', 'one', 'glass', '.', 'OK', ',', 'so', 'that', \"'s\", '.', '.', '.', 'that', \"'s\", 'what', ',', 'two', 'bottles', ',', 'and', 'yet', 'somehow', 'we', 'went', 'through', 'five', '?', 'Ehhumm', ',', 'I', 'do', \"n't\", 'know', ',', 'why', 'do', \"n't\", 'you', 'taste', 'it', '.', 'Oh', ',', 'well', 'too', 'late', ',', 'sorry', ',', 'you', 'already', 'had', 'some', '.', 'Yeah', ',', 'we', \"'re\", 'gon', 'na', ',', 'we', \"'re\", 'gon', 'na', 'get', 'some', 'cake', '.', 'Uhmm', ',', 'well', 'actually', 'I', \"'m\", 'already', 'done', ',', 'but', 'I', ',', 'I', 'kinda', 'got', 'plans', '.', 'Yeah', ',', 'I', 'uhh', ',', 'I', 'have', 'a', ',', 'I', 'have', 'a', 'date', '.', 'What', ',', 'what', 'is', 'so', 'strange', 'about', 'me', 'having', 'a', 'date', '?', 'Noo', ',', 'no', ',', 'I', \"'m\", 'not', 'mad', 'at', 'him', ',', 'I', \"'m\", ',', 'I', \"'m\", 'not', 'really', 'anything', 'at', 'him', 'anymore', '.', 'I', 'do', \"n't\", 'know', '.', 'Whatever', 'I', 'was', 'feeling', ',', 'I', \"'m\", '.', '.', '.', 'not', '.', 'Oh', 'I', 'know', ',', 'I', \"'m\", 'sorry', 'you', 'guys', '.', 'You', \"'re\", 'just', 'gon', 'na', 'have', 'to', 'get', 'used', 'to', 'the', 'fact', 'that', 'I', 'will', 'not', 'be', 'dating', 'Ross', '.', 'Here', 'he', 'is', '.', 'Hi', '.', 'Guys', ',', 'this', 'is', 'Russ', '.', 'What', \"'s\", 'the', 'matter', '?', 'What', ',', 'is', \"n't\", 'he', 'sober', '?', 'Ohhh', ',', 'OK.', 'Maybe', 'it', 'was', 'just', 'the', 'kind', 'of', 'story', 'where', 'you', 'have', 'to', 'be', 'there', '.', 'Hi', 'Russ', ',', 'I', \"'ve\", 'just', 'got', 'two', 'more', 'tables', 'to', 'clean', 'and', 'then', 'we', \"'ll\", 'go', ',', 'OK.', 'Hi', '.', 'Hu-ahh', ',', 'waitressing', '?', 'Huh', ',', 'Bob', 'Sagett', '?', 'Oh', '.', 'Well', ',', 'we', \"'re\", 'not', 'seeing', 'each', 'other', ',', 'so', '.', '.', '.', 'Well', ',', 'yeah', ',', 'this', 'is', 'the', 'deal', '.', 'Um', ',', 'Russ', ',', 'you', 'ready', '?', 'Bye', '.', 'What', '?', 'No', ',', 'Phoebs', ',', 'I', \"'m\", 'dating', 'Russ', '.', 'Steve', 'sleeve', '.', 'Pheobe', ',', 'what', 'the', 'hell', 'are', 'you', 'talking', 'about', '?', 'Other', 'than', 'there', 'names', 'being', 'similar', ',', 'I', \"'m\", 'sorry', ',', 'I', 'do', 'not', 'see', 'what', 'you', \"'re\", 'seeing', '.', 'Ooh', ',', 'ooh', ',', 'ooh', ',', 'ooh', '.', 'Did', 'Joey', 'say', 'what', 'he', 'was', 'gon', 'na', 'do', 'when', 'he', 'left', '?', 'I', 'do', \"n't\", 'know', ',', 'who', 'would', 'I', 'have', 'to', 'sleep', 'with', '?', 'Why', 'would', 'I', 'have', 'to', 'sleep', 'with', 'you', '?', 'Oh', 'God', ',', 'even', 'his', 'knock', 'is', 'boring', '.', 'What', 'happened', '?', 'Did', 'I', 'miss', 'it', '?', 'Did', 'I', 'miss', 'it', '?', 'I', \"'m\", 'sorry', ',', 'what', '?', 'That', \"'s\", 'great', '!', 'What', 'do', 'you', 'mean', '?', 'Ok', ',', 'who', 'ordered', 'what', '?', 'Oh', 'god', '.', 'I', 'know', ',', 'but', 'it', \"'s\", 'just', 'it', \"'s\", 'the', 'first', 'time', ',', 'and', 'I', 'just', 'do', \"n't\", 'want', 'her', 'to', 'think', 'that', 'because', 'I', 'did', \"n't\", 'marry', 'Barry', ',', 'that', 'my', 'life', 'is', 'total', 'crap', ',', 'you', 'know', '?', 'Mom', '!', 'Pretty', 'much', '.', 'This', 'is', 'Joey', ',', 'and', 'Phoebe', ',', 'and', 'this', 'is', 'Chandler', ',', 'and', 'you', 'remember', 'Ross', '.', 'Oh', 'Mom', '!', 'Really', '?', 'Yeah', ',', 'well', 'just', 'be', 'glad', 'he', \"'s\", 'not', 'playing', 'a', 'smaller', 'instrument', '.', 'I', 'know', '.', 'And', 'Mom', ',', 'I', 'realize', 'you', 'and', 'Daddy', 'were', 'upset', 'when', 'I', 'did', \"n't\", 'marry', 'Barry', 'and', 'get', 'the', 'big', 'house', 'in', 'the', 'suburbs', 'with', 'all', 'the', 'security', 'and', 'everything', ',', 'but', 'this', 'is', 'just', 'so', 'much', 'better', 'for', 'me', ',', 'you', 'know', '?', 'For', '...', 'me', '.', 'Well', ',', 'what', 'do', 'you', 'mean', '?', 'Oh', 'god', '.', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'be', 'sick', '.', 'None', '.', 'No', '!', 'They', 'did', \"n't\", 'even', 'talk', 'to', 'each', 'other', '.', 'God', ',', 'how', 'was', 'I', 'supposed', 'to', 'know', 'they', 'were', 'having', 'problems', '?', 'I', 'just', 'ca', \"n't\", 'believe', 'this', 'is', 'happening', '.', 'I', 'mean', ',', 'when', 'I', 'was', 'little', ',', 'everybody', \"'s\", 'parents', 'were', 'getting', 'divorced', '.', 'I', 'just', 'figured', 'as', 'a', 'grownup', 'I', 'would', \"n't\", 'have', 'to', 'worry', 'about', 'this', '.', 'Well', ',', 'then', ',', 'you', 'know', ',', 'could', \"n't\", 'she', 'have', 'just', 'copied', 'my', 'haircut', '?', 'These', 'are', 'from', 'Halloween', 'three', 'years', 'ago', '.', 'No', ',', 'that', 'was', 'his', 'costume', '.', 'See', ',', 'he', \"'s\", 'actually', 'an', 'orthodontist', ',', 'but', 'he', 'came', 'as', 'a', 'regular', 'dentist', '.', 'Actually', ',', 'what', 'I', 'think', 'you', 'said', 'was', ',', '``', 'do', \"n't\", 'touch', 'that', ',', 'and', 'get', 'the', 'hell', 'out', 'of', 'my', 'kitchen', '.', \"''\", 'Hey', ',', 'Mon', ',', 'you', 'want', 'some', 'help', '?', 'She', \"'s\", 'still', 'with', 'you', '?', 'God', '!', 'Oh', '!', 'What', \"'s\", 'new', 'in', 'sex', '?', 'Oh', ',', 'I', \"'m\", 'sorry', '.', 'You', 'know', 'what', '?', 'I', 'can', 'not', 'have', 'this', 'conversation', 'with', 'you', '.', 'I', 'mean', ',', 'god', ',', 'you', 'just', 'come', 'in', 'here', ',', 'and', 'drop', 'this', 'bomb', 'on', 'me', ',', 'before', 'you', 'even', 'tell', 'Daddy', '.', 'What', '?', 'What', 'do', 'you', 'want', '?', 'Do', 'you', 'want', 'my', 'blessing', '?', 'You', 'want', 'me', 'to', 'talk', 'you', 'out', 'of', 'it', '?', 'Then', 'what', '?', 'What', 'do', 'you', 'want', '?', 'Why', 'on', 'earth', 'would', 'I', 'understand', 'this', '?', 'Oh', '.', 'Hey', ',', 'Mom', '?', 'Having', 'fun', '?', 'There', \"'s\", 'more', 'alcohol', ',', 'right', '?', 'I', 'had', 'a', 'wedding', '.', 'Oh', ',', 'Ross', ',', 'you', 'had', 'to', ',', 'I', 'mean', ',', 'he', 'was', 'humping', 'everything', 'in', 'sight', '.', 'I', 'mean', ',', 'I', 'have', 'a', 'Malibu', 'Barbi', 'that', 'will', 'no', 'longer', 'be', 'wearing', 'white', 'to', 'her', 'wedding', '.', 'Ya', 'know', ',', 'in', 'crazy', 'world', ',', 'that', 'means', 'you', \"'re\", 'married', '.', 'Oh', ',', 'Phoebe', ',', 'that', 'really', 'cute', 'guy', 'is', 'here', 'again', '.', 'And', 'she', \"'s\", 'not', 'crazy', '?', 'Oh', 'my', 'God', '.', 'Not', 'at', 'all', 'inappropriate', '!', 'Well', ',', 'so', 'what', \"'re\", 'you', 'gon', 'na', 'do', '?', 'No', 'no', 'no', ',', 'wait', ',', 'I', 'wan', 'na', 'see', 'what', 'happens', '.', 'Well', 'how', 'can', 'that', 'be', ',', 'you', 'were', 'just', 'kissing', 'Sabrina', '?', 'Oh', ',', 'I', 'know', ',', 'I', 'know', '.', 'Yes', ',', 'yes', 'it', 'is', 'true', '.', 'And', 'I', 'know', 'this', 'because', ',', 'because', 'he', 'pretended', 'to', 'be', 'Drake', 'to', ',', 'to', 'sleep', 'with', 'me', '.', 'You', \"'re\", 'kidding', '.', 'OK.', 'Now', 'just', 'how', 'big', 'of', 'a', 'star', 'is', 'Marcel', '?', 'What', 'what', 'what', 'what', '?', 'Ya', 'think', '?', 'No', ',', 'was', 'he', 'any', 'good', 'in', 'it', '?', 'Wow', ',', 'so', 'why', 'do', \"n't\", 'you', 'go', 'talk', 'to', 'him', '?', 'What', ',', 'so', 'you', 'go', 'over', 'there', ',', 'you', 'tell', 'him', 'you', 'think', 'he', \"'s\", 'cute', ',', 'what', \"'s\", 'the', 'worst', 'that', 'could', 'happen', '?', 'OK', ',', 'I', \"'m\", 'doin', \"'\", 'it', 'for', 'ya', '.', 'Excuse', 'me', '.', 'Hi', '.', 'Um', ',', 'this', 'is', 'gon', 'na', 'sound', 'kinda', 'goofy', 'but', 'uhhm', ',', 'my', 'friend', 'over', 'there', ',', 'who', 'cooks', 'by', 'the', 'way', ',', 'um', ',', 'she', 'thinks', 'you', \"'re\", 'cute', '.', 'I', ',', 'I', 'do', \"n't\", 'know', ',', 'um', ',', 'do', 'you', 'think', 'you', \"'re\", 'cute', '?', 'OK', ',', 'we', \"'re\", 'kinda', 'gettin', \"'\", 'off', 'the', 'track', 'here', '.', 'Um', ',', 'I', 'was', 'supposed', 'to', 'come', 'here', 'and', 'tell', 'you', 'my', 'friend', 'thinks', 'you', \"'re\", 'cute', '.', 'So', 'what', 'should', 'I', 'tell', 'her', '?', 'Agh', ',', 'what', 'a', 'jerk', '.', 'I', 'kept', 'talking', 'about', 'you', 'and', 'he', 'kept', 'asking', 'me', 'out', '.', 'I', 'mean', ',', 'naturally', ',', 'you', 'know', ',', 'I', 'said', 'no', '.', 'He', 'just', 'kept', 'asking', ',', 'and', 'asking', ',', 'and', 'asking', ',', 'and', 'asking', ',', 'and', 'asking', ',', 'and', 'asking', '.', 'Jean-Claude', 'she', 'said', 'yes', ',', 'I', \"'ll\", 'see', 'you', 'tonight', '.', 'Thank', 'you', '.', 'And', 'then', 'Jean-Claude', 'took', 'me', 'to', 'that', 'place', 'Crossroads', 'and', 'that', \"'s\", 'where', 'we', 'hung', 'out', 'with', 'Drew', 'Barrymore', '.', 'Does', 'anybody', 'need', 'anything', '?', 'That', 'is', 'so', 'unfair', '.', 'Alright', ',', 'I', 'feel', 'that', 'this', 'is', 'totally', 'unjustified', '.', 'She', 'gave', 'me', 'the', 'green', 'light', ',', 'I', 'did', 'nothing', 'but-', '.', 'Do', 'you', 'think', 'I', 'ca', \"n't\", 'see', 'you', 'in', 'the', 'TV', 'set', '?', 'That', 'is', 'the', 'most', 'ridiculous', '.', 'I', 'did', 'not', 'sell', 'you', 'out', '.', 'Would', 'you', 'let', 'me', 'talk', '.', 'OK', ',', 'well', ',', 'you', 'would', \"n't\", 'let', 'me', 'finish', 'and', 'I', 'was', 'jus-', 'Ow', '.', 'That', 'hurt', 'Ow', ',', 'you', 'stop', 'flicking', '.', 'Oh', ',', 'what', 'do', 'you', ',', 'you', 'want', 'me', 'to', 'stop', 'seeing', 'him', ',', 'is', 'that', 'what', 'you', 'want', '?', 'You', 'want', 'me', 'to', 'just', 'call', 'him', 'up', 'and', 'tell', 'him', 'that', 'you', \"'re\", 'seeing', 'him', 'instead', '?', 'That', \"'s\", 'what', 'you', 'want', '?', 'Oh', 'that', \"'s\", 'what', 'you', 'want', '.', 'Fine', '.', 'No', '.', 'No', '.', 'OK', ',', 'OK', ',', 'that', 'is', 'my', 'favorite', 'sweater', ',', 'that', 'is', 'my', 'third', 'date', 'sweater', '.', 'OK', ',', 'you', 'wan', 'na', 'play', '?', 'OK', ',', 'let', \"'s\", 'play', ',', 'let', \"'s\", 'play', '.', 'You', 'give', 'me', 'back', 'my', 'sweater', 'or', 'it', \"'s\", 'handbag', 'marinara', '.', 'Oh', 'yeah', '.', 'Well', ',', 'at', 'least', 'I', 'was', \"n't\", 'too', 'chicken', 'to', 'tell', 'some', 'guy', 'I', 'thought', 'he', 'was', 'cute', '.', 'I', \"'ll\", 'help', 'you', 'throw', 'out', 'your', 'purse', '.', 'Well', ',', 'I', \"'m\", 'sorry', 'I', 'went', 'out', 'with', 'him', 'when', 'I', 'knew', 'you', 'liked', 'him', '.', 'OK', ',', 'well', ',', 'bye', '.', 'OK', ',', 'well', ',', 'bye-bye', 'again', '.', 'Impressive', '.', 'Oh', 'yeah', '.', 'Hi', '.', 'Oh', ',', 'well', ',', 'you', 'know', ',', 'they', \"'re\", 'just', 'separated', 'so', ',', 'you', 'know', ',', 'never', 'know', ',', 'we', \"'ll\", 'see', '.', 'What', ',', 'what', 'incident', '?', 'What', '?', 'What', 'are', 'you', ',', 'what', 'are', 'you', 'doin', \"'\", '?', 'What', '?', 'Saving', ',', 'saving', ',', 'saving', 'me', 'from', 'the', 'pleasant', 'conversation', 'with', 'the', 'interesting', 'man', ',', 'saving', 'me', '?', 'OK', ',', 'Ross', ',', 'listen', 'to', 'me', ',', 'I', 'am', 'not', 'yours', 'to', 'save', '.', 'What', '?', 'OK', ',', 'you', 'know', 'what', ',', 'are', ',', 'are', 'you', 'being', 'like', ',', 'the', 'blind', 'date', 'guy', 'again', '?', 'Ross', ',', 'there', 'is', 'no', 'us', ',', 'OK.', 'No', ',', 'listen', 'to', 'me', '.', 'I', 'fell', 'for', 'you', 'and', 'I', 'get', 'clobbered', '.', 'You', 'then', 'fall', 'for', 'me', 'and', 'I', 'again', ',', 'somehow', ',', 'get', 'clobbered', '.', 'I', \"'m\", 'tired', 'of', 'being', 'clobbered', ',', 'ya', 'know', ',', 'it', \"'s\", ',', 'it', \"'s\", 'just', 'not', 'worth', 'it', '.', 'NO', 'but', 'Ross', '.', 'We', 'are', 'never', 'gon', 'na', 'happen', ',', 'OK', '.', 'Accept', 'that', '.', 'No', ',', 'no', ',', 'ACC-cept', 'that', '.', 'Hey', '.', 'I', \"'ve\", 'got', 'something', 'that', \"'s\", 'gon', 'na', 'make', 'you', 'happy', '.', 'Guess', 'what', 'Gunther', 'found', '?', 'Hi', '.', 'Oh', 'my', 'God', '.', 'They', 'had', 'to', 'reduce', 'it', 'because', 'of', ',', 'of', 'my', 'deviated', 'septum', '.', 'Oh', '.', 'Ahh', ',', 'so', 'do', 'you', ',', 'beautiful', '.', 'What', '?', 'Oh', ',', 'that', \"'s\", 'OK', ',', 'it', \"'s\", 'just', 'the', 'shoulder', ',', 'it', \"'s\", 'not', 'my', 'dress', '.', 'Oh', ',', 'thanks', '.', 'So', ',', 'uh', ',', 'what', 'are', 'you', 'gon', 'na', 'do', 'this', 'summer', '?', 'Is', 'my', 'hook', 'unhooked', '?', 'These', 'things', 'keep', 'falling', 'down', ',', 'I', 'ca', \"n't\", '.', '.', '.', 'Oh', ',', 'the', 'guys', 'are', 'here', '.', 'Oh', 'my', 'God', ',', 'look', 'there', \"'s\", 'Roy', 'Gublik', '.', 'Where', \"'s\", 'Chip', ',', 'why', 'is', \"n't\", 'he', 'here', 'yet', '?', 'I', 'ca', \"n't\", 'go', 'to', 'my', 'own', 'prom', 'without', 'a', 'date', ',', 'I', 'ca', \"n't\", ',', 'it', \"'s\", 'too', 'late', '.', 'I', 'ca', \"n't\", 'believe', 'I', 'do', \"n't\", 'get', 'to', 'go', 'to', 'my', 'own', 'prom', ',', 'this', 'is', 'so', 'harsh', '.', 'Hi', 'you', 'guys', '.', 'Hey', 'you', '.', 'So', ',', 'uh', ',', 'how', 'was', 'your', 'day', '?', 'Really', '?', 'Mine', 'too', '.', 'OK', '.', 'It', 'is', 'our', 'first', 'official', 'date', '.', 'Our', 'first', 'date', '.', 'Hi', '.', 'God', ',', 'oh', 'God', 'Monica', ',', 'I', 'forgot', '.', 'This', 'is', 'our', 'first', 'date', '.', 'Oh', ',', 'thank', 'you', ',', 'thank', 'you', ',', 'thank', 'you', ',', 'thank', 'you', '.', 'See', 'Phoebe', ',', 'Phoebe', '.', \"C'mon\", ',', 'I', \"'m\", 'not', 'saying', 'it', 'was', 'a', 'bad', 'movie', ',', 'I', \"'m\", 'just', 'saying', ',', 'you', 'know', ',', 'it', 'was', 'a', 'little', '.', '.', '.', 'hard', 'to', 'follow', '.', 'I', 'know', ',', 'I', 'just', 'did', \"n't\", 'want', 'to', 'wear', 'my', 'glasses', 'on', 'my', 'first', 'date', '.', 'Monica', '.', 'Honey', ',', 'I', \"'m\", 'just', 'checking', '.', 'Monica', '.', 'Monica', '.', 'I', \"'m\", 'sorry', '.', 'Oh', 'God', ',', 'I', \"'m\", 'sorry', ',', 'it', \"'s\", 'just', 'that', 'when', 'you', 'moved', 'your', 'hands', 'down', 'to', 'my', 'butt', ',', 'it', 'was', 'like', 'woah', ',', 'Ross', \"'s\", 'hands', 'are', 'on', 'my', 'butt', '.', 'Sorry', '.', 'Well', 'it', \"'s\", 'not', ',', 'honey', 'I', \"'m\", 'sorry', ',', 'I', 'guess', 'I', \"'m\", 'just', 'nervous', '.', 'I', 'mean', ',', 'it', \"'s\", 'you', ',', 'ya', 'know', ',', 'it', \"'s\", 'us', '.', 'I', 'mean', ',', 'we', \"'re\", 'crossing', 'that', 'line', ',', 'sort', 'of', 'a', 'big', 'thing', '.', 'OK', '.', 'I', 'know', ',', 'I', 'know', ',', 'I', 'know', ',', 'I', 'know', '.', 'I', 'was', 'just', 'thinking', 'about', 'when', 'they', 'were', 'there', 'the', 'last', 'time', ',', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'sorry', ',', 'I', \"'m\", 'sorry', '.', 'OK', ',', 'OK', ',', 'look', ',', 'woah', ',', 'I', 'promise', ',', 'I', \"'m\", 'good', ',', 'I', \"'m\", 'not', 'gon', 'na', 'laugh', 'anymore', '.', 'OK', 'put', 'your', 'hands', 'back', 'there', '.', 'Just', 'one', 'cheek', '.', 'Alright', ',', 'just', 'put', 'your', 'hands', 'out', 'and', 'I', \"'ll\", 'back', 'up', 'into', 'them', '.', \"C'mon\", 'touch', 'it', '.', 'Oh', ',', 'come', 'on', 'squeeze', 'it', '.', 'Rub', 'it', '.', 'Oh', ',', 'come', 'on', ',', 'would', 'you', 'just', 'grab', 'my', 'ass', '.', 'Hi', 'you', 'guys', '.', 'Hi', '.', 'Listen', ',', 'I', 'was', 'um', ',', 'thinkin', \"'\", 'about', '.', '.', '.', 'OK', ',', 'listen', ',', 'I', \"'m\", 'sorry', 'about', 'last', 'night', 'and', 'I', 'really', 'want', 'to', 'make', 'it', 'up', 'to', 'you', '.', 'Well', ',', 'I', 'was', 'thinking', 'maybe', 'a', 'um', ',', 'a', 'romantic', 'dinner', 'with', 'um', ',', 'candles', 'and', 'wine', 'and', 'then', 'uh', ',', 'maybe', 'going', 'back', 'to', 'my', 'place', 'for', 'um', ',', 'dessert', '.', 'What', \"'s\", 'this', '.', 'Hi', 'you', 'guys', '.', 'Alright', 'you', 'guys', ',', 'I', \"'m\", 'takin', \"'\", 'off', 'my', 'shirt', '.', 'Ya', 'know', ',', 'Dr.', 'Burke', 'kissed', 'me', 'once', '.', 'When', 'I', 'was', 'um', ',', '7', ',', 'I', 'crashed', 'my', 'bike', 'right', 'out', 'in', 'front', 'of', 'his', 'house', 'and', 'to', 'stop', 'me', 'from', 'crying', 'he', 'kissed', 'me', 'right', 'here', '.', 'I', 'know', '.', 'It', \"'s\", 'OK', ',', 'it', \"'s\", 'fine', '.', 'Oh', '.', 'Yeah', 'well', ',', 'you', 'know', 'what', ',', 'so', 'is', 'uh', ',', 'Sorentino', \"'s\", '.', 'No', ',', 'you', 'know', 'what', ',', 'it', \"'s\", 'late', ',', 'everything', \"'s\", 'gon', 'na', 'be', 'closed', '.', 'Why', 'do', \"n't\", 'we', 'just', 'do', 'it', 'another', 'night', '?', 'We', 'wo', \"n't\", '?', 'OK', ',', 'that', \"'s\", 'dead', 'right', '?', 'What', 'is', 'this', '?', 'What', 'are', 'we', 'doing', '?', 'Grape', '.', 'Oh', ',', 'God', '.', 'Ah', ',', 'so', 'what', 'are', 'we', 'looking', 'at', '?', 'Really', '?', 'Oh', 'it', \"'s\", 'OK.', 'You', 'were', 'worth', 'the', 'wait', ',', 'and', 'I', 'do', \"n't\", 'just', 'mean', 'tonight', '.', 'This', 'time', 'it', \"'s\", 'not', 'so', 'funny', '.', 'Ah', ',', 'oh', 'God', '.', 'Oh', ',', 'honey', ',', 'oh', 'that', \"'s\", 'OK.', 'Oh', ',', 'thank', 'God', '.', 'Hi', 'you', '.', 'I', 'ca', \"n't\", 'believe', 'I', \"'m\", 'waking', 'up', 'next', 'to', 'you', '.', 'What', '?', 'OK', ',', 'ready', 'when', 'you', 'are', '.', 'Yes', ',', 'but', 'you', 'can', 'not', 'tell', 'Ross', \"'cause\", 'I', 'want', 'to', 'surprise', 'him', '.', 'Hi', '.', 'Well', 'hey', ',', 'you', 'do', \"n't\", '-', 'you', 'do', \"n't\", 'think', 'they', \"'re\", 'kind', 'of', 'cool', '?', 'Well', 'I.', '.', '.', 'Uh-huh', '.', 'Uh-huh', '.', 'No', '.', 'Well', ',', 'yeah', ',', 'maybe', '.', 'What', \"'s\", '1922', '?', 'Yes', 'I', 'do', ',', 'it', \"'s\", 'just', 'that', 'Ross', 'is', '.', '.', '.', 'No', '.', 'You', '?', 'I', 'know', ',', 'so', 'do', 'I.', 'Oh', 'Phoebe', ',', 'I', \"'m\", 'so', 'glad', 'you', 'made', 'me', 'do', 'this', '.', 'OK', ',', 'lem', 'me', 'se', 'yours', '.', 'Phoebe', 'we', 'just', 'saw', 'mine', ',', 'let', 'me', 'see', 'yours', '.', 'You', 'did', \"n't\", 'get', 'it', '?', 'Why', 'did', \"n't\", 'you', 'get', 'it', '?', 'Phoebe', ',', 'how', 'would', 'you', 'do', 'this', 'to', 'me', '?', 'This', 'was', 'all', 'your', 'idea', '.', 'Really', '?', 'You', 'do', \"n't\", 'say', ',', 'because', 'mine', 'was', 'licked', 'on', 'by', 'kittens', '.', 'Oh', '.', 'Is', 'Ross', 'here', '?', 'Oh', 'really', ',', 'OK.', 'What', '?', 'You', 'did', \"n't\", 'get', 'one', '.', 'That', 'is', 'not', 'a', 'tattoo', ',', 'that', 'is', 'a', 'nothing', '.', 'I', 'finally', 'got', 'her', 'back', 'in', 'the', 'chair', ',', 'bairly', 'touched', 'her', 'with', 'a', 'needle', ',', 'she', 'jumped', 'up', 'screaming', ',', 'and', 'that', 'was', 'it', '.', 'Oh', ',', 'what', 'a', 'load', 'of', 'crap', '.', 'That', 'is', 'a', 'dot', '.', 'Your', 'mother', 'is', 'up', 'in', 'heaven', 'going', ',', \"'Where\", 'the', 'hell', 'is', 'my', 'lily', ',', 'you', 'wuss', '?', \"'\", 'OK', ',', 'Phoebe', ',', 'that', 'is', 'not', 'a', 'tattoo', ',', 'this', 'is', 'a', 'tattoo', '.', 'Maybe', '.', 'But', 'just', 'a', 'little', 'one', '.', 'Phoebe', 'got', 'the', 'whole', 'world', '.', 'Well', '?', 'Really', '?', 'I', 'guess', '.', 'Yeah', ',', 'who', \"'s\", 'gon', 'na', 'eat', 'all', 'our', 'food', ',', 'and', 'tie', 'up', 'our', 'phone', 'lines', ',', 'and', '-', 'is', 'that', 'my', 'bra', '?', 'What', 'the', 'hell', 'you', 'doin', \"'\", 'with', 'my', 'bra', '?', 'Hey', ',', 'nice', 'pillow', '.', 'So', 'now', 'tell', 'me', ',', 'is', 'this', 'genuine', 'Muppet', 'skin', '?', 'Hey', ',', 'nice', 'toilet', '.', 'OK', ',', 'here', 'we', 'go', '.', 'Honey', ',', 'I', \"'m\", 'sorry', ',', 'they', 'were', 'all', 'out', 'of', 'apple', 'pie', ',', 'someone', 'just', 'got', 'the', 'last', 'piece', '.', 'Oh', 'God', '.', 'Ross', ',', 'OK', ',', 'if', 'you', 'care', 'about', 'me', 'at', 'all', ',', 'you', 'will', 'get', 'the', 'pie', 'out', 'of', 'the', 'man', \"'s\", 'hood', '.', 'Pie', 'in', 'the', 'hood', ',', 'pie', 'in', 'the', 'hood', '.', 'Go', '.', 'What', \"'s\", 'goin', \"'\", 'on', '?', 'Well', ',', 'you', \"'re\", 'not', 'sixteen', ',', 'you', \"'re\", 'both', 'adults', 'now', '.', 'Or', 'ya', 'know', ',', 'he', \"'s\", 'rubber', 'and', 'you', \"'re\", 'glue', '.', 'I', \"'ve\", 'never', 'wanted', 'you', 'more', '.', 'Look', ',', 'Chandler', ',', 'he', 'has', 'moved', 'on', ',', 'OK', ',', 'you', 'have', 'to', 'too', '.', 'It', \"'ll\", 'never', 'last', ',', 'he', \"'s\", 'just', 'a', 'rebound', 'roommate', '.', 'Pretty', 'uhm', ',', 'different', 'huh', '?', 'Would', 'you', 'guys', 'stop', '.', 'Oh', 'my', 'God', '.', 'Now', 'I', \"'m\", 'mommy', 'in', 'this', 'little', 'play', '?', 'Alright', 'look', ',', 'I', 'refuse', 'to', 'get', 'sucked', 'into', 'this', 'like', ',', 'weird', 'little', 'Geller', 'dimension', 'thing', 'OK', '.', 'So', 'I', \"'m\", 'gon', 'na', 'go', 'and', 'take', 'a', 'nice', 'long', 'hot', 'bubble', 'bath', 'because', 'you', 'kids', 'are', 'driving', 'me', 'crazy', '.', 'Well', ',', 'how', 'did', 'you', 'find', 'out', '?', 'OK', ',', 'Phoebs', '.', 'But', 'what', 'about', 'you', '?', 'And', 'you', \"'re\", 'no', 'friend', 'to', 'those', 'with', 'noses', '.', 'Great', 'set', 'tonight', 'Phoebs', '.', 'Phoebe', \"'s\", 'dead', '.', 'Wow', ',', 'I', 'am', 'so', 'glad', 'I', \"'m\", 'not', 'Monica', 'right', 'now', '.', 'Uhhhooo', '.', 'Well', ',', 'there', \"'s\", 'you', '.', 'Ok', ',', 'uh', ',', 'Billy', 'Dreskin', ',', 'Pete', 'Carney', ',', 'Barry', ',', 'and', 'uh', ',', 'oh', ',', 'Paolo', '.', 'Oh', 'honey', ',', 'are', 'you', 'jealous', 'of', 'Paolo', '?', 'Oh', ',', \"c'mon\", ',', 'I', \"'m\", 'so', 'much', 'happier', 'with', 'you', 'than', 'I', 'ever', 'was', 'with', 'him.ROSS', ':', 'Really', '?', 'Oh', 'please', '.', 'That', 'Paolo', 'thing', 'was', 'barely', 'a', 'relationship', '.', 'All', 'it', 'really', 'was', 'was', 'just', ',', 'ya', 'know', ',', 'meaningless', 'animal', 'sex', '.', 'Ok', 'ya', 'know', ',', 'that', 'sounded', 'soooo', 'much', 'better', 'in', 'my', 'head.CHANDLER', ':', 'Eddie', ',', 'I', 'did', \"n't\", 'sleep', 'with', 'your', 'ex-girlfriend', '.', 'Ross', ',', 'Ross', ',', 'please', 'listen', 'to', 'me', '.', 'Ross', ',', 'you', 'are', 'so', 'much', 'better', 'for', 'me', 'than', 'Paolo', 'ever', 'was', '.', 'I', 'mean', 'you', 'care', 'about', 'me', ',', 'you', \"'\", 'r', 'loving', ',', 'you', 'make', 'me', 'laugh.ROSS', ':', 'Oh', ',', 'hey', ',', 'if', 'I', 'make', 'you', 'laugh', ',', 'here', \"'s\", 'an', 'idea', ',', 'why', 'do', \"n't\", 'you', 'invite', 'Paulo', 'over', 'and', 'have', 'a', 'little', 'romp', 'in', 'the', 'sack', 'and', 'I', \"'\", 'l', 'just', 'stand', 'in', 'the', 'corner', 'and', 'tell', 'knock-knock', 'jokes.RACHEL', ':', 'God', ',', 'Ross', ',', 'look', ',', 'what', 'you', 'and', 'I', 'have', 'is', 'special', ',', 'all', 'Paolo', 'and', 'I', 'ever', 'had', 'was', '...', 'ROSS', ':', 'Animal', 'sex', ',', 'animal', 'sex', '?', 'So', 'what', \"'re\", 'you', 'saying', ',', 'I', 'mean', ',', 'you', \"'re\", 'saying', 'that', 'like', ',', 'there', \"'s\", 'nothing', 'between', 'us', 'animal', 'at', 'all', 'I', 'mean', 'there', \"'s\", 'not', 'even', 'like', ',', 'uhm', ',', 'a', 'little', 'animal', ',', 'not', 'even', 'not', 'even', 'like', ',', 'like', 'chipmunk', 'sex', '?', 'RACHEL', ':', 'Ok', ',', 'Ross', ',', 'try', 'to', 'hear', 'me', '.', 'Ok', ',', 'I', ',', 'hey', ',', 'I', \"'m\", 'not', 'gon', 'na', 'lie', 'to', 'you', '.', 'Ok', ',', 'it', 'was', 'good', 'with', 'Paolo.ROSS', ':', 'Knock-knock', '.', 'But', ',', 'what', 'you', 'and', 'I', 'have', 'is', 'so', 'much', 'better', '.', 'Ok', ',', 'we', 'have', 'tenderness', ',', 'we', 'have', 'intimacy', ',', 'we', 'connect', '.', 'Ya', 'know', ',', 'I', 'swear', 'this', 'is', 'the', 'best', 'I', 'have', 'ever', 'had.ROSS', ':', 'Until', 'now', '.', 'Oh', ',', 'hi', '.', 'Oh', 'my', 'God', ',', 'honey', 'that', \"'s\", 'great', '.', 'Oh', 'they', \"'re\", 'in', 'the', 'top', 'drawer', '.', 'Hurry', '.', 'Ooooh', 'yeah', '.', 'Ok', ',', 'I', ',', 'I', 'will', 'do', 'your', 'laundry', 'for', 'one', 'month', '.', 'Ok', ',', 'ok', ',', 'ok', ',', 'I', 'will', ',', 'I', 'will', ',', 'I', ',', 'hey', ',', 'I', 'will', 'clean', 'the', 'apartment', 'for', 'two', 'months.MONICA', ':', 'Alright', ',', 'I', 'tell', 'you', 'what', ',', 'I', \"'ll\", 'give', 'this', 'to', 'you', 'now', 'if', 'you', 'can', 'tell', 'me', 'where', 'we', 'keep', 'the', 'dustpan.RACHEL', ':', 'Agghhh', '.', 'Rock-paper-scissors', '?', 'Yeesss', '.', 'So', ',', 'he', \"'s\", 'on', 'the', 'show', ',', 'he', 'knows', 'what', 'happens', '.', 'Oh', 'good', '.', 'Joey', '.', 'Oh', \"c'mon\", 'Joey', ',', 'we', 'care', 'about', 'you', '.', 'Well', ',', 'maybe', 'they', 'can', 'find', 'a', 'way', 'to', 'bring', 'you', 'back', '.', 'Yeah', ',', 'Joey', 'honey', ',', 'I', 'do', \"n't\", 'know', 'if', 'this', \"'ll\", 'mean', 'anything', 'to', 'you', 'but', 'you', \"'ll\", 'always', 'be', 'pre-approved', 'with', 'us.JOEY', ':', 'No', ',', 'that', 'means', 'nothin', 'to', 'me', '.', 'Hey', '.', 'Whe-ell', ',', 'look', 'at', 'you', ',', 'finally', 'got', 'that', 'time', 'machine', 'workin', \"'\", 'huh', '?', 'Hey', '.', 'Woah', ',', 'woah', ',', 'woah', ',', 'what', 'book', 'is', 'this', '?', 'Men', 'just', 'take', 'out', 'wind', '?', 'Wow', '.', 'Well', 'that', 'sounds', 'kinda', 'cool', ',', 'kinda', 'like', 'The', 'Hobbit', '.', 'Oh', ',', 'God', ',', 'oh', ',', 'God', ',', 'I', 'mean', 'it', \"'s\", 'just', 'so', '.', 'Uhh', ',', 'I', 'mean', 'this', 'is', 'like', 'reading', 'about', 'my', 'own', 'life', '.', 'I', 'mean', 'this', 'book', 'could', 'have', 'been', 'called', \"'Be\", 'Your', 'Own', 'Windkeeper', 'Rachel', \"'\", '.', 'NO', '!', 'No', ',', 'why', 'do', 'we', 'always', 'have', 'to', 'do', 'everything', 'according', 'to', 'your', 'time', 'table', '?', 'No', ',', 'see', 'this', 'is', \"n't\", 'about', 'the', 'movie', 'theatre', ',', 'this', 'is', 'about', 'you', 'stealing', 'my', 'wind', '.', 'Yes', ',', 'my', 'wind', '.', 'How', 'do', 'you', 'expect', 'me', 'to', 'grow', 'if', 'you', 'wo', \"n't\", 'let', 'me', 'blow', '?', 'Ok', ',', 'I', 'just', ',', 'I', 'just', 'really', 'need', 'to', 'be', 'with', 'myself', 'right', 'now', '.', 'I', \"'m\", 'sorry', '.', 'You', \"'re\", 'right', ',', 'I', 'do', \"n't\", 'have', 'to', 'apologize', '.', 'Sorry', '.', 'Damnit', '!', 'Yeah', 'you', 'like', 'totally', 'let', 'him', 'wash', 'his', 'feet', 'in', 'the', 'pool', 'of', 'your', 'inner', 'power', '.', 'Ok', ',', 'ok', ',', 'ok', ',', 'moving', 'on', ',', 'moving', 'on', ',', 'next', 'question', '.', 'Ok', 'number', '29', ',', 'have', 'you', 'ever', 'betrayed', 'another', 'goddess', 'for', 'a', 'lightning', 'bearer', '?', 'Ok', ',', 'number', '30', '.', 'Not', 'uh', ',', 'not', 'to', 'my', 'recollection', '.', 'Only', \"'cause\", 'you', 'took', 'up', 'half', 'the', 'circle', '.', 'Well', 'not', 'when', 'they', 'find', 'out', 'you', 'slept', 'with', 'Jason', 'Hurley', 'an', 'hour', 'after', 'he', 'broke', 'up', 'with', 'Monica', '.', 'Here', 'are', 'your', 'cakes', '.', 'No', ',', 'I', 'know', ',', 'they', \"'re\", 'from', 'me', '.', 'Look', 'you', 'guys', 'this', 'is', 'not', 'good', '.', 'I', 'mean', 'we', 'have', 'enough', 'trouble', 'with', 'guys', 'stealing', 'our', 'wind', 'without', 'taking', 'it', 'from', 'each', 'other', '.', 'You', 'know', '.', 'Thank', 'you', '.', 'So', 'are', 'we', 'good', '?', 'We', \"'re\", 'good', '?', 'Ok', ',', 'let', 'me', 'take', 'these', 'cakes', 'back', \"'cause\", 'they', \"'re\", 'gon', 'na', 'take', 'that', 'out', 'of', 'my', 'paycheck', '.', 'What', '?', 'That', \"'s\", 'not', 'the', 'end', '.', 'Hey', 'Phoebs', ',', 'whatcha', 'got', 'there', '?', 'Hey', '.', 'Wow', ',', 'he', 'must', 'like', 'you', 'the', 'best', '.', 'No', 'luck', 'huh', '?', 'Oh', ',', 'yeah', 'sure', ',', 'Ok', '.', 'Uh', ',', 'I', \"'m\", 'holding', 'Ben', '.', 'Ok', '.', 'This', 'is', 'how', 'I', 'would', 'hold', 'a', 'football', '.', 'Ok', ',', 'I', \"'m\", 'sorry', ',', 'I', \"'m\", 'just', 'not', 'very', 'good', 'with', 'babies', '.', 'I', 'mean', 'I', 'haven', '`', 't', 'been', 'around', 'them', ',', 'I', 'mean', ',', 'you', 'know', ',', 'since', 'I', 'was', 'one', '.', 'Really', '?', 'What', '?', 'You', 'think', 'about', 'stuff', 'like', 'that', '?', 'Two', ',', 'two', 'babies', '?', 'Then', 'what', \"'s\", 'gon', 'na', 'happen', '?', 'Uh-huh', '.', 'Wow', '.', 'Wow', ',', 'that', \"'s\", 'great', '.', 'Great', '.', 'Ok', ',', 'wow', ',', 'you', 'know', 'what', '.', 'I', \"'m\", 'off', 'my', 'break', 'now', 'so', 'uh', ',', 'um', 'here', 'you', 'take', 'this', 'and', 'um', ',', 'I', 'am', 'gon', 'na', 'go', 'pour', 'these', 'very', 'nice', 'people', 'some', 'coffee', '.', 'Ok.', 'Oh', 'look', 'at', 'that', ',', 'I', 'do', \"n't\", 'have', 'a', 'pot', '.', 'I', 'do', \"n't\", 'have', 'a', 'pot', '.', 'Well', ',', 'hey', ',', 'maybe', 'I', \"'ve\", 'got', 'one', 'at', 'home', ',', 'or', 'in', 'Scarsdale', '.', 'Hey', 'is', 'that', 'a', 'door', '?', 'Aghh', '.', 'Yeah', 'well', ',', 'Ross', 'just', 'made', 'plans', 'for', 'the', 'whole', 'century', '.', 'I', 'do', \"n't\", 'know', ',', 'you', 'tell', 'me', '.', 'One', 'minute', 'I', \"'m\", 'holding', 'Ben', 'like', 'a', 'football', ',', 'the', 'next', 'thing', 'I', 'know', ',', 'I', \"'ve\", 'got', 'two', 'kids', ',', 'I', \"'m\", 'living', 'in', 'Scarsdale', 'complaining', 'about', 'the', 'taxes', '.', 'Ross', ',', 'you', 'have', 'planned', 'out', 'the', 'next', '20', 'years', 'of', 'our', 'lives', ',', 'we', \"'ve\", 'been', 'dating', 'for', 'six', 'weeks', '.', 'Yes', ',', 'but', 'I', ',', 'I', 'think', 'about', 'who', \"'s\", 'apartment', 'we', \"'re\", 'gon', 'na', 'sleep', 'at', 'tomorrow', 'night', 'and', ',', 'and', 'where', 'we', \"'re\", 'gon', 'na', 'have', 'dinner', 'next', 'Saturday', 'night', '.', 'I', 'do', 'not', 'think', 'about', 'what', 'our', 'childrens', \"'\", 'names', 'are', 'gon', 'na', 'be', '.', 'You', 'know', 'what', 'our', 'childrens', 'names', 'are', 'gon', 'na', 'be', '.', 'What', 'was', 'the', 'book', '?', 'Ok', ',', 'Ross', ',', 'Ross', ',', 'ok', 'listen', ',', 'what', 'we', 'have', 'is', 'amazing', '.', 'But', 'I', 'do', 'not', 'want', 'to', 'have', 'everything', 'decided', 'for', 'me', '.', 'I', 'spent', 'my', 'whole', 'life', 'like', 'that', '.', 'It', \"'s\", 'what', 'I', 'had', 'with', 'Barry', ',', 'that', 'was', 'one', 'of', 'the', 'reasons', 'I', 'left', '.', 'I', ',', 'I', 'like', 'not', 'knowing', 'right', 'now', 'and', 'I', \"'m\", 'sorry', 'if', 'that', 'scares', 'you', 'but', 'if', 'you', 'want', 'to', 'be', 'with', 'me', 'you', 'are', 'gon', 'na', 'have', 'to', 'deal', 'with', 'that', '.', 'Thank', 'you', '.', 'I', 'did', \"n't\", 'know', 'that', '.', 'Fine', ',', 'I', 'will', '.', 'Oh', 'yeah', '.', 'Well', 'I', 'love', 'you', 'too', '.', 'Yes', 'it', 'is', '.', 'Well', 'you', 'better', '.', 'Ok', 'Ross', ',', 'just', 'so', 'you', 'know', ',', 'calling', 'it', 'a', 'poopie', 'diaper', 'does', \"n't\", 'make', 'this', 'process', 'any', 'cuter', '.', 'Ok', ',', 'we', 'can', 'do', 'this', 'now', ',', 'ca', \"n't\", 'we', 'Ben', '?', 'Yes', 'we', 'can', ',', 'yes', 'we', 'can', '.', 'There', '.', 'I', 'did', 'it', '.', 'I', 'did', 'it', '.', 'Look', 'at', 'that', ',', 'oh', ',', 'stays', 'on', 'and', 'everything', '.', 'Hi', '.', 'I', \"'m\", 'sorry', ',', 'what', 'did', 'you', 'just', 'say', '?', 'Did', 'you', 'just', 'say', 'hi', '?', 'Oh', 'my', 'God', ',', 'Ross', ',', 'Ross', ',', 'Ben', 'just', 'said', \"'Hi\", \"'\", '.', 'Ben', 'just', 'said', 'hi', '.', 'Ye-', ',', 'no', ',', 'my', 'Uncle', 'Hi', '.', 'Oh', ',', 'I', \"'m\", 'sorry', ',', 'I', 'guess', 'I', 'just', 'bring', 'it', 'out', 'in', 'him', '.', 'Guess', 'what', '.', 'Ben', 'just', 'said', 'his', 'first', 'word', '.', 'You', 'know', ',', 'actually', 'it', \"'s\", 'more', 'like', ',', 'hi', '.', 'Hi', '.', 'Hi', '.', 'Hi', '.', 'Take', 'care', '.', 'Did', ',', 'did', 'he', 'just', ',', 'did', 'he', ',', 'did', 'he', 'just', 'say', ',', 'he', 'said', 'bye', '.', 'He', 'said', 'bye', '.', 'You', 'said', ',', 'you', 'said', 'bye', 'to', 'me', '.', 'You', 'said', 'bye', 'to', 'me', '.', 'Ok', 'honey', ',', 'you', 'really', 'need', 'a', 'job', '.', 'Ok', ',', 'so', 'uh', ',', 'who', 'wants', 'the', 'last', 'hamburger', '?', 'Hey', ',', 'how', \"'d\", 'the', 'interview', 'go', '?', 'So', 'do', \"n't\", 'do', 'it', '.', 'What', \"'s\", 'the', 'matter', 'with', 'you', '?', 'Noo', '.', 'Oohhh', '.', 'Hi', '.', 'What', '?', 'Monica', ',', 'what', 'are', 'you', 'talking', 'about', '?', 'You', 'do', \"n't\", 'know', 'the', 'first', 'thing', 'about', 'the', 'stock', 'market', '.', 'We', 'love', 'you', ',', 'we', \"'re\", 'here', 'for', 'you', '.', 'Ohh', ',', 'what', 'is', 'in', 'that', '?', 'No', 'no', ',', \"'cause\", 'mayo', ',', 'that', 'would', 'make', 'it', 'gross', '.', 'Run', 'Phoebe', 'run', '.', 'Are', 'you', 'kidding', 'me', '?', 'Ok', ',', 'here', ',', 'I', 'know', 'what', 'we', 'can', 'do', '.', 'Ok', ',', 'doggie', 'get', 'the-', 'aahhh', '.', 'Ok', 'go', 'get', 'the', 'sandwich', ',', 'get', 'the', 'sandwich', 'doggie', '.', 'Good', 'doggie', 'get', 'the', 'sandwich', ',', 'get', 'the', '...', 'ok', ',', 'Joey', ',', 'the', 'dog', 'will', 'lick', 'himself', 'but', 'he', 'will', 'not', 'touch', 'your', 'sandwich', ',', 'what', 'does', 'that', 'say', '?', 'What', \"'s\", 'the', 'matter', '?', 'Yeah', 'Phoebe', ',', 'I', 'completely', 'understand', '.', 'Time', 'is', 'money', 'my', 'friend', '?', 'How', 'did', 'you', 'make', '$', '17', '.', 'What', 'happened', 'to', 'uh', ',', 'MEG.', '?', 'Hey', 'Phoebs', '.', 'Oh', 'hey', ',', 'how', \"'s\", 'the', 'dog', '?', 'Oh', ',', 'thank', 'God', '.', 'Ok', ',', 'so', 'Phoebe', ',', 'now', 'are', 'you', 'gon', 'na', 'call', 'your', 'dad', 'and', 'let', 'him', 'know', 'that', 'his', 'dog', 'is', 'ok', '?', 'She', \"'ll\", 'be', 'a', 'much', 'better', 'friend', 'when', 'the', 'market', 'closes', '.', 'Why', 'the', 'voice', '.', 'What', '?', 'For', 'what', '?', 'Why', ',', 'when', 'did', 'you', 'get', 'out', 'of', 'the', 'game', '?', 'Oh', 'no', '.', 'Ok.', 'Look', 'uhh', ',', 'Mon', 'I', \"'m\", ',', 'I', \"'m\", 'really', 'sorry', '.', 'I', ',', 'I', 'do', \"n't\", 'have', 'it', '.', 'Nobody', 'does', 'honey', '.', 'Look', 'at', 'her', '.', 'Agh', ',', 'it', 'was', 'the', 'graduation', 'from', 'hell', '.', 'Ya', 'know', ',', 'I', 'mean', 'this', 'is', 'supposed', 'to', 'be', 'a', 'joyous', 'occasion', '.', 'My', 'sister', \"'s\", 'graduating', 'from', 'college', ',', 'nobody', 'thought', 'she', 'would', '.', 'It', \"'s\", 'a', 'true', 'testament', 'to', 'what', 'a', 'girl', 'from', 'long', 'island', 'would', 'do', 'for', 'a', 'Celica', '.', 'My', 'parents', 'happened', '.', 'All', 'they', 'had', 'to', 'do', 'was', 'sit', 'in', 'the', 'same', 'stadium', ',', 'smile', 'proudly', ',', 'and', 'not', 'talk', 'about', 'the', 'divorce', '.', 'But', 'nooo', ',', 'they', 'got', 'into', 'a', 'huge', 'fight', 'in', 'the', 'middle', 'of', 'the', 'commencement', 'address', '.', 'Bishop', 'Tutu', 'actually', 'had', 'to', 'stop', 'and', 'shush', 'them', '.', 'But', 'you', 'know', 'what', ',', 'you', 'know', 'what', 'the', 'good', 'news', 'is', '?', 'I', 'get', 'to', 'serve', 'coffee', 'for', 'the', 'next', '8', 'hours', '.', 'Ohh', ',', 'thank', 'you', 'for', 'the', 'wonderful', 'dinner', '.', 'Ohh', ',', 'thank', 'you', 'for', 'my', 'beautiul', 'earrings', ',', 'they', \"'re\", 'perfect', '.', 'I', 'love', 'you', '.', 'Now', 'I', 'love', 'you', 'even', 'more', '.', 'Oh', 'my', 'gosh', ',', 'wow', '.', 'Monica', '.', 'Oh', 'my', 'god', '.', 'Mom', '.', 'This', 'is', 'so', 'great', '.', 'Wow', 'you', ',', 'you', '.', 'I', 'had', 'no', 'idea', '.', 'No', ',', 'I', 'knew', '.', 'What', '?', 'Why', '.', 'Daddy', '.', 'Both', 'of', 'them', 'are', 'here', ',', 'both', 'of', 'them', ',', 'both', 'of', 'them', 'are', 'here', '?', 'I', 'ca', \"n't\", 'believe', 'this', 'is', 'happening', '.', 'I', 'do', '.', 'Well', ',', 'I', 'have', 'to', 'be', ',', 'I', 'do', \"n't\", 'really', 'have', 'a', 'choice', ',', 'I', 'mean', ',', 'you', 'know', ',', 'I', 'could', 'look', 'at', 'the', 'bright', 'side', ',', 'I', 'get', 'two', 'birthday', 'parties', 'and', 'two', 'birthday', 'cakes', '.', 'What', '?', 'Listen', 'honey', ',', 'can', 'you', 'keep', 'dad', 'occupied', ',', 'I', \"'m\", 'gon', 'na', 'go', 'talk', 'to', 'mom', 'for', 'a', 'while', '.', 'Uhh', ',', 'let', \"'s\", 'just', 'stay', 'clear', 'of', \"'\", 'I', \"'m\", 'the', 'guy', 'that', \"'s\", 'doing', 'you', 'daughter', \"'\", 'and', 'you', 'should', 'be', 'ok.', 'Well', 'those', 'are', 'very', 'popular', 'frames', '.', 'Yeah', ',', 'like', 'a', 'chimney', '.', 'You', 'want', 'me', 'to', 'see', 'a', 'therapist', '?', 'Ok', 'mom', ',', 'you', 'know', 'what', ',', 'fine', ',', 'I', \"'ll\", 'make', 'an', 'appointment', 'ok', ',', 'but', 'you', 'know', 'what', ',', 'right', 'now', ',', 'I', 'got', 'ta', 'go', ',', 'I', 'got', 'ta', 'go', 'do', 'a', 'thing', '.', 'Daddy', ',', 'daddy', ',', 'you', 'know', 'what', ',', 'I', 'really', 'wan', 'na', 'hear', 'more', 'about', 'this', ',', 'I', 'really', 'do', ',', 'but', 'I', 'just', 'have', ',', 'I', 'just', 'have', 'to', 'do', 'a', ',', 'some', 'stuff', '.', 'This', 'is', 'it', ',', 'is', \"n't\", 'it', '?', 'I', 'mean', ',', 'this', 'is', 'what', 'my', 'life', 'is', 'gon', 'na', 'be', 'like', '.', 'My', 'mom', 'there', ',', 'my', 'dad', 'there', '.', 'Thanksgiving', ',', 'Christmas', '.', 'She', 'gets', 'the', 'house', ',', 'he', \"'s\", 'in', 'some', 'condo', 'my', 'sister', \"'s\", 'gon', 'na', 'decorate', 'with', 'wicker', '.', 'Oh', ',', 'Chandler', 'how', 'did', 'you', 'get', 'through', 'this', '?', 'Ya', 'know', ',', 'I', 'just', ',', 'so', 'weird', '.', 'I', 'mean', 'I', 'was', 'in', 'there', 'just', 'listening', 'to', 'them', 'bitch', 'about', 'each', 'other', 'and', 'all', 'I', 'kept', 'thinking', 'about', 'was', 'the', 'fourth', 'of', 'July', '.', 'It', \"'s\", 'just', 'this', 'thing', '.', 'Every', 'year', 'we', 'would', 'go', 'out', 'on', 'my', 'dad', \"'s\", 'boat', 'and', 'watch', 'the', 'fireworks', '.', 'Mom', 'always', 'hated', 'it', 'because', 'the', 'ocean', 'air', 'made', 'her', 'hair', 'all', 'big', '.', 'My', 'sister', 'Jill', 'would', 'be', 'throwing', 'up', 'over', 'the', 'side', 'and', 'my', 'dad', 'would', 'be', 'upset', 'because', 'nobody', 'was', 'helping', 'and', 'then', 'when', 'we', 'did', 'help', 'he', 'would', 'scream', 'at', 'us', 'for', 'doing', 'it', 'wrong', '.', 'But', 'then', 'when', 'the', 'fireworks', 'started', ',', 'everybody', 'just', 'shut', 'up', ',', 'you', 'know', ',', 'and', 'it', \"'d\", 'get', 'really', 'cold', ',', 'and', 'we', 'would', 'all', 'just', 'sort', 'of', 'smush', 'under', 'this', 'one', 'blanket', '.', 'It', 'never', 'occured', 'to', 'anybody', 'to', 'bring', 'another', 'one', '.', 'And', 'now', 'it', \"'s\", 'just', '...', 'Oh', 'ok.', 'Ok.', 'Ok', ',', 'I', \"'ve\", 'got', 'one', '.', 'Wow', ',', 'those', 'things', 'almost', 'never', 'come', 'true', '.', 'Ok', ',', 'Chandler', ',', 'Mon', ',', 'there', \"'s\", 'only', 'one', 'bananna', 'nut', 'muffin', 'left', '.', 'You', 'went', 'out', 'with', 'a', 'guy', 'in', 'the', 'Navy', '?', 'So', 'wait', ',', 'this', 'guy', 'goes', 'down', 'for', 'like', 'two', 'years', 'at', 'a', 'time', '?', 'Well', 'I', \"'ve\", 'had', 'it', '.', 'Oh', ',', 'this', 'lipstick', 'looks', 'just', 'great', 'on', 'you', '.', 'You', 'see', ',', 'you', 'look', 'beautiful', '.', 'For', 'god', 'sakes', ',', 'dim', 'the', 'lights', '.', 'Oh', ',', 'stop', 'that', ',', 'stop', 'that', 'right', 'now', '.', 'No', 'sorry', 'hon', ',', 'Monica', \"'s\", 'orders', '.', 'And', 'there', \"'s\", 'a', 'peach', 'cobbler', 'warming', 'in', 'the', 'oven', 'so', 'the', 'plate', \"'s\", 'gon', 'na', 'be', 'hot', 'but', 'that', 'should', \"n't\", 'be', 'a', 'problem', 'for', 'you', '.', 'So', 'uh', ',', 'Ryan', ',', 'were', 'you', 'shipping', 'off', 'to', '?', 'Well', 'do', 'you', 'get', 'to', 'look', 'through', 'one', 'of', 'those', 'like', ',', 'those', 'periscope', 'thingys', '.', 'It', 'was', 'nice', 'to', 'meet', 'you', '.', 'So', 'do', 'you', 'uh', ',', 'think', 'we', 'can', 'get', 'you', 'one', 'of', 'those', 'uh', ',', 'uniform', 'things', '?', 'Oh', 'yeah', '.', 'Ok.', 'Oh', 'I', \"'m\", 'sorry', ',', 'we', \"'re\", 'clo-', '...', 'Hey', 'sailor', '.', 'I', \"'ll\", 'say', '.', 'Well', 'then', 'uh', ',', 'we', 'better', 'make', 'this', 'night', 'count', '.', 'Oh', 'wait', ',', 'I', 'forgot', 'to', 'turn', 'off', 'the', 'cappucino', 'machine', '.', 'Anchors', 'away', '.', 'Oh', 'no', 'no', ',', 'my', 'purse', ',', 'my', 'purse', ',', 'my', 'purse', ',', 'my', 'purse', ',', 'my', 'purse', ',', 'my', 'purse', '.', 'Oh', ',', 'you', 'know', 'what', '.', 'I', 'forgot', 'to', 'turn', 'off', 'the', 'bathroom', 'light', '.', 'Hey', 'Joey', ',', 'how', \"'d\", 'the', 'audition', 'go', '?', 'Yeah', ',', 'right', '.', 'I', 'can', 'not', 'believe', 'I', 'have', 'to', 'walk', 'down', 'the', 'aisle', 'in', 'front', 'of', '200', 'people', 'looking', 'like', 'something', 'you', 'drink', 'when', 'your', 'nauseous', '.', 'Because', 'I', 'promised', 'Mindy', 'I', 'would', '.', 'Look', 'you', 'guys', ',', 'I', 'have', 'to', 'go', ',', 'I', \"'m\", 'the', 'Maid-of-Honor', '.', 'And', 'besides', 'you', 'know', 'what', 'I', 'just', 'need', 'to', 'be', 'in', 'a', 'room', 'again', 'with', 'these', 'people', 'and', 'feel', 'good', 'about', 'myself', '.', 'Nooo', '!', 'Wow', '!', 'What', \"'s\", 'that', 'like', '?', 'Afraid', 'to', 'ask', 'him', '?', 'Hey', '!', 'Hi', '.', 'Yeah', ',', 'when', 'I', 'was', 'in', 'the', 'bathroom', 'I', 'saw', 'the', 'window', 'that', 'I', 'crawled', 'out', 'of', 'at', 'my', 'wedding', ',', 'and', 'God', ',', 'I', 'just', 'started', 'thinking', 'that', 'I', 'should', \"n't\", 'be', 'here', ',', 'you', 'know', 'I', 'should', \"n't\", ',', 'people', 'are', 'going', 'to', 'be', 'looking', 'at', 'me', 'and', 'judging', 'me', 'and', ',', 'and', 'thinking', 'about', 'the', 'last', 'time', '.', 'God', 'I', 'know', ',', 'you', \"'re\", 'right', '.', 'Okay', ',', 'I', \"'ll\", 'see', 'you', 'after', 'the', 'thing', '.', 'Thank', 'you', ',', 'Okay', ',', 'Okay', '.', 'Why', 'the', 'hell', 'did', \"n't\", 'you', 'tell', 'me', '!', 'Oh', 'my', 'God', 'this', 'is', 'sooo', 'humiliating', '.', 'I', 'think', 'the', 'only', 'thing', 'that', 'tops', 'that', 'was', ',', 'was', ',', 'was', 'when', 'I', 'was', 'in', 'the', 'eight', 'grade', 'and', 'I', 'had', 'to', 'sing', 'the', 'Copa', 'Cabana', 'in', 'front', 'of', 'the', 'entire', 'school', '.', 'I', 'think', 'I', 'got', 'about', 'two', 'lines', 'into', 'it', 'before', 'I', 'ran', 'and', 'freaked', 'out', '.', 'Oh', 'my', 'God', ',', 'my', 'entire', 'life', 'is', 'flashing', 'before', 'my', 'eyes', '.', 'Oh', 'Ross', ',', 'would', 'you', 'stop', ',', 'you', 'got', 'me', ',', 'I', \"'m\", 'dating', 'you', '.', 'Oh', 'hi', ',', 'Mr.', 'Wineburg', ',', 'hi', 'Mrs.', 'Wineburg', '.', 'Okay', ',', 'now', 'that', 'is', 'the', 'third', 'time', 'someone', 'has', 'said', 'something', 'like', 'that', 'to', 'me', 'today', '.', 'Oh', ',', 'hi', '!', 'I', 'know', '.', 'Oh', 'honey', ',', 'I', \"'m\", 'so', 'proud', 'of', 'you', ',', 'Min', '.', 'Yeah', ',', 'I', 'love', 'that', 'story', '.', 'Um', ',', 'I', 'got', 'a', 'question', 'for', 'you', 'guys', '.', 'Why', 'do', 'people', 'keep', 'is', 'saying', 'that', 'is', 'good', 'to', 'see', 'me', 'up', 'and', 'about', '?', 'Insane', '!', 'What', '?', '!', 'What', '.', 'Why', 'are', 'you', 'adding', ',', 'why', 'are', 'you', 'adding', ',', 'why', 'are', 'you', 'adding', ',', 'why', 'are', 'you', 'adding', '?', 'Oh', 'dear', 'God', '.', 'See', 'you', 'in', 'the', 'parking', 'lot', '.', 'Ya', ',', 'know', 'what', 'Barr', ',', 'I', \"'m\", 'not', 'gon', 'na', 'leave', '.', 'I', 'probably', 'should', ',', 'but', 'I', \"'m\", 'not', ',', 'see', \"'cause\", 'I', 'promised', 'myself', 'that', 'I', 'would', 'make', 'it', 'through', 'at', 'least', '*', 'one', '*', 'of', 'your', 'weddings', '.', 'See', 'now', ',', 'tonight', ',', 'all', 'I', 'really', 'wanted', 'was', 'to', 'make', 'it', 'though', 'this', 'evening', 'with', 'a', 'little', 'bit', 'of', 'grace', 'and', 'dignity', '.', 'Well', ',', 'I', 'guess', 'we', 'can', 'all', 'agree', 'that', \"'s\", 'not', 'gon', 'na', 'happen', '.', 'There', \"'s\", 'nothing', 'really', 'left', 'to', 'say', 'except', '....', '``', 'Her', 'name', 'was', 'Lola', '.', 'She', 'was', 'a', 'showgirl', '.', 'With', 'yellow', 'feathers', ',', 'feathers', 'in', 'her', 'hair', ',', 'and', 'a', 'dress', 'cut', 'down', 'to', 'there', '.', 'She', 'would', '...', \"''\", '``', '...', 'marenge', ',', 'thank', 'you', 'honey', ',', 'and', 'do', 'the', 'cha-cha', '.', 'And', 'while', 'she', 'like', 'to', 'be', 'a', 'star', ',', 'Tony', 'always', 'tended', 'bar', '.', 'At', 'the', ',', 'wait', ',', 'wait', ',', 'everybody', '..', \"''\", 'At', 'the', 'Copa', ',', 'Copa', 'Cabana', 'The', 'hottest', 'spot', 'north', 'of', 'Havana', '.', 'At', 'the', 'Copa', ',', 'Coo-pa', 'Ca-ban-a', ',', 'music', 'and', 'fashion', 'were', 'always', 'the', 'passion', ',', 'at', 'the', 'Copa', '....', 'Chandler', ',', 'relax', ',', 'Chandler', ',', 'she', \"'ll\", 'be', 'here', '.', 'Hey-hey', '!', 'Oh', ',', 'look', 'at', 'you', ',', 'all', 'sexy', '.', 'Ooooh', '!', 'Wow', '!', '!', 'Oh', ',', 'hi', '.', 'How', 'come', 'you', 'did', \"n't\", 'come', 'over', 'earlier', '?', 'Yeah', ',', 'I', 'just', 'have', 'to', 'get', 'dressed', '.', 'Yeah', '!', 'Once', ',', 'I', 'figure', 'out', 'what', 'I', \"'m\", 'wearing', '.', 'You', 'guys', ',', 'does', 'this', 'look', 'like', 'something', 'the', 'girlfriend', 'of', 'a', 'paleontologist', 'would', 'wear', '?', 'Uh', ',', 'no', '.', 'Wait', ',', 'you', 'know', 'what', ',', 'this', 'is', 'the', 'outfit', 'that', 'makes', 'my', 'calves', 'look', 'fat', '.', 'Nevermind', '.', 'What', '?', '!', 'Is', 'this', 'a', 'little', 'too', '...', 'Pheebs', ',', 'what', 'happened', '?', 'Ooooh', '!', 'Honey', ',', 'well', 'we', \"'ll\", 'find', 'you', 'something', '.', 'Do', 'you', 'wan', 'na', 'wear', 'my', 'black', 'jacket', '?', 'No', ',', 'you', \"'re\", 'right', '.', 'Well', ',', 'we', \"'ll\", 'find', 'something', '.', 'Let', \"'s\", 'just', 'get', 'you', 'out', 'of', 'that', '.', 'Come', 'on', '.', 'Monica', ',', 'can', 'Phoebe', 'borrow', 'your', 'green', 'dress', '?', 'Pheebs', ',', 'you', 'go', 'with', 'Monica', 'and', 'try', 'on', 'her', 'green', 'dress', '.', 'If', 'that', 'does', \"n't\", 'work', ',', 'you', 'can', 'wear', 'my', 'gray', 'silk', 'one', '.', 'Oh', ',', 'gosh', ',', 'what', 'am', 'I', 'wearing', '?', '!', 'Well', ',', 'hon-ey', '.', 'I', \"'m\", 'just', 'trying', 'to', 'look', 'nice', 'for', 'your', 'big', 'night', '.', 'Ross', ',', 'that', 'was', 'a', 'Halloween', 'costume', ',', 'unless', 'you', 'would', 'like', 'me', 'to', 'go', 'to', 'this', 'thing', 'as', 'Little', 'Bo', 'Peep', '.', 'Yeah', ',', 'which', ',', 'by', 'the', 'way', 'Chandler', ',', 'I', 'would', 'like', 'back', 'one', 'of', 'these', 'days', '.', 'Oh', ',', 'it', \"'s\", 'perfect', '!', 'But', 'not', 'for', 'tonight', '.', 'No', 'honey', ',', 'we', \"'re\", 'sorry', ',', 'we', 'did', \"n't\", 'mean', 'it', '.', 'I', 'love', 'you', '.', 'I', 'love', 'you', '.', 'Okay', ',', 'Pheebs', ',', 'quick', ',', 'what', 'shoes', 'should', 'I', 'wear', '?', 'The', 'black', 'or', 'the', 'purple', '?', 'Yeahh', ',', 'but', ',', 'but', 'those', 'really', 'go', 'better', 'with', 'pants', '.', 'Maybe', 'I', 'should', 'wear', 'pants', '?', 'But', 'I', '...', 'All', 'right', '.', 'I', \"'m\", 'not', 'gon', 'na', 'gooo', '.', 'No', ',', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'catch', 'up', 'on', 'my', 'correspondence', '.', 'I', \"'m\", 'not', 'gon', 'na', 'gooo', ',', 'so', 'I', 'think', 'that', 'will', 'accomplish', 'the', 'not', 'going', '.', 'Well', ',', 'ever', 'since', 'I', 'was', 'humiliated', 'and', 'yelled', 'at', 'in', 'front', 'of', 'my', 'friends', ',', 'I', \"'m\", 'just', ',', 'I', 'do', \"n't\", 'know', ',', 'not', 'in', 'a', 'museum', 'benefitty', 'kind', 'of', 'mood', '.', 'It', \"'s\", 'fine', '.', 'I', \"'m\", 'not', 'mad', '.', 'I', \"'m\", 'just', 'not', 'going', '.', 'Right', '.', 'Um', ',', 'hum', '.', 'No', '.', 'Right', '.', 'Right', ',', 'and', 'the', 'humiliating', '.', 'Um', ',', 'hum', '.', 'Right', '.', 'Yes', ',', 'Ross', '.', 'No', ',', 'no', ',', 'no', ',', 'now', 'wait', ',', 'wa', ',', 'wa', ',', 'waa-it', 'a', 'minute', ',', 'wait', 'a', 'minute', ',', 'wait', 'a', 'minute', ',', 'wait', 'a', 'minute', '.', 'That', 'actually', ',', 'uh', ',', 'that', 'sounds', 'interesting', '.', 'I', 'think', 'you', '*', 'should', '*', 'drink', 'the', 'fat', '.', 'No', ',', 'no', ',', 'no', ',', 'wait', '!', 'Okay', ',', 'okay', '.', 'Do', \"n't\", '!', 'I', \"'ll\", 'go', ',', 'I', \"'ll\", 'go', '!', 'You', 'were', 'really', 'gon', 'na', 'do', 'that', ',', 'were', \"n't\", 'you', '?', 'You', 'were', 'gon', 'na', 'drink', 'the', 'fat', '.', 'And', 'I', 'still', 'have', 'about', 'five', 'seconds', 'to', 'spare', '.', 'Okay', ',', 'that', 'was', 'about', 'seven', 'seconds', '.', 'Come', 'on', '.', 'Oh', '!', 'And', ',', 'uh', ',', 'by', 'the', 'way', '....', 'I', \"'m\", 'going', 'commando', ',', 'too', '.', 'I', 'did', \"n't\", 'know', 'there', 'were', 'docks', '.', 'Did', 'you', 'tell', 'the', 'doctor', 'you', 'did', 'it', 'jumping', 'up', 'and', 'down', 'on', 'your', 'bed', '?', 'Monica', \"'s\", 'making', 'jam', '.', 'Mon', '?', \"'Gone\", 'for', 'more', 'jars', '.', 'Back', 'later', '.', 'Monica', 'Geller', '.', \"'\", 'What', '?', 'What', ',', 'what', ',', 'what', '?', 'Oooh', '.', 'Honey', ',', 'come', 'on', ',', 'I', 'have', 'to', 'be', 'at', 'work', 'in', 'like', 'ten', 'minutes', 'Oh', ',', 'all', 'right', ',', 'well', 'it', \"'s\", 'not', 'like', 'I', \"'m\", 'employee', 'of', 'the', 'year', 'or', 'anything', '.', 'Oh', ',', 'oh', ',', 'that', \"'s\", 'what', 'you', \"'re\", 'talking', 'about', '.', 'Hey', '.', 'Okay', ',', 'walk', 'us', 'through', 'it', ',', 'honey', ',', 'walk', 'us', 'through', 'it', '.', 'Nooo', '!', 'Well', 'you', 'know', ',', 'after', 'about', 'thirty', 'or', 'forty', 'fights', ',', 'you', 'kinda', 'catch', 'on', '.', 'Oh', 'honey', ',', 'I', \"'m\", 'sorry', 'we', 'ca', \"n't\", 'help', 'you', 'there', ',', \"'cause\", 'we', \"'re\", 'cuddlily', 'sleepers', '.', 'Okay', ',', 'I', \"'m\", 'late', 'for', 'work', '.', 'All', 'right', 'are', 'you', 'guys', 'gon', 'na', 'come', 'down', '?', 'Good', 'luck', 'Chandler', '.', 'Bye', 'hon', '.', 'You', \"'re\", 'so', 'pretty', '.', 'Well', ',', 'what', 'happened', 'to', 'your', 'jam', 'plan', '?', 'Are', 'you', 'serious', '?', 'Down', 'at', 'the', 'docks', 'again', '?', 'Honey', ',', 'I', \"'m\", 'sorry', ',', 'but', 'he', \"'s\", 'right', '.', 'I', 'love', 'you', ',', 'but', 'you', \"'re\", 'crazy', '.', 'When', 'did', 'you', 'go', 'to', 'a', 'sperm', 'bank', '?', 'Phoebe', ',', 'what', 'are', 'you', 'doing', '?', 'Pheebs', ',', 'this', 'guy', 'has', 'been', 'obsessed', 'with', 'your', 'sister', ',', 'for', 'God', 'knows', 'how', 'long', ',', 'okay', ',', 'you', 'do', \"n't\", 'just', 'give', 'up', 'something', 'like', 'that', '.', 'Oh', 'my', 'God', ',', 'what', 'happened', '?', 'Wow', '!', 'Spinning', 'that', 'sounds', 'like', 'fun', '.', 'Ross', \"'s\", 'what', '?', 'Honey', ',', 'you', 'got', 'a', 'little', 'thing', 'on', 'your', '...', 'Yeah', '.', 'Hello', '.', 'Noo', 'way', ',', 'Kevin', '.', 'Ross', ',', 'you', 'are', 'so', 'pathetic', '.', 'Why', 'ca', \"n't\", 'your', 'son', 'just', 'play', 'with', 'his', 'doll', '?', 'What', \"'s\", 'the', 'big', 'deal', '?', 'Why', 'do', \"n't\", 'you', 'wan', 'na', 'see', 'Janice', '?', 'Men', 'are', 'unbelievable', '.', 'Amazingly', ',', 'that', 'makes', 'sense', '.', 'Sure', 'Pheebs', ',', 'you', 'know', ',', 'that', \"'s\", 'what', 'it', \"'s\", 'there', 'for', ',', 'emergencies', 'and', 'pretend', 'agents', '.', 'Very', 'nice', 'touch', '.', 'Unbelievable', '.', 'Honey', ',', 'this', 'will', 'help', '.', 'Okay', ',', 'wait', 'a', 'minute', ',', 'wait', 'a', 'minute', ',', 'wait', 'a', 'minute', '.', 'Maybe', 'it', \"'s\", 'not', 'so', 'bad', '.', 'How', 'did', 'you', 'leave', 'it', '?', 'Yeah', ',', 'well', 'that', \"'s\", 'that', 'lo-cal', ',', 'non', 'dairy', ',', 'soy', 'milk', 'junk', '.', 'We', 'sort', 'of', ',', 'we', 'save', 'the', 'real', 'stuff', 'for', 'those', 'really', 'terminal', 'cases', '.', 'Yeah', ',', 'you', 'do', '.', 'This', 'is', 'a', 'very', 'critical', 'time', 'right', 'now', '.', 'If', 'you', 'feel', 'yourself', 'reaching', 'for', 'that', 'phone', ',', 'then', 'you', 'go', 'shoe', 'shopping', ',', 'you', 'get', 'your', 'butt', 'in', 'a', 'bubble', 'bath', '.', 'You', 'want', 'her', 'back', 'you', 'have', 'to', 'start', 'acting', 'aloof', '.', 'Right', '.', 'So', ',', 'what', 'you', 'have', 'to', 'do', 'is', ',', 'you', 'have', 'to', 'accidentally', 'run', 'into', 'her', 'on', 'purpose', '.', 'And', 'then', 'act', 'aloof', '.', 'Oooh', ',', 'honey', ',', 'you', \"'re\", 'not', 'a', 'total', 'loser', '.', 'Oh', '.', 'G.I', '.', 'Joe', '?', 'Do', 'you', 'really', 'think', 'he', \"'s\", 'gon', 'na', 'fall', 'for', 'that', '?', 'Yeah', ',', 'it', 'is', '.', 'Shhh', '...', 'I', 'do', \"n't\", 'know', 'what', 'to', 'do', ',', 'this', 'is', 'totally', 'unprecedented', '.', 'Yeah', '.', 'Yes', ',', 'and', 'grumpy', '.', 'He', \"'s\", 'soo', 'lucky', ',', 'if', 'Janice', 'were', 'a', 'guy', ',', 'she', \"'d\", 'be', 'sleeping', 'with', 'somebody', 'else', 'by', 'now', '.', 'Hey', 'Pheebs', '.', 'Any', 'sign', 'of', 'your', 'brother', '?', 'I', 'thought', 'you', 'only', 'met', 'him', 'once', '?', 'Well', 'relax', ',', 'he', \"'ll\", 'be', 'here', '.', 'Well', ',', 'actually', 'Gunther', 'sent', 'me', '.', 'You', \"'re\", 'not', 'allowed', 'to', 'have', 'cups', 'out', 'here', ',', 'it', \"'s\", 'a', 'thing', '.', 'Now', ',', 'you', 'do', 'realize', 'that', 'she', \"'s\", 'a', 'cartoon', ',', 'and', 'way', 'out', 'of', 'your', 'league', '?', 'Oh', ',', 'I', 'do', \"n't\", 'know', ',', 'I', 'guess', ',', 'Chris', \"O'Donnel\", ',', 'John', 'F.', 'Kennedy', ',', 'Jr.', ',', 'Daniel', 'Day', 'Lewis', ',', 'Sting', ',', 'and', 'Parker', 'Stevenson', '.', 'Hardy', 'Boy', '.', 'What', 'about', 'you', 'honey', ',', 'who', 'would', 'be', 'on', 'your', 'list', '?', 'Hi', '!', 'Well', ',', 'so', ',', 'now', ',', 'do', 'you', 'guys', 'have', 'a', 'lot', 'of', 'big', 'plans', '?', 'Three', 'of', 'your', 'five', ',', 'what', '?', 'Oh', 'my', 'God', '!', 'You', 'are', 'giving', 'this', 'a', 'lot', 'of', 'thought', '.', 'So', '?', 'Yeah', ',', \"'cause\", 'that', \"'s\", 'why', 'you', 'wo', \"n't\", 'get', 'Isabella', 'Rosselini', ',', 'geography', '.', 'Well', ',', 'it', \"'s\", 'about', 'time', '.', 'All', 'right', 'let', 'me', 'see', '.', 'Uma', 'Thurman', ',', 'Winona', 'Ryder', ',', 'Elizabeth', 'Hurely', ',', 'Michelle', 'Pfieffer', ',', 'and', 'Dorothy', 'Hammel', '?', 'Okay', 'honey', ',', 'you', 'do', 'realize', 'she', 'only', 'spins', 'like', 'that', 'on', 'ice', '.', 'Oh', '!', 'Come', 'on', '!', 'Okay', 'sir', ',', 'um-mm', ',', 'let', 'see', 'if', 'I', 'got', 'this', 'right', '.', 'Ah', ',', 'so', 'this', 'is', 'a', 'half-caf', ',', 'double', 'tall', ',', 'easy', 'hazel', 'nut', ',', 'non-fat', ',', 'no', 'foam', ',', 'with', 'whip', ',', 'extra', 'hot', 'latte', ',', 'right', '?', 'Okay', ',', 'great', '.', 'You', 'freak', '.', 'Oh-oh', ',', 'you', 'lie', '.', 'Ross', ',', 'it', 'took', 'you', 'ten', 'years', 'to', 'finally', 'admit', 'you', 'liked', 'me', '.', 'You', 'know', 'what', 'honey', ',', 'you', 'go', 'ahead', ',', 'we', \"'ll\", 'call', 'her', 'an', 'alternate', '.', 'Okay', '.', 'Honey', ',', 'he', \"'s\", 'about', 'to', 'go', 'hit', 'on', 'Isabella', 'Rosselini', '.', 'I', \"'m\", 'just', 'sorry', 'we', 'do', \"n't\", 'got', 'popcorn', '.', 'Excuse', 'me', ',', 'there', 'was', 'no', 'time', '!', 'Does', 'anybody', 'need', 'more', 'coffee', '?', 'Oh', ',', 'um', ',', 'no', ',', 'no', ',', 'no', ',', 'no', 'excuse', 'me', ',', 'hello', '.', 'Hi', '.', 'My', 'friend', 'ordered', 'an', 'onion', ',', 'not', 'an', 'olive', ',', 'and', 'uh', 'I', 'ordered', 'a', 'rum', 'and', 'Diet', 'Coke', ',', 'which', 'I', 'don�t', 'think', 'this', 'is', '.', 'That�s', 'all', 'right', '.', 'I', 'mean', 'hard', 'is', 'it', 'to', 'get', 'a', 'couple', 'drinks', 'right', ',', 'huh', '?', 'Ummm', ',', 'I', 'think', 'it�s', 'time', 'to', 'see', 'the', 'ring', 'again', '.', 'Yeah', ',', 'I', 'know', '.', 'Oh', ',', 'I', 'don�t', 'know', '.', 'Well', 'maybe', 'it�s', 'just', 'the', 'idea', 'of', 'Barry', 'for', 'the', 'rest', 'of', 'my', 'life', '.', 'I', 'don�t', 'know', 'I', 'think', 'I', 'feel', 'like', 'I', 'need', 'to', 'have', 'one', 'last', 'fling', ',', \"y'know\", ',', 'just', 'to', 'sorta', 'get', 'it', 'out', 'of', 'my', 'system', '.', 'I�m', 'serious', ',', 'I', 'really', ',', 'I', 'think', 'I', 'need', 'just', 'to', 'have', 'some', '...', 'meaningless', ',', 'sex', \"y'know\", ',', 'with', 'the', 'next', 'guy', 'that', 'I', 'see', '.', 'Yeah', ',', 'so', '?', 'Monica', '!', 'Look', '!', 'Hi', '!', 'What', 'do', 'ya', 'think', '?', 'Yes', ',', 'his', 'name', 'is', 'Barry', ',', 'he�s', 'a', 'doctor', ',', 'thank', 'you', 'very', 'much', '.', 'Thank', 'you', '.', 'So', 'how-how', '�bout', 'you', ',', 'are-are', 'you', 'seeing', 'anybody', '?', 'Oh', ',', 'but', 'that�s', 'okay', '.', 'Yeah', '.', 'Oh', ',', 'yeah', ',', 'sure', ',', 'sure', ',', 'sure', ',', 'sure', '.', 'Listen', ',', 'can', 'we', 'please', 'have', 'lunch', 'the', 'next', 'time', 'I�m', 'in', 'the', 'city', '?', 'Okay', '!', 'Bye', '!', 'Don�t', 'say', 'anything', '.', 'I', 'don�t', 'wan', 'na', 'speak', ',', 'I', 'don�t', 'wan', 'na', 'think', '.', 'I', 'just', 'want', 'you', 'to', 'take', 'me', 'and', 'kiss', 'me', 'and', 'make', 'love', 'to', 'me', 'right', 'here', ',', 'right', 'now', '.', 'What', '?', 'Oh', ',', 'sorry', '.', 'Um', ',', 'Barry', '.', 'I', 'love', 'how', 'he', 'cares', 'so', 'much', 'about', 'stuff', '.', 'If', 'I', 'squint', 'I', 'can', 'pretend', 'he', \"'s\", 'Alan', 'Alda', '.', \"'Okay\", '.', 'Okay', ',', 'daddy', 'we', \"'ll\", 'see', 'you', 'tomorrow', 'night', '.', 'Okay', 'bye-bye', '.', \"'\", 'Are', 'ah', ',', 'having', 'dinner', 'with', 'my', 'Dad', 'tomorrow', 'night', ',', 'I', 'hope', 'that', \"'s\", 'okay', '.', 'Ross', ',', 'my', 'father', 'does', \"n't\", 'hate', 'you', '.', 'But', 'honey', 'he', 'calls', 'everybody', 'by', 'a', 'nickname', '!', 'Okay', ',', 'look', ',', 'I', 'know', ',', 'all', 'right', ',', 'just', 'one', 'dinner', ',', 'please', ',', 'just', 'one', 'night', 'for', 'me', ',', 'please', '.', 'I', 'just', 'want', 'him', 'to', 'love', 'you', 'like', 'I', 'do', '.', 'All', 'right', ',', 'well', 'not', 'exactly', 'like', 'I', 'do', ',', 'but', ',', 'but', ',', 'if', 'you', 'do', 'come', 'to', 'dinner', ',', 'I', \"'ll\", 'love', 'you', 'like', 'I', 'do', 'in', 'that', 'black', 'thing', 'that', 'you', 'like', '.', 'Thank', 'you', '.', 'Hi', 'Daddy', '!', 'You', 'remember', 'Ross', '.', 'Yeah', ',', 'actually', 'Daddy', 'Ross', 'is', 'allergic', 'to', 'lobster', '.', 'Okay', '.', 'Aw', 'honey', 'stop', '!', 'It', \"'s\", 'not', 'that', 'bad', '.', 'Yeah', '.', 'That', \"'s\", 'Daddy', '.', 'Yes', ',', 'it', 'bothers', 'me', 'Ross', ',', 'but', \"y'know\", 'if', 'he', 'was', 'a', 'regular', 'at', 'the', 'coffee', 'house', ',', 'I', \"'d\", 'be', 'serving', 'him', 'sneezers', '.', 'So', '.', 'Ross', ',', 'I', \"'ve\", 'bugged', 'him', 'about', 'this', 'a', 'million', 'times', ',', 'he', \"'s\", 'not', 'gon', 'na', 'change', '.', 'Well', 'um', ',', 'I', 'do', \"n't\", '.', 'Yeah', 'it', 'is', ',', 'it', 'is', '.', 'We', 'really', ',', 'really', 'have', 'to', 'do', 'something', 'about', 'that', '.', 'Oh', 'Daddy', ',', 'no', 'he', 'did', \"n't\", 'mean', 'anything', 'by', 'that', ',', 'he', 'really', 'did', \"n't\", '.', 'You', 'had', 'to', 'do', 'it', ',', 'did', \"n't\", 'you', '?', 'You', 'could', \"n't\", 'just', 'leave', 'it', 'alone', '.', 'Ross', ',', 'tonight', 'was', 'about', 'the', 'two', 'of', 'you', 'getting', 'along', '.', 'Oh', ',', 'would', 'you', 'just', 'see', 'my', 'chiropractor', ',', 'already', '.', 'Um', '.', 'yeah', '.', 'All', 'right', ',', 'look', ',', 'here', \"'s\", 'the', 'bottom', 'line', 'Ross', ',', 'this', 'is', 'fixable', ',', 'if', 'we', 'act', 'fast', ',', 'okay', '.', 'So', ',', 'I', \"'ll\", 'invite', 'him', 'to', 'brunch', 'tomorrow', 'and', 'you', 'can', 'make', 'nice', '.', 'Okay', ',', 'look', ',', 'Ross', ',', 'I', 'realise', 'that', 'my', 'Father', 'is', 'difficult', ',', 'but', 'that', \"'s\", 'why', 'you', 'have', 'got', 'to', 'be', 'the', 'bigger', 'man', 'here', '.', 'Okay', ',', 'well', 'ca', \"n't\", 'you', 'just', 'try', 'it', 'one', 'more', 'time', 'Ross', '?', 'For', 'me', '?', 'For', 'me', '?', 'Okay', ',', 'well', 'you', 'are', 'just', 'gon', 'na', 'have', 'too', ',', 'okay', '.', 'Because', 'I', 'already', 'got', 'a', 'Mother', 'and', 'a', 'Father', 'who', 'can', 'not', 'stay', 'in', 'the', 'same', 'room', 'together', ',', 'okay', ',', 'I', 'do', \"n't\", 'wan', 'na', 'have', 'to', 'have', 'a', 'separate', 'room', 'for', 'you', 'too', '!', '!', 'Hi', 'Daddy', '.', 'What', '?', 'What', '?', 'He', \"'s\", 'interested', 'in', 'you', '.', 'He-he', 'likes', 'your', 'hair', ',', 'he', 'just', 'wants', 'to', 'know', 'how', 'you', 'got', 'here', '.', 'What', '?', '!', 'He', \"'s\", 'got', 'this', 'thing', '.', 'And', 'I', 'keep', 'telling', 'him', 'to', 'go', 'to', 'my', 'chiropractor', '...', 'Excuse', 'me', ',', 'Dr.', 'Bobby', 'happens', 'to', 'be', 'an', 'excellent', 'doctor', '.', 'Well', 'that', \"'s\", 'his', 'last', 'name', '.', 'It', \"'s\", 'Robert', 'Bobby', '.', 'And', 'um', ',', 'excuse', 'me', ',', 'he', 'helps', 'me', '.', 'With', 'my', 'alignment', '.', 'I', \"'ve\", 'got', 'one', 'leg', 'shorter', 'than', 'the', 'other', '.', 'What', '?', 'It', \"'s\", 'true', ',', 'my', 'right', 'leg', 'is', 'two', 'inches', 'shorter', '.', 'I', \"'m\", 'sorry', ',', 'let', 'her', '?', 'No', '.', 'Yeah', 'honey', ',', 'I', \"'m\", 'standing', 'right', 'there', '!', 'Why', 'did', \"n't\", 'you', 'just', 'tell', 'him', 'about', 'the', 'mole', 'I', 'have', \"n't\", 'got', 'checked', 'yet', '.', 'Here', 'you', 'go', 'Pheebs', '.', 'Who', 'else', 'wants', 'one', 'of', 'my', 'special', 'homemade', 'brownies', '?', 'Phoebe', ',', 'what', '?', 'Umm', '...', 'what', '?', '!', 'And', 'all', 'these', 'people', 'actually', 'died', '?', 'Phoebe', ',', 'your', 'in', 'pain', ',', 'would', 'you', 'just', 'go', 'to', 'the', 'dentist', ',', 'just', 'go', '.', 'I', 'promise', '.', 'Joey', ',', 'you', 'ca', \"n't\", 'keep', 'this', 'to', 'yourself', ',', 'if', 'you', 'know', 'about', 'this', ',', 'you', 'have', 'to', 'tell', 'him', '.', 'Whoa', '!', 'Wait', '!', 'Hello', '!', 'What', 'about', 'me', '?', 'Look', 'Benny', ',', 'spoon', '.', 'Spoon', '.', 'Come', 'on', '!', 'All', 'right', ',', \"y'know\", 'what', 'I', 'think', 'he', \"'s\", 'bored', '.', 'Okay', '.', 'Okay', 'honey', ',', 'he', \"'s\", 'fine', ',', 'he', \"'s\", 'fine', ',', 'let', \"'s\", 'just', 'put', 'him', 'down', '.', 'Come', 'here', ',', 'Ben', '.', 'See', 'that', \"'s\", 'a', 'good', 'boy', '.', 'How', 'could', 'you', 'do', 'that', 'to', 'him', '!', '!', 'Ross', 'trusted', 'me', ',', 'what', 'is', 'he', 'going', 'to', 'say', '?', '!', 'We', \"'re\", 'not', '?', '!', 'All', 'right', ',', 'I', 'like', 'that', '.', 'So', 'we', \"'re\", 'okay', ',', 'we', \"'re\", 'okay', ',', 'we', \"'re\", 'okay', ',', 'are', \"n't\", 'we', '?', 'No', ',', 'we', \"'re\", 'not', 'okay', ',', 'we', \"'re\", 'not', 'okay', ',', 'there', \"'s\", 'a', 'bump', ',', 'there', \"'s\", 'a', 'bump', '.', 'I', 'can', 'not', 'push', 'it', 'in', '!', 'Okay', ',', 'okay', ',', 'okay', '.', 'Okay', '.', 'Or', '.', 'We', 'could', 'put', 'a', 'hat', 'on', 'his', 'head', '.', 'We', 'need', 'a', 'hat', '..', 'Oh', ',', 'oh', ',', 'oh', ',', 'I', \"'ll\", 'get', \"'Rainy\", 'Day', 'Bear', \"'\", '!', '!', 'Oh', 'God', ',', 'oh', 'God', ',', 'it', \"'s\", 'sowed', 'on', 'though', '.', 'Okay', '.', 'Oh', ',', 'it', \"'s\", 'just', 'like', 'a', 'bloodbath', 'in', 'here', 'today', '.', 'Right', '.', 'See', 'Pheebs', ',', 'I', 'promised', 'you', 'no', 'one', 'would', 'die', ',', 'did', \"n't\", 'I', '?', 'Okay', ',', 'I', 'heard', 'that', '.', 'Uh-huh', '.', 'Look', 'at', 'that', '!', 'Look', 'at', 'that', '!', 'We', 'all', 'do', 'it', '.', 'Okay', ',', 'I', \"'m\", 'stopping', 'now', '.', 'Oh', 'yeah', '!', \"Y'know\", ',', 'if', 'it', \"'s\", 'not', 'a', 'headboard', ',', 'it', \"'s\", 'just', 'not', 'worth', 'it', '.', 'Monica', ',', 'number', 'one', ',', 'I', 'do', \"n't\", 'think', 'Ben', 'understands', 'the', 'concept', 'of', 'bribery', ',', 'and', 'number', 'two', ',', 'I', '...', 'What', '?', '!', 'I', 'also', 'said', 'number', 'one', '.', 'Hi', '!', 'He', \"'s\", 'perfect', ',', 'he', \"'s\", 'never', 'been', 'better', '.', 'Well', 'maybe', 'he', \"'s\", 'just', 'taking', 'a', 'nap', '.', 'Well', ',', 'we', 'have', 'got', 'ta', 'find', 'out', 'if', 'he', \"'s\", 'alive', '.', 'Are', 'you', ',', 'are', 'you', ',', 'are', 'you', 'sure', 'it', \"'s\", 'ah', ',', 'a', 'new', 'bump', '?', 'I', 'mean', ',', 'no', 'offense', ',', 'I', \"'ve\", 'always', 'thought', 'of', 'Ben', 'as', 'a', 'fairly', 'bumpy', 'headed', 'child', '.', 'I', 'did', '!', 'I', 'did', '!', '!', 'I', 'watched', '!', 'I', 'watched', '!', 'I', 'watched', 'Monica', 'bang', 'his', 'head', 'against', 'that', 'thing', '!', 'I', 'hope', 'it', \"'s\", 'still', 'funny', 'when', 'you', \"'re\", 'in', 'hell', '.', 'I', \"'ll\", 'get', 'the', 'hat', '.', 'Hey-hey', ',', 'now', 'he', \"'s\", 'showing', 'us', 'his', 'poking', 'device', '.', 'No', 'Mon', ',', 'you', 'want', 'to', 'put', 'them', 'in', 'concentric', 'circles', '.', 'I', 'want', 'to', 'do', 'this', '.', 'Oh', '!', 'That', 'would', 'be', 'sooo', 'much', 'fun', '!', 'Let', \"'s\", 'do', 'it', '!', 'Ross', '?', 'Do', 'you', 'wan', 'na', 'play', 'football', '?', 'Um', ',', 'there', 'was', 'a', 'Geller', 'Cup', '?', 'Wait', 'no', ',', 'honey', ',', 'honey', 'throw', 'it', 'to', 'me', ',', 'throw', 'it', 'to', 'me', '.', 'That', 'almost', 'hit', 'me', 'in', 'the', 'face', '.', 'Monica', ',', 'I', \"'m\", 'your', 'best', 'friend', '.', 'Ross', '!', 'You', 'do', \"n't\", 'pick', 'me', '!', 'You', \"'re\", 'stuck', 'with', 'me', '!', 'Are', 'you', 'okay', '?', 'Over', 'here', '!', 'I', 'almost', 'caught', 'that', 'one', '!', 'Wait', ',', 'what', 'am', 'I', 'gon', 'na', 'do', '?', 'Wait', ',', 'how', 'long', '?', 'Okay', '.', 'Yeah', ',', 'I', 'know', ',', 'go', 'long', '.', \"Y'know\", ',', 'it', \"'s\", 'like', 'all', 'I', \"'m\", 'doing', 'is', 'running', 'back', 'and', 'forth', 'from', 'the', 'huddle', '.', 'Can', 'I', 'see', 'that', 'for', 'second', '.', 'Now', ',', 'does', 'it', 'really', 'matter', '?', 'All', 'right', ',', 'so', 'are', 'we', 'not', 'having', 'dinner', 'at', 'all', '?', 'I', 'went', 'really', 'long', '.', 'I', 'can', 'not', 'believe', 'your', 'trading', 'me', '!', '!', 'Are', 'you', 'gon', 'na', 'let', 'me', 'play', '?', 'Yeah', '!', '!', '!', 'Kill', \"'um\", '!', '!', '!', 'No', '!', 'Come', 'on', '!', 'Do', \"n't\", 'make', 'me', 'go', 'long', '.', 'Use', 'me', '.', 'They', 'never', 'cover', 'me', '.', 'God', ',', 'I', \"'m\", 'not', 'lame', ',', 'okay', '.', 'I', 'can', 'do', 'something', '.', 'I', 'can', 'throw', ',', 'would', 'you', 'let', 'me', 'throw', ',', 'come', 'on', 'this', 'is', 'my', 'game', 'too', '.', 'Thank', 'you', '!', 'Break', '!', 'I', \"'m\", 'so', 'sorry', '!', 'Are', 'you', 'okay', '?', 'I', \"'m\", 'sorry', ',', 'they', 'were', 'just', 'all', 'coming', 'at', 'me', ',', 'and', 'I', 'did', \"n't\", 'know', 'what', 'to', 'do', '.', 'Okay', '.', 'I', 'got', 'a', 'touchdown', '!', 'We', 'did', 'it', '!', '!', 'We', 'should', 'defiantly', 'play', 'football', 'more', 'often', '.', 'Maybe', 'there', \"'s\", 'a', 'like', 'league', 'we', 'could', 'join', 'or', 'something', '.', 'Oh', 'shoot', '!', 'I', 'work', 'Monday', 'nights', '.', 'What', '?', 'Yeah', '.', 'Oh', ',', 'sure', '!', 'Do', 'you', 'need', 'me', 'to', 'train', 'somebody', 'new', '?', 'Eh', ',', 'do', 'you', 'believe', 'that', '?', 'I', \"'m\", 'gon', 'na', 'get', 'back', 'to', 'retraining', '.', 'Gunther', ',', 'Gunther', ',', 'please', ',', 'I', \"'ve\", 'worked', 'here', 'for', 'two', 'and', 'a', 'half', 'years', ',', 'I', 'know', 'the', 'empty', 'trays', 'go', 'over', 'there', '.', 'Huh', '.', 'Well', ',', \"y'know\", 'that', \"'s\", 'actually', 'a', 'really', 'good', 'idea', ',', 'because', 'that', 'way', 'they', \"'ll\", 'be', 'closer', 'to', 'the', 'mugs', '.', \"Y'know\", 'what', ',', 'you', 'should', 'have', 'the', 'other', 'waitresses', 'do', 'that', 'too', '.', 'Gee', ',', 'I', 'always', 'heard', 'them', 'talk', 'about', 'that', ',', 'I', 'just', 'always', 'thought', 'that', 'it', 'was', 'a', 'club', 'they', 'went', 'to', '.', 'Oh', 'God', ',', 'I', \"'m\", ',', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'training', 'to', 'be', 'better', 'at', 'a', 'job', 'that', 'I', 'hate', ',', 'my', 'life', 'officially', 'sucks', '.', 'Well', ',', 'yeah', '!', 'I', \"'m\", 'still', 'pursuing', 'that', '.', 'Well', ',', 'I', \"'m\", 'also', 'sending', 'out', '....', 'good', 'thoughts', '.', 'The', 'fear', '?', 'Well', 'then', 'how', 'come', 'you', \"'re\", 'still', 'at', 'a', 'job', 'that', 'you', 'hate', ',', 'I', 'mean', 'why', 'do', \"n't\", 'you', 'quit', 'and', 'get', \"'the\", 'fear', \"'\", '?', 'I', 'do', \"n't\", 'know', ',', 'I', 'mean', 'I', 'would', 'give', 'anything', 'to', 'work', 'for', 'a', 'designer', ',', \"y'know\", ',', 'or', 'a', 'buyer', '....', 'Oh', ',', 'I', 'just', 'do', \"n't\", 'want', 'to', 'be', '30', 'and', 'still', 'work', 'here', '.', 'Yeah', '.', 'Ca', \"n't\", 'I', 'just', 'look', 'at', 'the', 'handles', 'on', 'them', '?', 'Okay', ',', 'fine', '.', 'Gunther', ',', \"y'know\", 'what', ',', 'I', 'am', 'a', 'terrible', 'waitress', ',', 'do', 'you', 'know', 'why', 'I', \"'m\", 'a', 'terrible', 'waitress', '?', 'Because', ',', 'I', 'do', \"n't\", 'care', '.', 'I', 'do', \"n't\", 'care', '.', 'I', 'do', \"n't\", 'care', 'which', 'pot', 'is', 'regular', 'and', 'which', 'pot', 'is', 'decaf', ',', 'I', 'do', \"n't\", 'care', 'where', 'the', 'tray', 'spot', 'is', ',', 'I', 'just', 'do', \"n't\", 'care', ',', 'this', 'is', 'not', 'what', 'I', 'want', 'to', 'do', '.', 'So', 'I', 'do', \"n't\", 'think', 'I', 'should', 'do', 'it', 'anymore', '.', 'I', \"'m\", 'gon', 'na', 'give', 'you', 'my', 'weeks', 'notice', '.', 'Gunther', ',', 'I', 'quit', '.', 'Okay', ',', 'stop', 'what', 'you', \"'re\", 'doing', ',', 'I', 'need', 'envelope', 'stuffers', ',', 'I', 'need', 'stamp', 'lickers', '.....', 'Hey-hey-hey', 'that', \"'s\", 'funny', '!', 'Your', 'funny', 'Chandler', '!', 'Your', 'a', 'funny', 'guy', '!', 'You', 'wan', 'na', 'know', 'what', 'else', 'is', 'really', 'funny', '?', '!', 'I', 'do', \"n't\", 'know', ',', 'I', 'do', \"n't\", 'know', ',', 'were', \"n't\", 'you', 'the', 'guy', 'that', 'told', 'me', 'to', 'quit', 'my', 'job', 'when', 'I', 'had', 'absolutely', 'nothing', 'else', 'to', 'do', '.', 'Ha', '!', 'Ha', '!', 'Ha', '!', 'Ha', '!', 'Ha', '!', '!', 'No', ',', 'it', \"'s\", 'not', 'gon', 'na', 'be', 'okay', 'Ross', ',', 'tomorrow', 'is', 'my', 'last', 'day', ',', 'and', 'I', 'do', \"n't\", 'have', 'a', 'lead', '.', 'Okay', ',', \"y'know\", 'what', ',', 'I', \"'m\", 'just', 'gon', 'na', ',', 'I', \"'m\", 'just', 'gon', 'na', 'call', 'Gunther', 'and', 'I', \"'m\", 'gon', 'na', 'tell', 'him', ',', 'I', \"'m\", 'not', 'quitting', '.', 'You', 'and', 'your', 'stupid', 'fear', '.', 'I', 'hate', 'your', 'fear', '.', 'I', 'would', 'like', 'to', 'take', 'you', 'and', 'your', 'fear', '....', 'No', '.', 'Oh', 'my', 'God', '!', 'Yes', ',', 'I', 'would', 'love', 'that', ',', 'oh', ',', 'that', 'is', 'soo', 'sweet', ',', 'Joey', '.', 'Thanks', '.', 'Oh', ',', 'I', 'blew', 'it', '.', 'I', 'would', \"n't\", 'of', 'even', 'hired', 'me', '.', 'I', 'ca', \"n't\", '!', 'It', \"'s\", 'too', 'late', '!', 'Terry', 'already', 'hired', 'that', 'girl', 'over', 'there', '.', 'Look', 'at', 'her', ',', 'she', \"'s\", 'even', 'got', 'waitress', 'experience', '.', 'Last', 'night', 'she', 'was', 'teaching', 'everybody', 'how', 'to', 'make', 'napkin', '....', 'swans', '.', 'Hello', '?', 'Yeah', ',', 'this', 'is', 'she', '.', 'Oh', '!', 'You', \"'re\", 'kidding', '!', 'You', \"'re\", 'kidding', '!', 'Oh', 'thank', 'you', '!', 'I', 'love', 'you', '!', 'I', 'got', 'the', 'job', '!', 'Here', 'we', 'go', '.', 'I', \"'m\", 'serving', 'my', 'last', 'cup', 'of', 'coffee', '.', 'There', 'you', 'go', '.', 'Enjoy', '.', 'Um', ',', 'excuse', 'me', ',', 'everyone', '.', 'Ah', ',', 'this', 'is', 'my', 'last', 'night', 'working', 'here', ',', 'and', 'I', 'ah', ',', 'just', 'wanted', 'say', 'that', 'I', 'made', 'some', 'really', 'good', 'friends', 'working', 'here', ',', 'and', 'ah', ',', 'it', \"'s\", 'just', 'time', 'to', 'move', 'on', '.', 'Ah', ',', 'and', 'no', 'offence', 'to', 'everybody', 'who', 'ah', ',', 'still', 'works', 'here', ',', 'you', 'have', 'no', 'idea', 'how', 'good', 'it', 'feels', 'to', 'say', 'that', 'as', 'of', 'this', 'moment', 'I', 'will', 'never', 'have', 'to', 'make', 'coffee', 'again', '.', 'Wow', '.', 'Noo', ',', 'that', \"'s\", 'our', 'unbelievably', 'loud', 'upstairs', 'neighbor', '.', 'Good', 'luck', '.', 'Yeah', ',', 'right', 'away', 'Mr.', 'Kaplan', '.', 'I', 'know', '!', 'Op', '.', 'Oh', ',', 'you', 'got', 'me', '.', 'Oh', ',', 'that', 'sounds', 'great', '.', 'Oh', 'thank', 'you', 'so', 'much', 'Mr.', 'Kaplan', ',', 'thank', 'you', 'so', 'much', '.', 'Oh', 'God', ',', 'I', 'hate', 'my', 'job', ',', 'I', 'hate', 'it', ',', 'I', 'hate', 'my', 'job', ',', 'I', 'hate', 'it', '.', 'Oh', ',', 'I', 'wan', 'na', 'quit', ',', 'but', 'then', 'I', 'think', 'I', 'should', 'stick', 'it', 'out', ',', 'then', 'I', 'think', 'why', 'would', 'such', 'a', 'person', 'stay', 'in', 'such', 'a', 'demeaning', 'job', ',', 'just', 'because', 'it', \"'s\", 'remotely', 'related', 'to', 'the', 'field', 'they', \"'re\", 'interested', 'in', '.', 'Oh', 'honey', ',', 'come', 'on', ',', 'I', \"'m\", 'sorry', ',', 'I', 'did', \"n't\", '....', 'I', 'do', \"n't\", 'mind', 'paying', 'my', 'dues', ',', \"y'know\", ',', 'its', 'just', 'how', 'much', 'am', 'I', 'gon', 'na', 'learn', 'about', 'fashion', 'by', 'walking', 'Mira', ',', 'the', 'arthritic', 'seamstress', ',', 'to', 'the', 'bathroom', '.', 'Hi', '!', 'Is', 'my', 'misery', 'amusing', 'to', 'you', '?', 'It', \"'s\", 'not', 'funny', ',', 'this', 'is', 'actually', 'my', 'job', '.', 'Oh', 'well', 'then', ',', 'so', 'I', \"'m\", 'just', 'going', 'to', 'go', 'back', 'to', 'talking', 'to', 'my', 'friend', 'here', '.', 'And', 'you', 'can', 'go', 'back', 'to', 'enjoying', 'your', 'little', 'hamburger', '.', 'Yes', '?', '!', 'Do', 'you', 'want', 'my', 'pickle', '?', 'The', 'most', 'unbelievable', 'thing', 'happened', 'to', 'me', 'today', '.', 'Hi', '!', 'So', 'I', \"'m\", 'out', 'having', 'lunch', 'at', 'Monica', \"'s\", 'and', 'this', 'guy', 'starts', 'talking', 'to', 'me', ',', 'and', 'it', 'turns', 'out', 'he', 'works', 'for', 'a', 'buyer', 'at', 'Bloomingdale', \"'s\", 'and', 'there', 'happens', 'to', 'be', 'an', 'opening', 'in', 'his', 'department', '.', 'So', 'I', 'gave', 'him', 'my', 'phone', 'number', 'and', 'he', \"'s\", 'gon', 'na', 'call', 'me', 'this', 'weekend', 'to', 'see', 'if', 'he', 'can', 'get', 'me', 'an', 'interview', '!', 'I', 'know', '!', 'Uh-huh', '!', 'Yeah', '!', 'His', 'name', 'is', 'um', ',', 'Mark', 'something', '.', 'What', '!', '?', 'To', 'be', 'nice', '.', 'I', 'did', \"n't\", 'have', 'to', ',', 'because', 'I', 'was', 'wearing', 'my', \"'\", 'I', 'heart', 'Ross', \"'\", 'sandwich', 'board', 'and', 'ringing', 'my', 'bell', '.', 'Well', ',', 'I', 'assume', 'I', \"'ll\", 'have', 'to', 'take', 'showers', 'with', 'him', ',', 'but', \"y'know\", ',', 'that', \"'s\", 'true', 'of', 'any', 'job', '.', 'I', 'mean', 'that', \"'s\", 'unbelievable', '.', 'Dark', ',', 'big', 'hair', ',', 'with', 'the', 'airplane', 'earrings', '.', 'That', \"'s\", 'all', 'right', '.', 'Hey', '.', 'Did', 'he', 'call', '?', 'Did', 'Mark', 'call', '?', 'Oh', '.', 'Oh', 'my', 'God', ',', 'is', 'that', 'Phoebe', '?', 'Music', '.', 'Very', 'nice', '.', 'So', ',', 'how', 'are', 'you', '?', 'Oh', 'yeah', ',', 'what', \"'s\", 'it', 'about', '?', 'Yeah', ',', 'I', 'do', '.', 'I', 'ca', \"n't\", 'believe', 'Mark', 'did', \"n't\", 'call', '.', 'It', \"'s\", 'Sunday', 'night', ',', 'and', 'he', 'did', \"n't\", 'call', '.', 'Yeah', ',', 'right', '.', 'Look', 'at', 'you', ',', 'you', \"'re\", 'practically', 'giddy', '.', 'Yeah', ',', 'and', 'you', 'do', \"n't\", 'mind', 'if', 'I', 'call', ',', 'because', 'you', 'only', 'want', 'good', 'things', 'for', 'me', '.', 'Hello', ',', 'Mark', '?', 'Hi', ',', 'it', \"'s\", 'Rachel', 'Green', '.', 'Oh', 'no', ',', 'do', \"n't\", 'you', 'apologize', '.', 'Yeah', ',', 'I', \"'ll\", 'hold', '.', 'He', 'left', 'my', 'number', 'at', 'work', ',', 'but', 'he', 'was', 'helping', 'his', 'niece', 'with', 'her', 'report', 'on', 'the', 'pioneers', '.', 'Yeah', ',', 'oh', 'my', 'God', ',', 'tomorrow', '!', 'That', ',', 'no', ',', 'it', \"'s\", 'perfect', '.', 'Oh', 'God', ',', 'thank', 'you', 'soo', 'much', '.', 'Great', '!', 'Bye', '!', 'I', 'got', 'the', 'interview', '!', 'He', 'even', 'offered', 'to', 'meet', 'me', 'for', 'lunch', 'tomorrow', 'to', 'prep', 'me', 'for', 'it', '.', 'I', 'got', 'to', 'figure', 'out', 'what', 'I', \"'m\", 'going', 'to', 'wear', '.', 'Yeah', '!', 'Right', '!', 'Okay', ',', 'I', \"'ll\", 'see', 'you', 'guys', 'later', '.', 'Woo', 'hoo', '!', 'Hey', '!', 'What', 'are', 'you', 'doing', 'here', '?', 'Oh', '.', 'Hi', '.', 'Oh', 'well', ',', 'the', 'woman', 'I', 'interviewed', 'with', 'was', 'pretty', 'tough', ',', 'but', \"y'know\", 'thank', 'God', 'Mark', 'coached', 'me', ',', 'because', 'once', 'I', 'started', 'talking', 'about', 'the', 'fall', 'line', ',', 'she', 'got', 'all', 'happy', 'and', 'would', \"n't\", 'shut', 'up', '.', 'Me', 'too', '!', 'I', 'know', '.', 'Yeah', '.', 'Yeah', '.', 'Hi', 'Mark', '!', 'Oh', ',', 'I', 'did', '!', 'Oh', 'my', 'God', '!', '!', 'Eavesdropping', '.', 'Pheebs', ',', 'the', 'ceiling', 'tiles', 'were', 'falling', 'down', '.', 'Honey', ',', 'I', \"'m\", 'sorry', '.', 'Okay', '.', 'Hey', '.', 'Umm', '.', 'Does', 'everybody', 'hate', 'these', 'shoes', '?', 'Tell', 'him', '.', 'Thank', 'you', ',', 'thank', 'you', ',', 'thank', 'you', ',', 'Pheebs', '.', 'No', ',', 'no', ',', 'no', ',', 'no', 'turtles', 'scare', 'me', '.', 'I', 'do', \"n't\", 'need', 'that', 'today', '.', 'Oh', 'honey', ',', 'thank', 'you', ',', 'but', 'Mark', \"'s\", 'taking', 'me', 'out', '.', 'Yeah', ',', 'it', \"'s\", 'kinda', 'like', 'a', \"'good\", 'luck', 'on', 'your', 'first', 'day', \"'\", 'sort', 'of', 'thing', '.', 'Is', 'this', 'actually', 'a', 'lunchbox', '?', 'Oh', '.', 'Yeah', '.', 'What', 'kind', 'of', 'discount', 'do', 'we', 'get', '?', 'Oh', '!', '!', 'I', 'love', 'this', 'job', '!', 'Wow', '!', 'My', 'first', 'call', '.', 'Hi', 'honey', '!', 'Oh', ',', 'he', \"'s\", 'just', 'goofing', 'around', '.', 'Oh', 'honey', ',', 'this', 'is', 'his', 'office', 'too', '.', 'I', 'told', 'you', 'we', \"'re\", 'Joanna', \"'s\", 'two', 'assistants', '.', 'Oh', '!', 'Oh', 'my', 'God', '!', 'What', 'did', 'I', 'just', 'do', '?', 'I', 'think', 'I', 'just', 'shipped', '3,000', 'bras', 'to', 'personnel', '.', 'Oh', 'honey', ',', 'I', 'got', 'ta', 'go', '.', 'Mark', ',', 'I', 'need', 'you', '!', 'Ow', '!', 'Ross', '!', '!', 'Oh', ',', 'yeah', ',', 'sure', ',', 'it', \"'s\", 'umm', '...', 'Oh', 'no', ',', 'no-no-no', ',', 'that', \"'s\", 'not', ',', 'not', ',', 'not', ',', 'what', 'he', 'is', 'doing', '.', 'He', \"'s\", 'just', ',', 'he', \"'s\", 'just', 'really', 'romantic', '.', 'Yes', '.', 'All', 'right', 'Ross', '!', '!', 'I', 'get', 'it', '!', '!', 'You', \"'re\", 'hurt', '!', 'Oh', ',', 'please', ',', 'Ross', 'it', 'was', 'so', 'obvious', '!', 'It', 'was', 'like', 'you', 'were', 'marking', 'your', 'territory', '.', 'I', 'mean', 'you', 'might', 'have', 'well', 'have', 'just', 'come', 'in', 'and', 'peed', 'all', 'around', 'my', 'desk', '!', 'Look', ',', 'I', 'know', 'what', \"'s\", 'going', 'on', 'here', ',', 'okay', ',', 'Mark', 'explained', 'it', 'all', 'to', 'me', '.', 'He', 'said', 'this', 'is', 'what', 'you', 'guys', 'do', '.', 'Ohhh', '!', 'That', 'is', 'soo', 'sweet', '!', 'Ross', '!', 'So', 'ah', ',', 'did', 'you', 'have', 'fun', 'at', 'the', 'bachelor', 'party', 'last', 'night', '?', 'Right', '.', 'Hello', '.', 'A', 'big', 'idiot', '.', 'Honey', ',', 'why', 'is', 'it', 'hard', ',', 'I', 'mean', 'we', \"'ve\", 'been', 'together', 'for', 'almost', 'a', 'year', 'now', '?', 'Honey', ',', 'that', \"'s\", 'very', 'sweet', ',', 'it', 'just', 'seems', 'to', 'me', 'though', ',', 'that', 'if', 'two', 'people', 'love', 'each', 'other', 'and', 'trust', 'each', 'other', ',', 'like', 'we', 'do', ',', 'there', \"'s\", 'no', 'reason', 'to', 'be', 'jealous', '.', 'Where', 'ya', 'going', '?', 'Ohh', ',', 'with', 'who', '?', 'There', 'was', 'a', 'woman', 'at', 'the', '...', 'The', 'stripper', '?', '!', 'You', 'have', 'a', 'play', 'date', 'with', 'a', 'stripper', '?', '!', 'Sure', ',', 'is', 'she', 'married', '?', 'Oh', '.', 'Noo', ',', 'I', \"y'know\", 'I', 'do', \"n't\", 'see', 'why', 'she', 'has', 'to', 'play', 'with', 'you', ',', 'that', \"'s\", 'all', '.', 'I', 'mean', 'does', \"n't\", 'she', 'have', 'any', \"y'know\", 'other', 'stripper', 'moms', 'friends', 'of', 'her', 'own', '?', 'I', \"'m\", 'not', 'jealous', '.', 'All', 'right', 'this', 'is', 'about', ',', 'umm', ',', 'people', 'feeling', 'certain', 'things', \"y'know\", 'about', 'strippers', '.', 'And', \"y'know\", ',', 'and', 'um', ',', 'I', '...', 'Ugh', '.', 'Wait', ',', 'wait', ',', 'wait', '.', 'Well', ',', 'there', \"'s\", 'a', 'kiss', 'that', 'he', 'wo', \"n't\", 'forget', 'for', 'a', 'couple', 'of', 'hours', ',', \"y'know\", '.', 'Oh', 'my', 'God', ',', 'I', 'got', 'ta', 'go', 'to', 'work', '!', 'Oh', 'I', 'do', \"n't\", 'know', 'honey', '.', 'It', \"'s\", 'gon', 'na', 'be', 'really', 'late', '.', 'I', 'know', '.', 'I', \"'m\", 'sorry', '.', 'Look', ',', 'I', \"'ll\", 'make', 'a', 'deal', 'with', 'you', 'all', 'right', '?', 'Okay', '?', 'For', 'every', 'night', 'that', 'you', \"'re\", 'asleep', 'before', 'I', 'get', 'home', 'from', 'work', '...', 'I', 'will', 'wake', 'you', 'up', 'in', 'a', 'way', 'that', \"'s\", 'proved', 'very', 'popular', 'in', 'the', 'past', '.', 'Right', '.', 'Somebody', 'got', 'in', 'late', 'last', 'night', '.', 'When', 'did', 'this', 'happen', '?', 'Monica', ',', 'what', 'are', 'you', 'doing', '?', 'Hey', '.', 'Do', 'you', 'have', 'any', 'ice', '?', 'Yeah', ',', 'I', 'know', '.', 'I', 'had', 'the', 'greatest', 'day', 'though', ',', 'I', 'got', 'to', 'sit', 'in', 'on', 'the', 'meeting', 'with', 'the', 'reps', 'from', 'Calvin', 'Klien', '.', 'I', 'told', 'my', 'boss', 'I', 'liked', 'this', 'line', 'of', 'lingerie', ',', 'she', 'ordered', 'a', 'ton', 'of', 'it', '.', 'How', 'was', 'your', 'day', '?', 'Hmm', '.', 'Umm', ',', 'why', 'do', 'you', 'have', 'a', 'copy', 'of', 'The', 'Shining', 'in', 'your', 'freezer', '?', 'But', 'ah', ',', 'you', \"'re\", 'safe', 'from', 'it', 'if', 'it', \"'s\", 'in', 'the', 'freezer', '?', 'How', 'often', 'do', 'you', 'read', 'it', '?', 'Well', ',', 'umm', ',', 'I', 'guess', 'I', 'read', 'Little', 'Women', 'more', 'than', 'once', '.', 'But', 'I', 'mean', 'that', \"'s\", 'a', 'classic', ',', 'what', \"'s\", 'so', 'great', 'about', 'The', 'Shining', '?', 'Okay', '.', 'Ah', ',', 'well', 'we', \"'ll\", 'just', 'see', 'about', 'that', ',', 'okay', '.', 'I', 'will', 'read', 'The', 'Shining', ',', 'and', 'you', 'will', 'read', 'Little', 'Women', '.', 'All', 'right', '.', 'Okay', '.', 'Yeah', '.', 'Oh', ',', 'Danny', 'just', 'went', 'into', 'room', '217', '.', 'Oh', ',', 'no', ',', 'meh-nah-nah-nah', ',', 'come', 'on', 'you', \"'re\", 'gon', 'na', 'ruin', 'it', '!', 'Joey', '!', 'I', 'ca', \"n't\", 'believe', 'you', 'just', 'did', 'that', '!', 'All', 'right', ',', 'okay', ',', 'Laurie', 'proposes', 'to', 'Jo', ',', 'and', 'she', 'says', 'no', ',', 'even', 'though', 'she', \"'s\", 'still', 'in', 'love', 'with', 'him', ',', 'and', 'then', 'he', 'ends', 'up', 'marring', 'Amy', '.', 'Eh', '.', 'Beth', 'dies', '.', 'Um-hmm', '.', 'What', '?', '!', 'No', '.', 'She', 'does', \"n't\", 'die', '.', 'Because', ',', 'I', 'wanted', 'to', 'hurt', 'you', '.', 'Oh', 'my', '....', 'Sorry', '.', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'sorry', ',', 'I', 'was', 'just', 'thinking', 'you', \"'re\", 'day', 'could', 'still', 'pick', 'up', '.', 'What', '?', 'Awwww', '.', 'Joey', '?', 'Do', 'you', 'want', 'to', 'put', 'the', 'book', 'in', 'the', 'freezer', '?', 'Okay', '.', 'Hi', ',', 'sweetie', '!', 'I', \"'ve\", 'got', 'some', 'bad', 'news', '.', 'I', 'can', 'get', 'a', 'quick', 'bite', 'to', 'eat', ',', 'but', 'then', 'I', 'have', 'to', 'come', 'back', 'up', 'here', '.', 'Nooo', ',', 'he', \"'s\", 'leaving', 'for', 'a', 'better', 'job', '.', 'Well', 'we', \"'re\", 'gon', 'na', 'miss', 'you', 'around', 'here', '.', 'Yeah', ',', 'you', 'bet', '.', 'Funny', 'book', '?', 'Yeah', ',', 'at', 'the', 'lecture', ',', 'I', 'told', 'you', 'that', 'last', 'week', ',', 'you', 'said', 'you', 'did', \"n't\", 'mind', '.', 'Oh', ',', 'please', 'tell', 'me', 'it', \"'s\", 'not', 'because', 'I', \"'m\", 'going', 'with', 'Mark', '.', 'Oh', 'my', 'God', '!', '!', '!', 'Ross', '!', '!', 'Because', ',', 'he', \"'s\", 'my', 'friend', '.', 'Okay', ',', 'well', 'if', 'I', 'stop', 'playing', 'with', 'Joey', 'and', 'Chandler', ',', 'can', 'I', 'play', 'with', 'Mark', '?', 'I', 'do', \"n't\", 'know', ',', 'you', 'thought', \"'See\", 'you', 'Saturday', \"'\", 'was', 'funny', '.', 'Look', 'honey', ',', 'Mark', 'is', 'in', 'fashion', 'okay', ',', 'I', 'like', 'having', 'a', 'friend', 'that', 'I', 'can', 'share', 'this', 'stuff', 'with', '.', 'You', 'guys', 'would', 'never', 'want', 'to', 'go', 'to', 'a', 'lecture', 'with', 'me', '.', 'Really', '!', '?', 'Okay', '.', 'Honey', ',', 'I', 'would', 'love', 'for', 'you', 'to', 'go', 'with', 'me', '.', 'What', '?', 'Oh', '.', 'Nodded', 'off', '!', '!', 'Ross', 'you', 'were', 'snoring', '.', 'My', 'father', \"'s\", 'boat', 'did', \"n't\", 'make', 'that', 'much', 'noise', 'when', 'it', 'hit', 'rocks', '!', 'Well', 'okay', ',', 'how', 'about', 'four', 'hours', 'in', 'a', 'freezing', 'museum', 'auditorium', 'listening', 'to', 'Professor', 'Pitstains', 'and', 'he', \"'s\", \"'Hey\", 'everybody', '!', 'Remember', 'that', 'thing', 'that', \"'s\", 'been', 'dead', 'for', 'a', 'gazillion', 'years', '.', 'Well', 'there', \"'s\", 'this', 'little', 'bone', 'we', 'did', \"n't\", 'know', 'it', 'had', '!', \"'\", 'Okay', ',', 'see', 'now', ',', 'what', 'I', 'just', 'heard', ':', 'blah-blah-blah', ',', 'blah-blah-blah-blah-blah', ',', 'blah-blah-blah', ',', 'blah', ',', 'blah', '.', 'Oh', ',', 'that', 'is', 'so', '...', \"Y'know\", 'if', 'what', 'I', 'do', 'is', 'so', 'lame', ',', 'then', 'why', 'did', 'you', 'insist', 'on', 'coming', 'with', 'me', 'this', 'morning', '?', 'Huh', '?', 'Was', 'it', 'so', 'I', 'just', 'would', \"n't\", 'go', 'with', 'Mark', '?', 'It', \"'s\", 'not', 'dumb', '.', 'But', ',', 'maybe', 'it', \"'s\", 'okay', 'that', 'you', \"'re\", 'not', 'a', 'part', 'of', 'it', '.', \"Y'know\", 'what', 'I', 'mean', '?', 'I', 'mean', 'it', \"'s\", 'like', ',', 'I-I-I', 'like', 'that', 'you', \"'re\", 'not', 'involved', 'in', 'that', 'part', 'of', 'my', 'life', '.', 'Honey', 'see', ',', 'it', 'does', \"n't\", 'mean', 'that', 'I', 'do', \"n't\", 'love', 'you', '.', 'Because', 'I', 'do', '.', 'I', 'love', 'you', ',', 'I', 'love', 'you', 'so', 'much', '.', 'But', 'my', 'work', \"it's-it\", \"'s\", 'for', 'me', \"y'know\", ',', 'I', \"'m\", 'out', 'there', ',', 'on', 'my', 'own', ',', 'and', 'I', \"'m\", 'doing', 'it', 'and', 'it', \"'s\", 'scary', 'but', 'I', 'love', 'it', ',', 'because', 'it', \"'s\", 'mine', '.', 'I', ',', 'but', ',', 'I', 'mean', 'is', 'that', 'okay', '?', 'What', '?', '!', '!', 'Hello', '.', 'Oh', ',', 'hi', '.', 'Well', ',', 'there', 'was', 'a', 'disaster', 'in', 'shipping', 'and', 'I', \"'ve\", 'got', 'to', 'get', 'this', 'order', 'in', '.', 'Honey', ',', 'I', \"'m\", 'so', 'sorry', ',', 'but', 'it', 'looks', 'like', 'I', \"'m\", 'gon', 'na', 'be', 'here', 'all', 'night', '.', 'No-no-no', ',', 'no', ',', 'honey', 'please', ',', 'I', \"'ve\", 'got', ',', 'I', \"'ve\", 'just', 'have', 'so', 'much', 'to', 'deal', 'with', '.', 'No', ',', 'no', ',', 'no', ',', 'I', \"'m\", 'looking', 'at', 'a', 'purchase', 'order', 'right', 'here', 'and', 'it', 'clearly', 'states', 'that', 'we', 'ordered', 'the', 'Rivera', 'bikini', 'in', 'a', 'variety', 'of', 'sizes', 'and', 'colours', '.', 'And', '....', 'What', 'does', 'it', 'matter', ',', 'what', 'I', \"'m\", 'wearing', '?', '!', 'Can', 'I', 'please', 'speak', 'to', 'your', 'supervisor', '?', 'Thank', 'you', '.', 'We', \"'re\", 'holding', '.', 'Oh', '!', '!', 'My', 'God', ',', 'what', 'are', 'you', 'doing', 'here', '?', 'Ross', 'honey', ',', 'this', 'is', 'very', 'nice', ',', 'but', ',', 'but', 'I-I', 'got', 'a', 'crisis', '.', 'Honey', ',', 'honey', ',', 'I', \"'m\", 'sorry', ',', 'I', 'know', 'it', \"'s\", 'our', 'anniversary', 'but', 'I', 'told', 'you', 'on', 'the', 'phone', 'I', 'do', \"n't\", 'have', 'time', 'to', 'stop', '.', 'But', 'I', 'do', \"n't\", ',', 'hmm', '...', 'Oh', ',', 'who', 'approved', 'that', 'order', '?', '!', 'Well', 'there', 'is', 'no', 'Mark', 'Robbinson', 'in', 'this', 'office', '.', 'Get', 'me', 'Mark', 'on', 'the', 'phone', '!', 'Well', ',', 'let', 'me', 'just', 'check', 'that', 'with', 'what', 'I', 'got', 'here', ',', 'all', 'right', 'see', '038', 'is', 'not', 'the', 'number', 'for', 'this', 'store', ',', '038', 'is', 'Atlanta', '.', 'And', 'I', '...', 'None', 'for', 'me', '.', 'I', \"'m\", 'sorry', ',', 'as', 'I', 'was', 'saying', 'the', 'store', 'number', 'is', 'wrong', ',', 'and', 'I', \"'m\", 'sorry', 'but', 'that', \"'s\", '...', 'Oh', 'my', 'God', '!', '!', 'Excuse', 'me', ',', 'I', \"'m\", 'sorry', ',', 'I', \"'m\", 'gon', 'na', 'have', 'to', 'call', 'you', 'back', ',', 'I', \"'ve\", 'got', 'a', 'Schemp', 'in', 'my', 'office', '.', 'What', 'are', 'you', 'doing', '?', 'Ross', 'you', \"'re\", 'not', 'listening', 'to', 'me', ',', 'I', 'do', \"n't\", 'have', 'time', 'to', 'stop', '.', 'I', 'do', \"n't\", 'have', 'ten', 'minutes', '!', '!', 'Hey', ',', 'Ross', '!', '!', '!', 'I', 'told', 'you', 'I', 'do', \"n't\", '!', 'Look', ',', 'I', 'can', 'not', 'do', 'this', 'right', 'now', ',', 'okay', ',', 'I', \"'ve\", 'got', 'a', 'deadline', ',', 'would', 'you', 'just', 'go', 'home', ',', 'I', \"'ll\", 'talk', 'to', 'you', 'later', '.', 'Good', 'bye', '!', 'Hi', '.', 'Look', 'um', ',', 'about', 'what', 'happened', 'earlier', '...', 'I', 'was', 'gon', 'na', 'give', 'you', 'a', 'chance', 'to', 'apologise', 'to', 'me', '.', 'You', 'had', 'no', 'right', 'coming', 'down', 'to', 'my', 'office', 'Ross', '.', 'You', 'do', 'not', 'bring', 'a', 'picnic', 'basket', 'to', 'somebody', \"'s\", 'work', '!', 'Unless', 'maybe', 'they', 'were', 'a', 'park', 'ranger', '!', 'But', 'I', 'told', 'you', ',', 'I', 'did', \"n't\", 'have', 'the', 'time', '!', 'Wh', ',', 'Ross', 'what', 'do', 'you', 'want', 'from', 'me', '?', 'You', 'want', 'me', ',', 'you', 'want', 'me', 'to', 'quit', 'me', 'job', 'so', 'you', 'can', 'feel', 'like', 'you', 'have', 'a', 'girlfriend', '?', 'Just', 'a', 'job', '!', 'Ross', 'do', 'you', 'realise', 'this', 'is', 'the', 'first', 'time', 'in', 'my', 'life', 'I', \"'m\", 'doing', 'something', 'I', 'actually', 'care', 'about', '.', 'This', 'is', 'the', 'first', 'time', 'in', 'my', 'life', 'I', \"'m\", 'doing', 'something', 'that', 'I', \"'m\", 'actually', 'good', 'at', '.', 'I', 'mean', '.', 'if', 'you', 'do', \"n't\", 'get', 'that', '...', 'Well', 'neither', 'do', 'I', '!', 'Oh', 'my', 'God', '.', 'Oh', 'my', 'God', '.', 'I', 'can', 'not', 'keep', 'having', 'this', 'same', 'fight', 'over', 'and', 'over', 'again', ',', 'Ross', ',', 'no', ',', 'you', \"'re\", ',', 'you', \"'re\", ',', 'you', \"'re\", 'making', 'this', 'too', 'hard', '.', 'I', 'do', \"n't\", 'know', ',', 'I', 'do', \"n't\", 'know', '.', 'Look', ',', 'maybe', 'we', 'should', 'take', 'a', 'break', '.', 'No', '.', 'A', 'break', 'from', 'us', '.', 'Hello', '!', 'Oh', '.', 'No', '!', 'Sorry', ',', 'I', 'just', 'thought', 'you', 'were', 'somebody', 'else', '.', 'Hi', '!', 'Yeah', '.', 'Well', ',', 'umm', '.....', 'Yeah', ',', 'I', \"'m\", 'fine', '.', 'No', '!', 'Really', ',', 'no', ',', 'please', ',', 'please', ',', 'that', \"'s\", ',', 'that', \"'s\", 'okay', '.', 'Oh', ',', 'yeah', ',', 'I', \"'m\", 'not', ',', 'I', \"'m\", 'not', 'hungry', '.', 'Oh', '.', 'Okay', ',', 'bye', '.', 'Oh', ',', 'and', 'then', ',', 'we', 'got', 'into', 'this', 'big', ',', 'stupid', 'fight', '.', 'I', 'just', ',', 'it', 'was', 'awful', '.', 'I', 'told', 'him', 'he', 'treats', 'me', 'like', 'a', 'park', 'ranger', ',', 'or', 'something', ',', 'oh', 'and', 'then', 'I', 'told', 'him', 'I', 'wanted', 'to', 'take', 'a', 'break', ',', 'I', 'do', \"n't\", 'want', 'to', 'take', 'a', 'break', '.', 'No', '.', 'And', 'then', 'I', 'called', 'him', ',', 'and', 'he', 'was', \"n't\", 'there', '.', 'Oh', ',', 'thank', 'you', 'that', \"'s\", 'very', 'helpful', ',', 'I', \"'m\", 'glad', 'you', 'came', 'over', '.', 'Hello', '.', 'Hi', '!', 'Oh', ',', 'I', \"'m\", 'so', 'glad', 'you', 'called', '.', 'Nobody', '.', 'Umm', ',', 'honey', ',', 'look', 'he', 'just', 'came', 'over', 'to', '....', 'Oh', ',', 'be', 'home', ',', 'be', 'home', ',', 'be', 'home', ',', 'be', 'home', ',', 'be', 'home', ',', 'be', 'home', '.', 'Be', 'home', '.', 'Be', 'home', ',', 'be', 'home', ',', 'be', 'home', '.', 'Oh', ',', 'you', \"'re\", 'not', 'home', '.', 'You', 'want', 'me', 'to', 'just', 'quit', 'my', 'job', 'so', 'that', 'you', 'can', 'feel', 'like', 'you�ve', 'got', 'a', 'girlfriend', '?', 'Oh', 'my', 'God', '.', 'Oh', 'my', 'God', '.', 'I', 'can', 'not', 'keep', 'having', 'this', 'same', 'fight', 'with', 'you', 'Ross', '!', 'Look', ',', 'urrgh', ',', 'maybe', 'we', 'should', 'take', 'a', 'break', '.', 'No', '.', 'A', 'break', 'from', 'us', '.', 'Then', ',', 'we', 'had', 'this', 'big', ',', 'stupid', 'fight', ',', 'and', 'I', 'said', 'I', 'wanted', 'to', 'take', 'a', 'break', ',', 'I', 'don�t', 'want', 'to', 'take', 'a', 'break', '.', 'Nobody', '.', 'Umm', ',', 'honey', ',', 'look', 'he', 'just', 'came', 'over', 'to', '....', 'Hey', '.', 'Well', ',', 'we', 'never', 'actually', 'got', 'to', 'dinner', '.', 'No', ',', 'we', 'kinda', 'broke', 'up', 'instead', '.', 'God', ',', 'Monica', 'it�s', 'on', 'the', 'ceiling', '.', 'Yeah', ',', 'but', 'it�s', 'okay', ',', 'because', 'when', 'Ross', 'left', 'Mark', 'came', 'over', '.', 'No', '.', 'No', ',', 'no-no', ',', 'it�s', 'okay', ',', 'calm', 'down', '.', 'Mark', 'and', 'I', 'talked', ',', 'and', 'I', 'realised', 'how', 'much', 'I', 'love', 'your', 'stupid', 'brother', ',', 'and', ',', 'yeah', ',', 'we', 'got', 'our', 'problems', ',', 'but', 'I', 'really', 'want', 'to', 'make', 'it', 'work', '.', 'Hi', ',', 'it�s', 'me', '.', 'I�ve', 'been', 'trying', 'to', 'reach', 'you', 'all', 'night', '.', 'I', 'feel', 'awful', '.', 'Please', ',', 'Ross', ',', 'you', 'got', 'ta', 'know', 'there', 'is', 'nothing', 'between', 'me', 'and', 'Mark', '.', 'This', 'whole', 'break-up', 'thing', 'is', 'just', 'stupid', '.', 'Eh', ',', 'I�m', 'just', 'so', 'sorry', 'I', 'put', 'you', 'through', 'it', '.', 'And', ',', 'I', \"y'know\", ',', 'I', 'don�t', 'want', 'to', 'get', 'back', 'together', 'over', 'a', 'machine', '.', 'So', ',', 'I', 'love', 'you', '.', 'And', \"y'know\", 'what', ',', 'I�m', 'gon', 'na', ',', 'I�m', 'gon', 'na', 'go', 'to', 'bed', 'now', ',', 'but', 'ah', ',', 'on', 'my', 'way', 'to', 'work', 'tomorrow', 'morning', ',', 'I�m', 'gon', 'na', 'stop', 'by', 'around', '8:30', '.', 'Bye', '.', 'Hi', '.', 'Ohhh', ',', 'you', 'got', 'my', 'message', '.', 'So', 'what', 'do', 'you', 'say', '?', 'Can', 'I', 'be', 'your', 'girlfriend', 'again', '?', 'I', 'can�t', 'talk', 'to', 'you', '.', 'I', 'can�t', 'even', 'look', 'at', 'you', 'right', 'now', '!', 'Just', 'get', 'away', 'from', 'me', '!', 'A', 'mistake', '?', '!', 'What', 'were', 'you', 'trying', 'to', 'put', 'it', 'in', '?', 'Her', 'purse', '?', '!', 'Ross', ',', 'you', 'had', 'sex', 'with', 'another', 'woman', '!', \"Y'know\", 'what', ',', 'I', 'want', 'you', 'to', 'leave', '!', 'Get', 'outta', 'here', '!', 'Just', 'get', 'out', '!', 'Now', '!', '!', 'Okay', '!', 'All', 'right', '!', 'How', 'was', 'she', '?', 'Was', 'she', 'good', '?', 'Come', 'on', 'Ross', '!', 'You', 'said', 'you', 'wanted', 'to', 'talk', 'about', 'it', ',', 'let�s', 'talk', 'about', 'it', '!', '!', 'How', 'was', 'she', '?', 'Good', 'different', '?', 'Whoa', '!', '!', 'Whoa', ',', 'whoa', ',', 'wait', 'a', 'minute', '.', 'What', 'time', 'did', 'your', 'little', 'friend', 'leave', '?', 'Oh', 'my', 'God', '.', 'She', 'was', 'there', '?', 'She', 'was', 'still', 'there', '?', 'She', 'was', 'in', 'there', ',', 'when', 'I', 'was', 'in', 'there', '?', '!', 'And', 'yet', 'she', 'was', 'worth', 'jeopardising', 'our', 'relationship', '!', '!', 'We', 'were', 'on', 'a', 'break', '!', 'You', 'think', 'you�re', 'gon', 'na', 'get', 'out', 'of', 'this', 'on', 'a', 'technicality', '?', 'Well', ',', 'you', 'sure', 'had', 'a', 'hell', 'of', 'a', 'time', 'at', 'the', 'wake', '!', 'God', '!', 'And', 'to', 'have', 'to', 'hear', 'about', 'it', 'from', 'Gunther', '!', '!', 'Oh', ',', 'that', 'is', 'so', 'sweet', '.', 'I', 'think', 'I�m', 'falling', 'in', 'love', 'with', 'you', 'all', 'over', 'again', '.', 'All', 'right', '.', 'Let�s', 'say', 'I', 'had', 'slept', 'with', 'Mark', '.', 'Would', 'you', 'have', 'been', 'able', 'to', 'forgive', 'me', '?', 'You�d', 'be', 'okay', 'if', 'you', 'knew', 'that', 'Mark', 'had', 'kissed', 'me', ',', 'and', 'been', 'naked', 'with', 'me', ',', 'and', 'made', 'love', 'to', 'me', '?', 'You', 'knew', 'that', 'our', 'hot', ',', 'sweaty', ',', 'writhing', 'bodies', 'were', '....', 'I�m', 'thinking', ',', 'I�m', 'gon', 'na', 'order', 'a', 'pizza', '.', 'Fine', '.', 'Hi', '!', 'Yes', ',', 'I�d', 'like', 'to', 'order', 'a', 'large', 'pizza', '.', 'With', 'ah', ',', 'extra', 'anchovies', '.', 'Yeah', ',', 'and', 'could', 'you', 'please', 'chop', 'some', 'up', 'and', 'just', 'put', 'it', 'right', 'there', 'in', 'the', 'sauce', '?', 'Well', ',', 'I', 'should', 'think', 'so', '.', 'You', 'slept', 'with', 'someone', '.', 'That�s', '....', 'That', 'is', 'neither', 'here', 'nor', 'there', '.', 'No', 'Ross', '!', '!', 'Don�t', '!', 'You', 'can�t', 'just', 'kiss', 'me', 'and', 'think', 'you�re', 'gon', 'na', 'make', 'it', 'all', 'go', 'away', ',', 'okay', '?', 'It', 'doesn�t', 'work', 'that', 'way', '.', 'It', 'doesn�t', 'just', 'make', 'it', 'better', '.', 'Okay', '?', 'I', 'think', 'you', 'should', 'go', '.', 'I', 'really', 'think', 'you', 'need', 'to', 'go', 'now', '.', 'Yeah', ',', 'what', 'the', 'hell', 'did', 'I', 'know', '!', 'No', '.', 'I', 'can�t', ',', 'you�re', 'a', 'totally', 'different', 'person', 'to', 'me', 'now', '.', 'I', 'used', 'to', 'think', 'of', 'you', 'as', 'somebody', 'that', 'would', 'never', ',', 'ever', 'hurt', 'me', ',', 'ever', '.', 'God', ',', 'and', 'now', 'I', 'just', 'can�t', 'stop', 'picturing', 'with', 'her', ',', 'I', 'can�t', ',', 'it', 'doesn�t', 'matter', 'what', 'you', 'say', ',', 'or', 'what', 'you', 'do', ',', 'Ross', '.', 'It�s', 'just', 'changed', ',', 'everything', '.', 'Forever', '.', 'Then', 'how', 'come', 'it', 'is', '?', 'Hey', '!', 'Okay', ',', 'let', 'me', 'just', 'get', 'a', 'cup', 'of', 'coffee', '.', 'Closer', 'than', 'here', '?', 'Wait', ',', 'I�m', 'not', 'just', 'gon', 'na', 'drink', 'somebody�s', 'old', 'coffee', '.', 'Is', 'he', 'here', '?', 'Oh', '.', 'Here�s', 'your', 'moisturiser', '.', 'Hi', '!', 'You', 'guys', 'are', 'gon', 'na', 'love', 'meee', '!', 'Okay', ',', 'check', 'it', 'out', ',', 'Thursday', 'night', ',', 'five', 'tickets', ',', 'Calvin', 'Klein', 'lingerie', 'show', ',', 'and', 'you', 'guys', 'are', 'coming', 'with', 'me', '.', 'Okay', ',', 'I', 'said', 'that', 'out', 'loud', 'right', '?', 'Oh', ',', 'well', 'okay', '.', 'Well', ',', 'there', 'you', 'go', '.', 'Hm-mm', '.', 'Ohh', '!', 'Oh', ',', 'it�s', 'okay', '.', 'And', 'heels', '.', 'No', ',', 'hey', ',', 'come', 'on', ',', 'if', 'he', 'asked', 'you', 'first', ',', 'that�s', 'only', 'fair', '.', 'Hi', '!', 'Uhh', ',', 'do', 'you', 'guys', 'have', 'plans', 'for', 'the', 'weekend', '?', 'Because', 'I', 'have', 'my', 'sister', 'on', 'hold', ',', 'and', 'she', 'said', 'that', 'we', 'could', 'use', 'her', 'cabin', 'for', 'the', 'weekend', 'and', 'go', 'skiing', '.', 'Huh', '?', 'I�m', 'asking', 'you', 'first', ',', 'right', '?', '!', '.', 'I', 'mean', 'I�m', 'playing', 'by', 'the', 'rules', '.', 'Chandler', '!', 'You�re', 'smoking', '?', 'What', 'are', 'you', 'doing', '?', '!', 'Okay', '.', 'No', '.', 'Thank', 'you', '.', 'Well', ',', 'they', 'never', 'have', 'any', 'paper', 'in', 'there', \"y'know\", '.', 'So', 'my', 'rule', 'is', '�no', 'tissue', ',', 'no', 'tuschy.�', 'Well', ',', 'if', 'everybody�s', 'going', '.', 'What', '?', '!', 'What', ',', 'no', ',', 'no', ',', 'no', ',', 'mine', 'are', 'deceptively', 'small', 'I', 'mean', ',', 'I-I-I', 'actually', 'sometimes', ',', 'st-stuff', 'my', 'bra', '.', 'No', ',', 'I', 'stuff', 'outside', 'the', 'bra', '.', 'Chandler', ',', 'what', 'are', 'you', 'doing', '?', 'There', 'is', 'a', 'trash', 'can', 'right', 'there', '.', 'What', ',', 'what�s', 'it', ',', 'what�s', 'going', 'on', '?', 'So', 'you', 'know', 'how', 'to', 'fix', 'it', '?', 'Great', '!', 'Yeah', ',', 'we', 'are', 'definitely', 'on', 'Route', '27', '.', 'I', 'don�t', 'know', ',', 'I�m', 'sorry', ',', 'I', 'always', 'slept', 'in', 'the', 'back', 'when', 'we', 'drove', 'up', 'here', '.', 'Ugh', ',', 'okay', ',', 'well', 'somebody', 'will', 'come', 'and', 'save', 'us', '.', 'No', '!', 'No', ',', 'I', 'am', 'not', 'getting', 'in', 'a', 'car', 'with', 'Ross', ',', 'we', 'will', 'just', 'have', 'to', 'live', 'here', '!', 'No', 'you', 'guys', ',', 'I', 'am', 'not', 'getting', 'in', 'a', 'car', 'with', 'him', ',', 'you�ll', 'have', 'to', 'think', 'of', 'something', 'else', '.', 'Op', ',', 'op', ',', 'car', '!', 'Car', '!', '!', 'Ugh', '!', '!', '!', 'What', 'is', 'he', 'doing', 'here', '?', '!', 'All', 'right', '!', '!', 'Fine', '!', 'Fine', '.', 'Ask', 'me', 'what', '?', 'You', 'guys', 'are', 'unbelievable', '.', 'No', '!', 'He', 'can', 'not', 'come', '.', 'Why', 'would', 'you', 'even', 'want', 'to', 'come', 'Ross', '?', 'You�re', 'a', 'horrible', 'skier', '.', 'All', 'right', ',', 'let�s', 'go', '!', 'Oh', ',', 'I�m', 'sorry', ',', 'were', 'you', 'speaking', 'to', 'me', 'or', 'sleeping', 'with', 'someone', 'else', '?', \"Y'know\", 'Ross', 'why', 'don�t', 'you', 'put', 'that', 'on', 'your', 'answering', 'machine', '!', 'What', '?', '!', 'Really', 'Joey', '?', 'No', ',', 'I', 'think', 'it�s', 'very', 'obvious', 'who�s', 'wrong', 'here', '.', 'Yeah', '.', 'Thank', 'you', '.', 'Well', ',', 'I�m', 'really', 'sick', 'of', 'your', 'smoking', ',', 'so', 'I', 'brought', 'something', 'that', 'is', 'going', 'to', 'help', 'you', 'quit', '.', 'Come', 'on', ',', 'it�s', 'a', 'hypnosis', 'tape', '.', 'This', 'woman', 'at', 'work', 'used', 'it', 'for', 'two', 'weeks', 'straight', 'and', 'she', 'hasn�t', 'smoked', 'since', '.', 'What�s', 'your', 'problem', '?', 'Ross', ',', 'I', 'watched', 'you', 'get', 'hypnotised', 'in', 'Atlantic', 'City', '.', 'Oh', 'right', ',', '�cause', 'you', 'always', 'pull', 'your', 'pants', 'down', 'at', 'the', 'count', 'of', 'three', 'and', 'play', 'Wipe-out', 'on', 'your', 'butt', 'cheeks', '.', 'Oh', ',', \"y'know\", 'what', ',', 'I', 'didn�t', 'want', 'cinnamon', 'on', 'this', '.', 'Oh', 'my', 'God', '!', '!', 'Great', '!', 'Well', ',', 'that', 'shouldn�t', 'be', 'a', 'problem', '.', 'I', 'mean', 'I', 'work', 'in', 'fashion', 'and', 'all', 'I', 'meet', 'are', 'eligible', 'straight', 'men', '.', 'Well', ',', 'I', 'mean', ',', 'are', 'you', 'sure', 'you', 'want', 'to', 'go', 'out', 'with', 'her', '?', 'I', 'mean', 'that', 'ain�t', 'a', 'pretty', 'picture', 'in', 'the', 'morning', ',', 'y�know', 'what', 'I', 'mean', '.', 'That', 'wig', 'all', 'in', 'disarray', ',', 'and', 'boobs', 'flung', 'over', 'the', 'night', 'stand', ',', \"y'know\", '.', 'I', 'think', 'you', 'should', 'definitely', 'go', 'out', 'with', 'this', 'guy', '.', 'Monica', ',', 'last', 'Saturday', 'night', ',', 'what', 'happened', 'on', 'Walker', ':', 'Texas', 'Ranger', '?', 'All', 'right', '.', 'Hey', ',', 'how', 'are', 'those', 'tapes', 'working', 'out', 'for', 'ya', '?', 'Yeah', '?', 'Thank', 'you', '.', 'Hey', 'Mon', ',', 'let�s', 'give', 'Pete', 'a', 'chance', 'Come', 'on', ',', 'he', 'was', 'funny', ',', 'he', 'seems', 'really', 'nice', ',', 'and', 'that', 'check', 'thing', 'was', 'adorable', '.', 'We', 'use', 'it', '!', '!', 'Oh', 'my', 'God', ',', 'Monica�s', 'gon', 'na', 'go', 'out', 'with', 'a', 'millionaire', '.', 'Oh', 'my', 'God', ',', 'I', 'can�t', 'believe', 'this', 'is', 'a', 'real', '$', '20,000', 'check', ',', 'oh', 'this', 'is', 'just', 'so', 'exciting', '.', 'Oh', 'yeah', ',', 'sure', ',', 'that', 'too', '.', 'Oh', 'my', 'God', '!', 'The', 'millionaire�s', 'here', '!', 'Hi', '!', '!', 'Just', 'one', 'drink', '?', '!', 'Thank', 'you', '.', 'Hi', '!', 'All', 'right', ',', 'let�s', 'go', 'shoppin�', '!', '!', 'Oh', ',', 'okay', '.', 'Wow', '!', 'Umm', '....', 'I', 'know', '.', 'Well', ',', 'I', 'told', 'him', 'I', 'would', 'think', 'about', 'it', ',', 'but', 'I�m', 'gon', 'na', 'tell', 'him', 'no', '.', 'I', 'mean', 'I', 'think', 'I�d', 'say', 'no', 'to', 'anybody', 'right', 'now', '.', 'Oh', ',', 'but', 'it', 'was', 'so', 'strange', '.', 'I', 'mean', 'I�m', 'standing', 'there', 'with', 'this', 'charming', ',', 'cute', 'guy', ',', 'who�s', 'asking', 'me', 'to', 'go', 'out', 'with', 'him', ',', 'which', 'I�m', 'allowed', 'to', 'do', ',', 'and', 'I', 'felt', 'guilty', '.', \"Y'know\", ',', 'like', 'I�d', 'be', 'cheating', 'on', 'Ross', 'or', 'something', '.', 'I', 'don�t', 'have', 'any', 'issues', 'with', 'my', 'Father', '.', 'Hi', '!', 'Yeah', '.', 'Ahh', ',', 'here�s', 'a', 'box', 'of', 'your', 'stuff', '.', 'Oh', ',', \"y'know\", ',', 'it�s', 'just', 'like', 'hats', ',', 'and', 'a', 'shirt', ',', 'and', 'CD�s', ',', 'just', 'sort', 'of', 'stuff', 'that', 'you�ve', 'left', 'here', '.', 'No', '.', 'Ross', ',', 'it', ',', 'it', 'just', 'seems', 'that', \"y'know\", 'it�s', 'time', 'we-we', \"y'know\", ',', 'move', 'on', '.', 'I', 'mean', ',', 'I', 'mean', 'don�t�', 'you', 'think', '?', 'Yeah', '?', 'Good', '.', 'Ross', ',', 'you', 'got', 'that', 'for', 'free', 'from', 'the', 'museum', 'gift', 'shop', '.', 'Okay', ',', 'all', 'right', ',', 'give', 'me', 'the', 'mug', '!', 'I�ll', 'keep', 'the', 'mug', '.', 'You', 'know', 'how', 'much', 'I', 'love', 'that', 'T-shirt', '!', 'You', 'never', 'even', 'where', 'that', 'T-shirt', '!', 'Oh', ',', 'you', 'are', 'a', 'petty', 'man', '.', 'You', 'are', 'a', 'petty', ',', 'petty', '....', 'Petty', '...', 'Petty', '...', 'Small', '...', 'You', 'are', 'so', 'just', 'doing', 'this', 'out', 'of', 'spite', '.', 'Huh', '?', 'You', 'have', 'not', 'worn', 'that', 'T-shirt', 'since', 'you', 'were', '15', '!', '!', 'It', 'doesn�t', 'even', 'fit', 'you', 'anymore', '!', 'yeah-yeah-yeah', '!', '!', 'Oh', '.', 'That�s', 'so', 'Monica', 'can', 'keep', 'track', '.', 'That', 'way', 'if', 'one', 'on', 'them', 'is', 'missing', ',', 'she', 'can', 'be', 'like', ',', '�Where�s', 'number', '27', '?', '!', '�', \"Y'know\", 'what', '?', 'I', 'can�t', 'do', 'this', '.', 'Well', ',', 'oh', ',', 'Mark', ',', 'I�m', 'doing', 'this', 'for', 'the', 'wrong', 'reasons', ',', \"y'know\", '?', 'I�m', 'just', 'doing', 'it', 'to', 'get', 'back', 'at', 'Ross', '.', 'I�m', 'sorry', ',', 'it�s', 'not', 'very', 'fair', 'to', 'you', '.', 'Oh', 'God', '.', 'I�m', 'sorry', 'about', 'this', '.', 'You', 'sure', '?', 'Hey', '!', 'Oh', ',', 'great', '.', 'Although', 'I', 'did', 'sit', 'down', 'where', 'there', 'wasn�t', 'a', 'chair', '.', 'Oh', ',', 'well', ',', 'I', 'guess', 'I', 'had', 'that', 'one', 'coming', '.', 'I�m', 'just', 'gon', 'na', 'throw', 'it', 'out', ',', 'it�s', 'probably', 'just', 'a', 'bunch', 'of', 'shampoo', 'and', '...', 'No', '.', 'Nothing', '.', 'Hey', ',', 'Sophie', '!', 'Thanks', 'for', 'lunch', ',', 'Chandler', '.', \"Y'know\", ',', 'you', 'didn�t', 'have', 'to', 'walk', 'me', 'all', 'the', 'way', 'back', 'up', 'here', '.', 'Honey', 'um', ',', 'honey', ',', 'you', 'do', 'realise', 'that', 'we', 'don�t', 'keep', 'the', 'women�s', 'lingerie', 'here', 'in', 'the', 'office', '?', 'Summer', 'catalogue', '!', 'Joanna', ',', 'this', 'is', 'my', 'friend', 'Chandler', 'Bing', 'Joanna', '.', 'Bye', ',', 'Chandler', '.', 'Oh', ',', 'nothing', ',', 'he�s', 'just', 'goofy', 'like', 'that', ',', 'I', 'actually', ',', 'hardly', 'notice', 'it', 'anymore', '.', 'No', '!', '!', 'No', '!', 'He�s', 'not', 'married', ',', 'or', 'involved', ',', 'with', 'anyone', '!', 'Well', ',', 'I�ll', 'ask', 'him', 'for', 'you', ',', 'if', 'you', 'want', 'me', 'too', '?', 'Hey', '!', 'I', 'need', 'to', 'talk', 'to', 'you', '!', 'Oh', ',', 'sorry', '.', 'I', 'meant', 'Chandler', '.', 'Okay', ',', 'my', 'boss', ',', 'Joanna', ',', 'when', 'you', 'left', ',', 'she', 'started', 'asking', 'questions', 'about', 'you', '...', 'That', 'was', 'surreal', '.', 'Okay', ',', 'what', 'do', 'think', '?', 'Are', 'you', 'interested', 'at', 'all', '?', 'Oh', 'thank', 'you', ',', 'Chandler', ',', 'this', 'is', 'so', 'great', ',', 'she�s', 'gon', 'na', 'love', 'me', '.', 'Wow', '!', '!', 'What�s', 'this', '?', 'All', 'right', '!', 'O-o-o-okay', ',', 'how', 'did', 'it', 'go', '?', 'Tell', 'me', 'everything', '.', 'Hmm', '.', 'What', '?', '!', 'Oh', ',', 'I', '....', 'Oh', ',', 'I', 'know', '...', 'Ohh', ',', 'gee', '.', 'I', 'wonder', 'why', 'she', 'thinks', 'you�re', 'going', 'to', 'call', 'her', '?', 'You', 'can�t', 'just', 'say', ',', '�Nice', 'to', 'meet', 'you', ',', 'good', 'night', '?', '�', 'Well', ',', 'they', 'always', 'called', '.', 'No', '.', 'Sorry', '.', 'Okay', ',', 'okay', '.', 'Umm', ',', 'well', 'ah', ',', 'maybe', 'he', ',', 'maybe', 'he', 'feels', 'awkward', 'because', 'you', 'are', 'my', 'boss', '.', 'Well', '...', 'No', '.', 'I', '...', 'Call', 'her', '!', 'Call', 'her', 'now', '!', 'Why', 'hasn�t', 'he', 'called', 'Rachel', '?', 'Why', '?', 'Why', '?', 'I', 'don�t', 'understand', '.', 'Why', '?', 'He', 'said', 'he�ll', 'call', '.', 'Why', '?', 'Why', '?', 'Chandler', 'I�m', 'telling', 'you', 'she', 'has', 'flipped', 'out', ',', 'she�s', 'gone', 'crazy', '!', 'Come', 'on', ',', 'this', 'isn�t', 'funny', '.', 'She', 'thinks', 'it�s', 'my', 'fault', 'that', 'you', 'haven�t', 'called', 'her', '.', 'You', 'have', 'to', 'call', 'her', '!', 'Well', 'then', 'you�re', 'going', 'to', 'have', 'to', 'take', 'her', 'out', 'again', '.', 'I', 'don�t', 'care', '!', 'I', 'don�t', 'care', '!', 'You', 'are', 'going', 'to', 'have', 'to', 'take', 'her', 'out', 'again', 'and', 'end', 'it', ',', 'and', 'end', 'it', 'in', 'way', 'that', 'she', 'knows', 'it�s', 'actually', 'ended', '.', 'And', ',', 'I', 'don�t', 'care', 'how', 'hard', 'it', 'is', 'for', 'you', ',', 'do', 'not', 'tell', 'her', 'that', 'you', 'will', 'call', 'her', 'again', '!', 'That�s', 'fine', '!', 'I', 'know', '.', 'Sophie�s', 'desk', '.', 'Chandler', '!', '!', 'Are', 'you', 'gon', 'na', 'call', 'her', '!', 'Chandler', '!', '!', 'Okay', ',', 'you', 'are', 'going', 'to', 'tell', 'her', 'and', 'you�re', 'going', 'to', 'tell', 'her', 'now', '.', 'So', 'who�s', 'idea', 'was', 'it', 'to', 'put', 'everybody', 'in', 'the', 'diner', 'on', 'skates', '?', 'What', 'a', 'jerk', '!', 'You', 'want', 'me', 'to', 'kick', 'his', 'ass', '?', 'And', 'you�re', 'still', 'not', 'attracted', 'to', 'him', 'at', 'all', '?', 'Yeah', ',', 'but', 'Mon', 'that�s', 'totally', 'different', '.', 'He', 'was', 'you�re', 'health', 'teacher', '.', 'Oh', ',', 'I', 'am', ',', 'my', 'side', 'still', 'hurts', 'from', 'when', 'you', 'crashed', 'into', 'me', 'yesterday', '.', 'I', 'know', '.', 'Ow', '!', '!', 'Got', 'a', 'job', 'on', 'a', 'river', 'boat', '?', 'Oh', 'I', 'see', ',', 'so', 'this', 'suit', 'is', 'making', 'a', 'point', '.', 'Now', 'that', 'you�re', 'on', 'you�re', 'own', ',', 'you�re', 'free', 'to', 'look', 'as', 'stupid', 'as', 'you', 'like', '.', 'Yeah', ',', 'come', 'here', '!', 'Yeah', '.', 'Oh', '!', 'Was', 'how', 'you', 'invented', 'the', 'cotton', 'gin', '?', '!', 'Oww', '!', 'Oww', '!', 'I�m', 'fine', ',', 'I�m', 'fine', '.', 'Yes', 'I', 'am', '!', 'Look', ',', 'I�m', 'fine', '.', 'Watch', '.', 'Look', 'at', 'that', '.', 'Whoa-whoa', '!', 'No', '.', 'I', 'have', 'got', 'to', 'get', 'ready', 'and', 'go', 'to', 'a', 'dinner', 'at', 'my', 'bosses', 'house', '.', 'It�s', 'a', 'very', 'big', 'deal', ',', 'there�s', 'a', 'lot', 'of', 'people', 'there', 'I', 'have', 'to', 'meet', '.', 'Well', ',', 'I', 'will', 'go', 'to', 'the', 'hospital', 'tomorrow', ',', 'it�ll', 'still', 'be', 'broken', 'then', '.', 'But', \"y'know\", ',', 'I', 'could', 'use', 'a', 'hand', 'getting', 'ready', '.', 'Look', ',', 'either', 'help', 'me', 'or', 'go', '.', 'Okay', ',', 'but', 'before', 'you', 'go', ',', 'could', 'you', 'help', 'me', 'first', '?', \"Y'know\", 'what', '?', 'I', 'can', 'not', 'do', 'this', 'with', 'my', 'left', 'hand', '!', 'Would', 'you', 'please', ',', 'help', 'me', 'with', 'this', 'too', '?', 'Okay', '.', 'Let�s', 'use', 'this', 'brush', '.', 'Yeah', '.', 'Careful', '.', 'Light', '.', 'Okay', ',', 'do', 'you', 'know', 'how', ',', 'just', 'sweep', 'it', 'across', 'the', 'lid', '.', 'Okay', '?', 'Just', 'sweep', 'it', '.', 'Oh-ho', '!', 'Hey', '!', 'That�s', 'just', 'poking', 'me', 'in', 'the', 'eye', '!', 'Okay', ',', 'just', 'sweep', 'it', '.', 'Right', '.', 'Okay', ',', 'now', 'make', 'it', 'even', ',', '�cause', 'we', 'don�t', '...', 'We', 'don�t', 'want', 'it-it', 'to', 'be', 'too', 'much', ',', 'we', 'want', 'it', 'to', 'be', 'subtle', '.', 'Since', 'when', ',', 'since', 'when', 'do', 'you', 'think', 'I', 'don�t', 'wear', 'enough', 'of', 'this', '?', 'Blow', 'it', '.', 'Sophisticated', 'like', 'a', 'hooker', '?', 'Sure', '.', 'Sure', ',', 'I�ll', 'just', 'sit', 'next', 'to', 'the', 'trans-sexual', 'from', 'purchasing', '.', 'Oh', 'wait', ',', 'Ross', ',', 'would', 'you', 'just', 'stay', 'and', 'help', 'me', 'get', 'dressed', '?', 'Okay', '.', 'Okay', ',', 'great', '!', 'Umm', ',', 'okay', ',', 'just', 'turn', 'around', '.', 'I', 'don�t', 'want', 'you', 'to', 'see', 'me', 'naked', '!', 'Yeah', ',', 'but', 'that', 'was', 'different', '.', 'Y�know', '?', 'I', 'mean', ',', 'we', 'were', ',', 'we', 'were', 'going', 'out', 'then', ',', 'now', 'I', 'think', 'it�s', 'weird', '.', 'What', '?', 'Ross', '!', 'Stop', 'that', '!', 'Come', 'on', '!', 'I', 'don�t', 'want', 'you', 'thinking', 'of', 'me', 'like', 'that', 'any', 'more', '!', 'Stop', 'it', '!', 'Cut', 'it', 'out', '!', 'Cut', 'it', 'out', '!', 'Rosss', '...', 'All', 'right', '.', 'Fine', '.', 'O-kay', '!', '!', 'See', 'what', 'you', 'did', ',', 'I�m', 'gon', 'na', 'be', 'doing', 'it', 'by', 'myself', 'now', '.', 'Okay', '?', 'That�s', 'it', '.', 'Ow', '!', '!', '!', 'Oh-ow', '!', 'Ow', '!', 'Ow', '!', 'Ow', '!', 'Ow', '!', 'Ow', '!', 'Okay', ',', 'I', 'do', '.', 'I', 'really', 'do', '.', 'Okay', '.', 'Oh', 'wait', ',', 'wait-wait', ',', 'you�re', 'not', 'gon', 'na', 'come', 'with', 'me', '?', 'Okay', '.', 'Thank', 'you', '.', 'Oww', '!', '!', '!', '!', 'God', '!', 'I�m', 'sorry', ',', 'I', 'just', 'can�t', 'go', 'to', 'the', 'hospital', 'lookin�', 'like', 'this', '.', 'Okay', ',', 'you�d', 'tell', 'me', 'the', 'truth', '.', 'Right', '?', 'Okay', '.', 'What', 'thing', '?', 'What', 'thing', '?', 'What', 'thing', '?', 'What', 'is', 'this', 'thing', '?', 'Oh', 'my', 'God', '!', 'Ross', ',', 'why', 'didn�t', 'you', 'tell', 'me', 'that', '?', 'I', 'can', 'not', 'believe', 'you', '.', 'That', 'is', 'the', 'sweetest', 'thing', ',', 'I', 'just', '....', 'Okay', '.', 'Oh', ',', 'I�m', 'sorry', 'I', 'spoiled', 'you�re', 'evening', '.', 'Um-hmm', ',', 'yeah', '.', 'See', 'ya', '.', 'Oh', ',', 'Phoebe', ',', 'are', 'you', 'still', 'on', 'hold', '?', 'I', 'was', 'supposed', 'to', 'call', 'my', 'Dad', 'back', 'like', 'two', 'hours', 'ago', '.', 'What�s', 'Flimby�s', '?', 'Okay', '.', 'Hang', 'up', '!', 'That�s', 'it', '!', 'Come', 'on', '!', 'No', '.', 'No', ',', 'not', 'at', 'all', ',', 'not', 'at', 'all', '.', 'I', 'actually', 'was', 'gon', 'na', 'bring', 'someone', 'myself', ',', 'so', '.', 'I', 'meant', ',', 'me', 'plus', 'one', '!', 'Okay', ',', 'bye-bye', '!', 'Okay', ',', 'I', 'need', 'a', 'date', '!', 'Oh', ',', 'hi', '!', 'How', 'are', 'you', '?', 'Hey', '.', 'Yeah', ',', 'looks', 'that', 'way', '.', 'First', 'ones', 'here', '!', 'Wooo', '!', '!', 'Oh', '!', 'Tommy', ',', 'this', 'is', 'Ross', '.', 'Ross', ',', 'Tommy', '.', 'Okay', ',', 'uhh', ',', 'I', 'think', 'I�m', 'going', 'to', 'run', 'to', 'the', 'ladies', 'room', '.', 'Oh', ',', 'hi', '!', 'Hey', '.', 'Gosh', ',', 'you', 'look', 'soo', 'familiar', '.', 'We�re', 'not', 'actors', '.', 'Hey', '!', 'What', 'time', 'is', 'it', '?', 'Tommy�s', 'supposed', 'to', 'be', 'here', 'soon', ',', 'we�re', 'going', 'to', 'lunch', '.', 'You', 'don�t', '?', '!', 'Umm', ',', 'or', ',', 'maybe', ',', 'I', 'should', 'stay', 'away', 'from', 'all', 'men', '.', 'What�s', 'your', 'favourite', 'thing', 'about', 'summertime', '?', 'Yeah', '!', 'Tommyyyy', '!', 'Say', ',', 'what�s', 'your', 'favourite', 'thing', 'about', 'summer', '?', 'Ross', ',', 'would', 'you', 'just', 'stop', 'it', '!', 'It�s', 'getting', 'really', 'old', '.', 'Phoe-be', '!', '!', 'Hey', 'guys', '!', 'What', \"'s\", '...', 'Hi', '!', 'Wow', '!', 'Have', 'you', 'ever', 'rescued', 'anyone', 'from', 'a', 'burning', 'building', 'before', '?', 'Wow', ',', 'he', \"'s\", 'cute', ',', 'Pheebs', '!', 'But', 'I', 'thought', 'you', 'just', 'started', 'dating', 'that', 'Kindergarten', 'teacher', '.', 'What-Pheebs', '?', '!', 'Two', 'dates', 'in', 'one', 'day', '?', 'That', \"'s\", 'so', 'unlike', 'you', '.', 'Hi', '!', 'And', '?', 'Well', 'honey', ',', 'then', 'why', 'do', \"n't\", 'you', 'break', 'up', 'with', 'one', 'of', 'them', '?', 'So', 'Pheebs', ',', 'pick', 'one', 'of', 'them', '.', 'This', 'place', 'is', 'amazing', '.', 'Ahh', '...', 'Chandler', \"'s\", 'on', 'the', 'couch', '!', '!', 'Monica', \"'s\", 'gon', 'na', 'marry', 'a', 'millionaire', '!', '!', '!', 'Mon', 'you', 'definitely', 'have', 'to', 'make', 'it', 'a', 'theme', 'wedding', ',', 'and', 'the', 'theme', 'could', 'be', ',', '``', 'Look', 'how', 'much', 'money', 'we�ve', 'got', '!', \"''\", \"Y'know\", ',', 'I', 'mean', 'you', 'could', 'put', ',', 'you', 'could', 'put', 'money', 'in-in', 'the', 'invitations', '!', 'You-you', 'could', 'have', 'like', 'little', 'money', 'place', 'settings', '.', 'And', 'ah', ',', 'you', 'could', 'start', 'with', 'a', 'money', 'salad', '!', 'I', 'mean', 'it�ll', 'be', 'dry', ',', 'but', 'people', 'will', 'like', 'it', '.', 'Oh', 'please', ',', 'what', 'do', 'you', 'know', '!', 'You', 'married', 'a', 'lesbian', '!', 'OH', 'MY', 'GOD', '!', '!', '!', 'Sorry', ',', 'I', 'was', 'just', 'imagining', 'what', 'it�d', 'be', 'like', 'to', 'catch', 'the', 'money', 'bouquet', '.', 'Hi', '!', 'Okay', ',', 'don�t', 'be', 'mad', 'at', 'me', ',', 'but', 'I', 'couldn�t', 'resist', '.', 'Yes', ',', 'and', 'I', 'know', 'that', 'you�d', 'say', 'no', 'if', 'he', 'asked', 'you', ',', 'but', 'I�m', 'sorry', ';', 'how', 'great', 'would', 'you', 'look', 'walking', 'down', 'the', 'aisle', 'in', 'this', 'Donna', 'Carin', '.', 'Oh', 'my', 'God', '.', 'You', 'didn�t', 'break', 'up', 'with', 'that', 'fireman', '?', 'Wow', '!', 'How�d', 'it', 'go', 'with', 'Pete', '?', '!', 'So', ',', 'come', 'on', ',', 'what', 'was', 'the', 'big', 'news', 'Pete', 'wanted', 'to', 'tell', 'you', 'Mon', '?', '!', 'Or', 'should', 'I', 'say', 'Mrs.', 'Monica', 'Becker', '?', 'Why', '?', '!', 'What', 'is', 'it', '?', 'Yes', '!', '!', \"Y'know\", 'I', 'don�t', ',', 'I', 'don�t', 'understand', 'guys', ',', 'I', 'mean', 'I-I', 'would', 'never', 'congratulate', 'Monica', 'on', 'a', 'great', 'stew', 'by', \"y'know\", ',', 'grabbin�', 'her', 'boob', '.', 'Yeah', '.', 'Oh', ',', 'ah', 'with', 'who', '?', 'Oh-oh-oh', ',', 'which', 'one', 'is', 'Bonnie', 'again', '?', 'Oh', '!', 'That�s', 'fine', '.', 'Well', 'that', 'was', 'depressing', ',', 'I', 'think', 'I', 'just', 'bought', 'a', 'soft', 'pretzel', 'from', 'one', 'of', 'the', 'kids', 'from', 'Fame', '.', 'Ready', 'to', 'go', 'to', 'the', 'movies', '?', 'This', 'is', 'Bonnie', '?', 'This', 'is', 'Bonnie', '?', 'You�re', 'Bonnie', '?', 'Oh', 'no', ',', 'I�m', 'sorry', ',', 'you', 'look', 'a', 'lot', 'different', 'from', 'the', 'last', 'time', 'I-I', 'saw', 'you', '.', 'Oh', ',', 'that', 'must', 'be', 'it', '.', 'You', 'said', 'she', 'was', 'bald', '.', 'How', 'could', 'you', 'not', 'tell', 'me', 'that', 'she', 'has', 'hair', '?', 'Ohh', ',', 'well', ',', 'this', 'is', 'just', 'perfect', '!', 'Yeah', ',', 'I', 'said', 'what', 'was', 'okay', 'when', 'I', 'thought', 'she', 'was', 'some', 'weird', 'bald', 'chick', '.', 'I', 'mean', ',', \"y'know\", ',', 'that', 'girl', 'has', 'hair', 'got', 'all', 'over', 'head', '!', 'Why', ',', 'does', 'she', 'have', 'a', 'bad', 'personality', '?', 'Oh', 'my', 'God', '!', 'Phoebe', 'look', ',', 'it�s', 'Ross', 'and', 'that', 'girl', '.', 'Phoebe', '!', 'Come', 'on', 'Phoebe', ',', 'look', 'at', 'that', '!', 'They', 'are', 'not', 'breaking', 'up', ',', 'look', 'at', 'them', '.', 'Okay', 'that�s', ',', 'you', 'know', 'what', 'that', 'is', '?', 'That', 'is', 'a', ',', 'that', 'is', 'a', 'second', 'date', ',', 'that�s', 'what', 'that', 'is', '!', 'Look', 'at', 'that', ',', 'she', 'just', 'put', 'her', 'hand', 'on', 'his', 'thigh', '...', 'Ohh', '!', 'Phoebe', ',', 'this', 'is', 'all', 'your', 'fault', '!', 'Now', 'he', 'loves', 'her', ',', 'he�s', 'gon', 'na', 'marry', 'her', ',', 'and', 'this', 'is', 'all', 'your', 'fault', '.', 'You', 'said', 'she', 'was', 'bald', '!', '!', 'Phoebe', ',', 'we', 'can�t', ',', 'we', 'just', 'can�t', 'just', 'let', 'it', 'happen', '!', 'Okay', ',', 'we', 'have', 'to', 'do', 'something', '!', 'We', 'have', 'to', 'break', 'them', 'up', '!', 'Okay', '?', 'Just', 'go', 'in', 'there', 'and', 'like', ',', 'shave', 'her', 'head', '!', 'You', 'owe', 'me', 'one', 'bald', 'girl', '!', '!', 'Yes', '.', 'Yes', '.', 'I', 'just', \"y'know\", ',', 'I', 'didn�t', 'expect', 'him', 'to', 'be', 'this', 'happy', 'so', 'soon', '.', 'Ufff', '.', 'Ooo-ooh', '!', 'What', '?', 'Oh', '!', 'Oh', ',', 'I', 'can�t', 'watch', 'this', '.', 'I', 'mean', 'is', 'that', 'woman', 'capable', 'of', 'talking', 'about', 'anything', 'else', 'but', 'sex', '?', 'That', 'is', 'so', 'cool', '.', 'Ohh', ',', 'big', ',', 'fat', 'bummerrr', '.', 'Hey', '!', 'Ross', 'gave', 'it', 'to', 'me', '.', 'Ohh', ',', 'thank', 'you', '.', 'Well', 'excuse', 'me', ',', 'my', 'fashion-impaired', 'friends', ',', 'I', 'am', 'here', 'to', 'tell', 'you', 'that', 'hats', 'are', 'back', '.', 'Oh', 'yeah', ',', 'now', 'everybody', 'wants', 'to', 'be', 'under', 'this', 'hat', '!', 'Allll', 'done', '!', 'Okay', ',', 'who', \"'s\", 'next', '?', '!', 'Come', 'on', ',', 'please', '?', '!', 'I', \"'m\", 'boredddd', '!', 'You', 'let', 'me', 'do', 'it', 'once', 'before', '.', 'Yes', '!', 'Just', 'once', '!', 'Take', 'it', 'like', 'a', 'man', ',', 'Ross', '!', 'Oh', ',', 'come', 'on', '!', 'Really', '?', '!', 'Oh', ',', 'yeah', '.', 'Okay', ',', 'your', 'band', 'is', 'playing', 'at', 'Arnold', \"'s\", ',', 'collect', 'three', 'cool', 'points', '.', 'Which', 'means', ',', 'I', 'have', 'five', ',', 'and', 'that', 'means', 'I', 'get', 'Joey', \"'s\", 'boxers', '!', 'All', 'right', ',', 'I', \"'m\", 'gon', 'na', 'make', 'more', 'margaritas', '!', 'I', \"'m\", 'just', 'making', 'margaritas', '.', 'What', '?', '!', 'Oh', ',', 'come', 'on', '!', 'Monica', ',', 'please', '?', 'He', 'is', ',', 'is', \"n't\", 'he', '?', 'I', 'do', \"n't\", 'know', ',', 'I', 'do', \"n't\", 'know', ',', 'I', 'mean', 'maybe', 'it', \"'s\", 'just', 'being', 'here', 'at', 'the', 'beach', 'together', 'or', ',', 'I', 'do', \"n't\", 'know', '.', 'But', 'it', \"'s\", 'like', 'something', '...', 'Well', '!', 'Is', 'everybody', 'else', 'having', 'just', 'the', 'best', 'time', '?', '!', 'Well', 'I', 'assume', 'the', 'ah', ',', 'happy', 'couple', 'is', \"n't\", 'up', 'yet', '.', 'Did', 'you', 'guys', 'hear', 'them', 'last', 'night', '?', 'Oh', ',', 'great', '.', 'I', \"'m\", 'going', 'for', 'a', 'walk', '.', 'Oh', ',', 'ah', 'nothin', \"'\", '.', 'I', 'just', 'felt', 'like', 'hangin', \"'\", 'out', 'here', 'and', 'reading', '.', 'Ohhhh', ',', 'sorry', 'I', 'missed', 'that', '.', 'Ohh-ha-ha', '!', \"Y'know\", ',', 'I', 'got', 'ta', 'tell', 'ya', ',', 'I', 'just', 'loved', 'your', 'look', 'when', 'you', 'were', 'bald', '.', 'Ohh', '!', 'Really', '?', '!', 'I', 'mean', 'you', 'definitely', 'should', 'do', 'that', '.', 'Yeah', '!', 'Awww', ',', 'stop', '.', 'Come', 'on', '.', 'Now', 'go', 'shave', 'that', 'head', '!', 'Aww', 'Pheebs', ',', 'that', 'sucks', '!', 'Hi', '!', 'That', 'was', 'her', 'idea', ',', 'I', 'just', 'gave', 'her', 'a', 'nudge', '.', 'Hey', '!', 'Come', 'on', 'see', ',', 'she', 'does', \"n't\", 'look', 'that', 'bad', '.', 'I', 'do', \"n't\", 'know', '.', 'All', 'right', '!', 'Ross', ',', 'do', 'you', 'think', 'it', \"'s\", 'easy', 'for', 'me', 'to', 'see', 'you', 'with', 'somebody', 'else', '?', 'Yeah', ',', 'because', 'I', 'was', 'mad', 'at', 'you', ',', 'not', 'because', 'I', 'stopped', 'loving', 'you', '!', 'Noo', '.', 'Oh', ',', 'y-yeah', ',', 'so', ',', 'you-you', 'love', 'me', '!', 'Noo', '!', 'Maybe', '!', 'I', ',', 'I', 'do', \"n't\", 'know', '.', 'Ross', ',', 'I', 'still', 'ca', \"n't\", 'forgive', 'you', 'for', 'what', 'you', 'did', ',', 'I', 'ca', \"n't\", ',', 'I', 'just', ',', 'but', 'sometimes', 'when', 'I', \"'m\", 'with', 'you', 'I', 'just', ',', 'I', 'feel', 'so', '...', 'I', 'just', ',', 'I', 'feel', ',', 'I-I', 'just', '...', 'I', 'feel', '...', 'Well', '!', 'Good', 'night', '.', 'I', \"'m\", 'going', 'upstairs', '.', 'Oh', ',', 'you', \"'re\", 'welcome', 'a', 'million', '.', 'Oh', 'my', 'God', '.', 'Whoa', '!', 'What', '?', '!', 'Why', '?', '!', 'Here', '?', '!', 'Now', '?', '!', 'Well', ',', 'ca', \"n't\", 'you', 'tell', 'her', 'that', 'you', 'are', 'not', 'in', 'the', 'mood', '?', 'Whoa-ho', '.', 'I', 'do', \"n't\", 'know', '.', 'Oh', ',', 'making', 'it', 'worse', '!', 'Oh', ',', 'was', 'it', 'awful', '?', 'I', 'wrote', 'you', 'a', 'letter', '.', 'It', \"'s\", 'just', 'some', 'things', 'I', \"'ve\", 'been', 'thinking', 'about', '.', 'Some', 'things', 'about', 'us', ',', 'and', 'before', 'we', 'can', 'even', 'think', 'about', 'the', 'two', 'of', 'us', 'getting', 'back', 'together', ',', 'I', 'just', 'need', 'to', 'know', 'how', 'you', 'feel', 'about', 'this', 'stuff', '.', 'Well', ',', 'I', \"'ll\", 'be', 'waiting', 'for', 'you', ',', 'just', 'come', 'up', 'when', 'you', \"'re\", 'done', '.', 'Hey', '!', 'What', 'happened', 'to', 'you', '?', 'Why', 'did', \"n't\", 'you', 'come', 'up', '?', 'You', 'just', 'finished', '?', 'So', 'umm', ',', 'does', 'it', '?', 'Does', 'it', '?', 'What', 'are', 'you', 'talking', 'about', ',', 'Ross', ',', 'you', 'just', 'said', 'that', 'you', 'read', 'it', 'twice', '!', 'Look', ',', \"y'know\", 'what', ',', 'either', 'it', 'does', 'or', 'it', 'does', \"n't\", ',', 'and', 'if', 'you', 'have', 'to', 'even', 'think', 'about', 'it', '...', 'Are', 'you', 'sure', '?', 'I', 'know', '.', 'How', 'was', 'the', 'beach', '?', 'Ooh', ',', 'I', 'have', 'to', 'go', 'pack', '.', 'It', 'really', 'does', '?', 'All', 'right', ',', 'that', \"'s\", 'it', ',', 'you', 'guys', '!', 'What', 'happened', 'out', 'there', '?', 'Oh-hooo', ',', 'I', 'missed', 'you', '.', 'Ooh', ',', 'I', 'was', 'soo', 'nervous', 'about', 'that', 'letter', '.', 'But', 'the', 'way', 'you', 'owned', 'up', 'to', 'everything', ',', 'it', 'just', 'showed', 'me', 'how', 'much', 'you', \"'ve\", 'grown', '.', \"Y'know\", '?', 'You', 'have', '!', 'Ross', ',', 'you', 'should', 'give', 'yourself', 'credit', '.', 'I', 'mean', 'my', 'Mom', 'never', 'thought', 'this', 'would', 'work', 'out', '.', 'It', 'was', 'all', ',', 'Once', 'a', 'cheater', ',', 'always', 'a', 'cheater', '.', 'Ooh', ',', 'I', 'just', 'wish', 'we', 'had', \"n't\", 'lost', 'those', 'four', 'months', ',', 'but', 'if', 'time', 'was', 'what', 'you', 'needed', 'just', 'to', 'gain', 'a', 'little', 'perspective', '...', 'Yeah', '!', 'You', 'and', 'that', 'girl', 'from', 'that', 'copy', 'place', ',', 'which', 'yesterday', 'you', 'took', 'full', 'responsibility', 'for', '!', '!', 'What', '?', '!', '!', 'You', 'fell', 'asleep', '?', '!', \"Y'know\", 'I', 'ca', \"n't\", 'believe', 'I', 'even', 'thought', 'about', 'getting', 'back', 'together', 'again', '!', 'We', 'are', 'so', 'over', '!', '!', 'Oh', ',', 'oh', ',', 'and', 'hey-hey-hey', ',', 'those', 'little', 'spelling', 'tips', 'will', 'come', 'in', 'handy', 'when', 'you', \"'re\", 'at', 'home', 'on', 'Saturday', 'nights', 'playing', 'Scrabble', 'with', 'Monica', '!', '!', 'Sorry', '!', '!', 'I', 'just', 'feel', 'bad', 'about', 'all', 'that', 'sleep', 'you', \"'re\", 'gon', 'na', 'miss', 'wishing', 'you', 'were', 'with', 'me', '!', 'And', 'hey', '!', 'Just', 'so', 'you', 'know', ',', 'it', \"'s\", 'not', 'that', 'common', '!', 'It', 'does', \"n't\", 'happen', 'to', 'every', 'guy', '!', 'And', 'it', 'is', 'a', 'big', 'deal', '!', '!', 'Good', '!', \"'Cause\", 'I', \"'ve\", 'got', 'a', 'product', 'report', 'to', 'read', ',', 'it', \"'s\", 'like', 'eight', 'pages', ',', 'I', 'hope', 'I', 'do', \"n't\", 'fall', 'asleep', '.', 'Wow', '!', 'Look', 'at', 'that', ',', 'Chip', 'Matthews', 'called', '.', 'I', 'wonder', 'what', 'he', 'wants', '?', 'I', 'bet', 'he', 'sensed', 'that', 'I', 'was', 'ready', 'to', 'have', 'sex', 'with', 'another', 'guy', '.', 'Okay', '.', 'Are', 'you', 'sure', 'you', 'wan', 'na', 'hear', 'this', '?', 'Chip', '!', 'Hi', ',', 'it', \"'s\", 'Rachel', '.', 'Rachel', 'Green', '.', 'Yeah', ',', 'umm', ',', 'you', 'left', 'me', 'a', 'message', '.', 'Yes', 'you', 'did', ',', 'my', 'roommate', 'wrote', 'it', 'down', '.', 'Monica', 'Geller', '.', 'Ohh', '.', 'Why', '?', 'I', 'love', 'that', 'thing', '.', 'Something', 'to', 'do', 'with', 'numbers', '?', 'What', '?', 'You', 'mean', 'the', 'mom', 'you', 'met', 'in', 'Montauk', '.', 'She', 'was', 'a', 'cat', '?', '!', 'Umm', ',', 'when', 'were', 'you', 'gon', 'na', 'tell', 'me', 'that', 'you', \"'re\", 'going', 'out', 'with', 'Chip', 'Matthews', '?', 'Nooo', '!', 'It', \"'s\", 'not', 'okay', '!', 'I', 'ca', \"n't\", 'believe', 'you', 'would', 'want', 'to', 'after', 'what', 'he', 'did', 'to', 'me', '!', 'Monica', '!', 'I', 'could', \"n't\", 'find', 'him', 'for', 'two', 'hours', '!', 'He', 'was', 'having', 'sex', 'with', 'Amy', 'Welch', '!', 'I', 'mean', 'why', ',', 'of', 'all', 'people', 'would', 'you', 'want', 'to', 'go', 'out', 'with', 'Chip', '?', '!', 'Okay', ',', 'that', 'does', \"n't\", 'help', 'me', ',', 'because', 'we', 'went', 'to', 'the', 'same', 'high', 'school', '.', 'They', 'had', 'to', 'have', 'that', 'specially', 'made', '?', '!', 'Oh', 'my', 'God', ',', 'they', 'told', 'us', 'that', 'was', 'for', 'the', 'mascot', '!', 'Oh', ',', 'you', 'go', 'out', 'with', 'him', '.', 'Yeah', '.', 'Just', ',', 'if', 'it', \"'s\", 'possible', ',', 'could', 'you', 'leave', 'him', 'somewhere', 'and', 'go', 'have', 'sex', 'with', 'another', 'guy', '?', 'I', 'believe', 'it', '.', 'Yes', ',', 'I', 'do', '.', 'Oh', 'sure', 'I', 'am', ',', 'because', 'you', 'always', 'have', 'to', 'be', 'right', '.', 'Jurassic', 'Park', 'could', 'happen', '.', 'You', 'guys', ',', 'you', \"'re\", 'never', 'gon', 'na', 'believe', 'what', 'I', 'just', 'found', 'tacked', 'up', 'on', 'a', 'telephone', 'pole', '!', 'Look', 'kinda', 'familiar', '?', 'You', 'guys', ',', 'there', \"'s\", 'a', 'little', 'girl', 'in', 'Soho', 'looking', 'for', 'this', 'cat', '.', 'I', 'mean', ',', 'you', 'know', 'what', 'that', 'means', '?', '!', 'Do', 'we', 'have', 'to', 'tell', 'her', '?', 'I', 'hate', 'when', 'Ross', 'is', 'right', '!', 'Pheebs', '...', 'All', 'right', '!', '!', 'Jeez', '!', 'Hello', ',', 'Chip', '.', 'I', \"'m\", 'great', '!', 'I', \"'m\", 'great', '.', 'I', \"'ve\", 'got', 'a', 'great', 'job', 'at', 'Bloomingdale', \"'s\", ',', 'have', 'wonderful', 'friends', ',', 'and', 'eventhough', 'I', \"'m\", 'not', 'seeing', 'anyone', 'right', 'now', ',', 'I', \"'ve\", 'never', 'felt', 'better', 'about', 'myself', '.', 'She', \"'ll\", 'be', 'out', 'in', 'a', 'second', '.', 'So', ',', 'Chip', ',', 'how', \"'s\", 'umm', ',', 'Amy', 'Welch', '?', 'Wow', '!', 'They', 'really', 'got', 'you', 'guys', '.', 'Your', 'T.V', '.', 'The', 'chairs', '.', 'So', ',', 'how', 'was', 'your', 'date', '?', 'Um-hmm', '.', 'Oh', 'honey', ',', 'I', \"'m\", 'sorry', '.', 'Ohh', '!', 'That', \"'s\", 'so', 'great', '!', 'I', \"'m\", 'sorry', ',', 'sweetie', '.', 'You', 'could', '....', 'say', 'you', \"'re\", 'sorry', 'to', 'her', 'mom', '.', 'So', 'honey', ',', 'what', 'are', 'you', 'gon', 'na', 'do', 'about', 'the', 'little', 'girl', '?', 'I', \"'ll\", 'go', 'with', 'you', '.', 'Oh', '!', 'Good', 'thing', 'Chandler�s', 'not', 'here', ',', 'he', 'always', 'wins', 'at', 'this', 'game', '.', 'Hey', '!', 'Umm', ',', 'do', 'you', 'guys', 'have', 'any', 'juice', '?', 'My', 'boss', ',', 'Joanna', '?', 'Wow', ',', 'that', 'must�ve', 'been', 'awkward', '.', 'You', 'ah', ',', 'you', 'didn�t', 'say', '�Yes�', 'to', 'that', 'did', 'you', '?', 'What', 'is', 'she', 'doing', 'here', '?', 'I', 'don�t', 'understand', '!', 'Last', 'time', 'you', 'went', 'out', 'with', 'her', 'you', 'said', 'she', 'was', 'a', '�big', ',', 'dull', 'dud.�', 'Well', ',', 'last', 'time', 'I', 'almost', 'got', 'fired', '.', 'You', 'must', 'end', 'it', ',', 'you', 'must', 'end', 'it', 'now', '!', 'Chandler', '!', '!', 'Promise', 'me', ',', 'you', 'will', 'end', 'it', '.', 'Thank', 'you', '.', 'That�s', 'weird', ',', 'she', 'locked', 'the', 'door', '.', 'Okay', ',', 'swear', 'you', 'won�t', 'tell', ',', 'but', 'when', 'Mark', 'left', 'he', 'gave', 'me', 'a', 'key', 'to', 'Joanna�s', 'office', '.', 'Do', 'you', 'wan', 'na', 'see', 'the', 'list', '?', 'What', '?', '!', 'You', 'promised', 'you', 'would', 'break', 'up', 'with', 'her', '!', 'And', 'the', 'fact', 'that', 'you', 'were', 'jeopardising', 'my', 'career', 'never', 'entered', 'your', 'mind', '?', '!', \"Y'know\", 'what', 'Chandler', ',', 'you', 'got', 'yourself', 'into', 'those', 'cuffs', ',', 'you', 'get', 'yourself', 'out', 'of', 'them', '.', 'Oh', ',', 'Chandler', '!', '!', 'All', 'right', ',', 'this', 'is', 'it', '!', 'You', 'never', 'see', 'Joanna', 'again', '!', 'You', 'never', 'come', 'into', 'this', 'office', 'again', '!', 'You', 'give', 'me', 'back', 'my', 'Walkman', '!', 'Well', ',', 'then', 'I', 'lost', 'it', '.', 'You', 'buy', 'me', 'one', '!', 'Does', 'it', 'hurt', '?', 'Wait', 'a', 'minute', '!', 'What', 'are', 'you', 'gon', 'na', 'tell', 'Joanna', '?', 'When', 'she', 'sees', 'that', 'you�re', 'gone', ',', 'she�s', 'gon', 'na', 'know', 'that', 'I', 'let', 'you', 'out', ',', 'and', 'that', 'I', 'was', 'in', 'here', ',', 'and', 'I�m', 'gon', 'na', 'get', 'fired', '!', 'No', ',', 'there�s', 'nothing', 'to', 'make', 'up', ',', 'she�s', 'gon', 'na', 'know', 'that', 'I', 'have', 'a', 'key', 'to', 'her', 'office', ',', 'I�ve', 'got', 'to', 'get', 'you', 'locked', 'up', 'back', 'the', 'way', 'you', 'were', '!', 'Chandler', '!', 'Chandler', ',', 'please', ',', 'I', 'have', 'to', 'get', 'you', 'locked', 'up', 'back', 'the', 'way', 'you', 'were', ',', 'I', 'am', 'sooo', 'gon', 'na', 'lose', 'my', 'job', ',', 'she�s', 'very', 'private', 'about', 'her', 'office', '.', 'Now', 'I', 'know', 'why', '.', 'What', 'if', 'I', 'clean', 'your', 'bathroom', 'for', 'a', 'month', '?', 'Foot', 'rubs', 'for', 'a', 'month', '!', 'I�ll', 'take', 'all', 'of', 'your', 'photos', 'and', 'put', 'them', 'into', 'photo', 'albums', '!', 'Sophie', 'sit', '!', '!', 'No', '!', 'God', ',', 'would', 'you', 'just', 'calm', 'down', '!', 'I', 'ah', ',', 'will', 'buy', 'and', 'wrap', 'all', 'of', 'your', 'Christmas', 'gifts', '.', 'I', 'ah', 'Oh', '!', 'I�ll', 'squeeze', 'you', 'fresh', 'orange', 'juice', 'every', 'morning', '!', 'Yeah', '!', '!', 'D�oh', '!', '!', 'I�ve', 'got', 'it', '!', 'I', 'have', 'so', 'got', 'it', '.', 'There�s', 'gon', 'na', 'be', 'rumours', 'about', 'this', ',', 'there�s', 'no', 'way', 'to', 'stop', 'it', '.', 'Sophie', 'knows', ',', 'Monica', 'and', 'Phoebe', 'know', '.', 'Oh', ',', 'I', 'called', 'them', '.', 'And', 'when', 'they', 'ask', 'me', 'what', 'I', 'saw', ',', 'I', 'can', 'be', 'very', 'generous', 'or', 'very', 'stingy', '.', 'I', 'can', 'make', 'you', 'a', 'legend', '.', 'I', 'can', 'make', 'you', 'this', 'generation�s', 'Milton', 'Berle', '.', 'Ohh', ',', 'not', 'compared', 'to', 'you', '.', 'So', 'did', 'you', 'break', 'up', 'with', 'Joanna', '?', 'What', '?', '!', 'It�s', 'me', '!', 'Good', 'morning', '!', 'Yeah', ',', 'sure', '.', 'Umm', ',', 'they', 'didn�t', 'have', 'poppy', 'seed', 'bagels', ',', 'so', 'I', 'Oh', 'my', 'word', '!', 'Oh', ',', 'yeah', '!', 'Yeah', '!', 'Okay', '.', 'What', '?', 'Oh', 'yeah', ',', 'I', 'know', ',', 'but', 'the', 'garbage', 'was', 'full', '.', 'Well', ',', 'I', 'thought', 'you', 'liked', 'doing', 'it', '.', 'Right', '!', 'Oh', '!', 'Hey', ',', 'Mr.', 'Treeger', '.', 'Ummm', '.', 'Oh', '!', 'I', '`', 'm', 'sorry', '.', 'It', '`', 's', 'a', 'little', 'old', 'but', '....', 'I', '`', 'm', 'sorry', '.', 'I', 'didn', '`', 't', ',', 'I', 'don', '`', 't', 'come', 'in', 'here', 'a', 'lot', '.', 'No', '.', 'I', 'didn', '`', 't', '.', 'I', 'never', 'said', 'that', '.', 'Okay', ',', 'I', '`', 'm', 'sorry', '.', 'Yes', '!', 'And', 'he', 'said', 'really', 'mean', 'things', 'that', 'were', 'only', 'partly', 'true', '.', 'That', '`', 's', 'easy', 'for', 'you', 'to', 'say', ',', 'you', 'weren', '`', 't', 'almost', 'just', 'killed', '.', 'Oh', 'Pheebs', ',', 'is', 'that', 'a', 'new', 'ankle', 'bracelet', '?', 'Oh', '!', 'My', 'hero', '!', 'What', 'happened', '?', 'What', '?', '!', 'You', 'got', 'us', 'evicted', '!', '!', 'That', '`', 's', 'not', 'true', '!', 'Go', '!', '!', 'Well', ',', 'why', 'doesn', '`', 't', 'he', 'practice', 'with', 'a', 'girl', '?', 'Yeah', ',', 'right', ',', 'he', 'almost', 'danced', 'me', 'right', 'down', 'that', 'garbage', 'chute', '.', 'Hey', '!', 'So', ',', 'did', 'you', 'quit', '?', 'Oh', ',', 'umm', ',', 'I', 'was', 'just', 'y', '`', 'know', 'working', 'out', 'and', 'umm', ',', 'Oh', ',', 'that', '`', 's', 'it', '.', 'Where', '?', '!', 'What', 'was', 'that', '?', 'You', 'just', 'did', 'a', 'little', 'dancy', 'thing', '.', 'You', 'are', 'soooo', 'enjoying', 'this', '.', 'Ooh', ',', 'this', 'is', 'soo', 'sweet', ',', 'Joey', 'our', 'little', 'twinkle-toes', '.', 'What', 'are', 'you', 'ever', 'gon', 'na', 'use', 'that', 'for', '?', '!', 'You', 'got', 'fired', '?', '!', 'Sweety', '...', 'Yeah', '?', 'May', 'fifth', ',', 'why', '?', 'Ross', ',', 'you', 'guys', 'went', 'out', 'once', '.', 'You', 'took', 'your', 'kids', 'to', 'Chucky', 'Cheese', ',', 'and', 'you', 'did', \"n't\", 'even', 'kiss', 'her', '.', 'Well', ',', 'have', 'fun', '!', 'Yeah', ',', 'she', \"'s\", '...', 'You', 'love', 'her', '.', 'Hi', 'guys', '!', 'This', 'is', 'Josh', '.', 'Josh', ',', 'these', 'are', 'my', 'friends', ',', 'and', 'that', \"'s\", 'Ross', '.', 'Ross', ',', 'did', \"n't\", 'you', 'ah', ',', 'play', 'soccer', 'in', 'High', 'School', '?', 'Oh', 'no', 'wait', ',', 'that', \"'s\", 'right', '.', 'You', 'just', 'organized', 'their', 'game', 'schedules', 'on', 'your', 'Commodore', '64', '.', 'Okay', '.', 'I', \"'ll\", 'miss', 'you', '.', 'I', 'know', ',', 'is', \"n't\", 'he', 'great', '?', 'It', \"'s\", 'so', 'nice', 'to', 'finally', 'be', 'in', 'a', 'fun', 'relationship', ',', \"y'know\", '?', 'There', \"'s\", 'nothing', 'boring', 'about', 'him', ',', 'and', 'ah', ',', 'I', 'bet', 'he', \"'s\", 'never', 'set', 'foot', 'in', 'a', 'museum', '.', \"Y'know\", 'what', 'else', 'is', 'really', 'great', 'about', 'him', ',', 'oh', ',', 'what', 'is', 'the', 'word', 'for', 'the', 'adult', 'that', 'does', \"n't\", 'have', 'dinosaur', 'toys', 'in', 'their', 'bedroom', '?', 'What', 'was', 'that', '?', 'Oh', '.', 'Stop', 'it', '!', 'Yeah', '!', 'I', 'am', 'soo', 'gon', 'na', 'marry', 'that', 'guy', '.', 'Ohhh', '!', 'I', 'think', 'he', \"'s\", 'stealing', 'from', 'me', '.', 'Because', 'he', \"'s\", 'stealing', 'from', 'me', '!', 'Ughh', '!', 'Well', 'where', \"'s\", 'Amanda', '?', 'I', 'mean', \"y'know\", ',', 'I', \"'m\", 'thinking', '.', 'You', 'could', 'bring', 'her', ',', 'and', 'you', 'guys', 'could', 'go', 'up', 'to', 'your', 'old', 'room', ',', 'and', 'not', 'make', 'out', '.', 'Why', 'do', \"n't\", 'you', 'just', 'marry', 'her', '?', 'Oh', 'no', ',', 'wait', 'a', 'minute', 'you', 'ca', \"n't\", ',', 'I', \"'m\", 'sorry', 'I', 'forgot', ',', 'she', \"'s\", 'not', 'a', 'lesbian', '.', 'Ohh', ',', 'that', 'is', 'soo', 'sad', '.', 'Hey', ',', 'so', 'he', 'stole', 'a', 'couple', 'bucks', 'from', 'me', '!', 'At', 'least', 'he', 'bought', 'me', 'something', 'with', 'it', '!', 'Sorry', '.', \"Y'know\", '...', 'Yeah', '.', 'No', '!', 'Okay', '.', 'Okay', '.', 'Yeah', ',', 'so', 'what', 'is', 'she', ',', 'like', 'a', '...', 'like', 'a', 'spokesmodel', ',', 'or', 'an', 'aerobics', 'instructor', ',', 'what', '?', 'Well', 'maybe', 'she', 'and', 'her', 'friends', 'are', 'just', 'having', 'a', 'contest', 'to', 'see', 'who', 'can', 'bring', 'home', 'the', 'biggest', 'geek', '.', 'Oh', ',', 'The', 'Velveteen', 'Rabbit', '!', 'Oh', 'my', 'God', ',', 'when', 'the', 'boy', \"'s\", 'love', 'makes', 'the', 'rabbit', 'real', '!', 'Huh', '.', 'Well', ',', 'then', 'you', \"'d\", 'better', 'keep', 'it', 'away', 'from', 'Ross', \"'s\", 'hair', '.', 'So', 'this', 'is', 'pretty', 'rare', '.', 'How', 'did', 'you', 'get', 'that', '?', 'Oh', ',', 'honey', ',', 'that', \"'s\", 'so', 'sweet', '.', 'Oh', 'my', 'God', '!', 'What', 'happened', '?', 'Yes', ',', 'you', 'have', 'to', 'get', 'her', 'something', ',', 'and', 'it', 'should', 'be', 'something', 'really', 'nice', '.', 'And', 'not', 'one', 'of', 'your', 'coupons', 'for', 'an', 'hour', 'of', '``', 'Joey', 'Love', '.', \"''\", 'No', '!', 'I', \"'m\", 'sorry', ',', 'honey', ',', 'it', \"'s\", 'just', 'that', 'last', 'week', 'I', 'got', 'all', 'but', 'three', 'answers', 'and', 'I', 'really', 'want', 'to', 'finish', 'a', 'whole', 'one', 'without', 'any', 'help', '.', 'Hey', ',', 'how', \"'d\", 'it', 'go', '?', 'You', 'know', 'what', 'we', 'should', 'all', 'do', '?', 'Go', 'see', 'a', 'musical', '.', 'And', 'you', 'know', 'which', 'one', 'we', 'should', 'see', '?', 'The', '1996', 'Tony', 'award', 'winner', '.', 'Do', 'you', 'happen', 'to', 'know', 'the', 'name', 'of', 'that', 'one', '?', 'No', '....', 'Yes', '!', 'Rent', '!', 'What', '?', 'Oh', ',', 'I', \"'m\", 'sorry', ',', 'I', 'ca', \"n't\", ',', 'I', \"'m\", 'busy', '.', 'What', 'did', 'you', 'get', 'her', '?', 'Okay', ',', 'honey', ',', 'what', 'he', 'means', 'by', 'that', ',', 'is', '...', 'while', 'this', 'is', 'a', 'very', 'nice', 'gift', ',', 'maybe', 'it', \"'s\", 'just', 'not', 'something', 'a', 'boyfriend', 'gives', '?', 'Any', 'luck', '?', 'All', 'right', ',', 'look', '.', 'Why', 'do', \"n't\", 'you', 'just', 'return', 'the', 'book', ',', 'let', 'Joey', 'give', 'her', 'the', 'clock', 'pen', ',', 'and', 'you', 'give', 'her', 'something', 'worse', 'than', 'that', '.', 'Like', '...', 'a', 'regular', 'pen', '.', 'Aw', ',', 'honey', ',', 'that', \"'s\", 'so', 'sweet', '.', 'Oh', '!', 'Pathetic', '!', 'I', 'did', 'it', '!', 'Oh', '!', 'I', 'finished', 'it', '!', 'I', 'did', 'it', 'all', 'by', 'myself', '!', 'And', 'there', \"'s\", 'nobody', 'to', 'hug', '!', 'Hey', '!', 'Hey', ',', 'you', 'guys', ',', 'I', 'finished', 'the', 'crossword', 'all', 'by', 'myself', '!', 'Hug', 'me', '!', 'Thanks', '!', 'Thank', 'you', '!', 'Hey', ',', 'how', \"'d\", 'the', 'catering', 'go', '?', 'Yeah', ',', 'I', 'mean', ',', 'you', 'should', 'play', 'in', 'public', '!', 'Oh', ',', 'I', 'can', '`', 't', 'believe', 'I', 'ever', 'let', 'him', 'touch', 'me', 'with', 'those', 'fingers', '.', 'Why', 'not', '?', 'Phoebe', ',', 'the', 'place', 'has', 'emptied', 'because', 'of', 'him', '.', 'Yeah', ',', 'Phoebe', 'you', '`', 're', 'awful', '!', 'I', 'know', ',', 'I', 'remember', 'that', '!', 'Well', ',', 'Chandler', ',', 'you', '`', 're', 'gon', 'na', 'have', 'to', 'tell', 'him', '.', 'Because', 'you', 'do', '.', 'Phoebe', ',', 'his', 'music', 'could', 'not', 'get', 'any', 'worse', '.', 'There', 'are', 'rats', 'in', 'the', 'basement', 'that', 'are', 'hanging', 'themselves', '.', 'What', '?', 'So', 'are', 'things', 'with', 'you', 'and', 'Joey', 'any', 'better', '?', 'Oh', 'wow', ',', 'eight', 'hours', '?', 'So', 'you', 'could', 'probably', 'really', 'use', 'one', 'of', 'those', 'plug-in', 'telephone', 'headsets', 'huh', '?', 'You', 'should', \"n't\", '.', 'Well', ',', 'I', \"'m\", 'gon', 'na', 'take', 'a', 'nap', ',', 'turkey', 'makes', 'me', 'sleepy', '.', 'I', 'know', ',', 'but', 'all', 'that', 'work', 'you', \"'re\", 'doing', 'to', 'get', 'it', 'ready', ',', 'I', 'just', '...', 'People', 'are', 'trying', 'to', 'sleep', 'in', 'here', '!', 'Honey', ',', 'maybe', 'we', 'should', 'take', 'you', 'to', 'a', 'doctor', '.', 'Ooh', ',', 'so', 'cute', ',', 'that', 'I', \"'m\", 'thinking', 'about', 'jamming', 'this', 'pen', 'in', 'my', 'eye', '.', 'I', 'know', ',', 'it', \"'s\", 'sick', '.', 'Because', 'it', \"'s\", 'Richard', \"'s\", 'son', '!', 'It', \"'s\", 'like', 'inviting', 'Greek', 'tragedy', 'over', 'for', 'dinner', '!', 'Is', 'he', 'okay', 'in', 'there', '?', 'So', 'now', ',', 'what', 'exactly', 'is', 'the', 'point', 'of', 'the', 'box', '?', 'Why', '?', 'Okay', '.', 'Here', 'it', 'is', '!', 'I', 'love', 'it', '.', 'I', 'wear', 'it', 'all', 'the', 'time', '.', 'Huh', ',', 'well', 'maybe', 'it', 'uh', ',', 'it', 'changed', '.', 'Well', 'is', \"n't\", 'it', 'better', 'that', 'I', 'exchanged', 'it', 'for', 'something', 'that', 'I', 'enjoy', 'and', 'that', 'I', 'can', 'get', 'a', 'lot', 'of', 'use', 'out', 'of', '?', 'Credit', '.', 'Ooh', ',', 'I', 'like', 'those', 'sunglasses', '.', 'Fancy', 'soap', '?', 'I', 'thought', 'we', 'were', 'savin', \"'\", 'that', 'for', 'the', 'Pope', '!', 'Sick-sick-sick-sick', '.', 'Ross', ',', 'can', 'you', 'pass', 'me', 'the', 'yams', '?', 'Would', 'you', 'stop', '?', '!', 'What', 'is', 'the', 'matter', 'with', 'you', '?', '!', 'Okay', ',', 'fine', '.', 'Do', \"n't\", 'say', 'that', 'I', 'have', 'no', 'sentiment', '!', 'This', 'is', 'a', 'movie', 'stub', 'from', 'our', 'first', 'date', '!', 'This', 'is', 'an', 'eggshell', 'from', 'the', 'first', 'time', 'you', 'made', 'me', 'breakfast', 'in', 'bed', '!', 'This', 'is', 'from', 'the', 'museum', 'from', 'the', 'first', 'time', 'we', 'were', 'together', '.', 'Okay', ',', 'maybe', 'I', 'exchange', 'gifts', 'sometimes', ',', 'but', 'I', 'keep', 'the', 'things', 'that', 'matter', '!', 'Joey', ',', 'had', 'reasons', '.', 'What', '?', '!', 'Oh', ',', 'he', 'sees', 'her', '!', 'No', '?', 'Oh', '!', 'Oh', ',', 'uh', ',', 'Joanna', 'I', 'was', 'wondering', 'if', 'I', 'could', 'ask', 'you', 'something', '.', 'There', \"'s\", 'an', 'opening', 'for', 'an', 'assistant', 'buyer', 'in', 'Junior', 'Miss', '.', 'Well', ',', 'actually', ',', 'I', 'meant', 'for', 'me', '.', 'The', 'hiring', 'committee', 'is', 'meeting', 'people', 'all', 'day', 'and', '....', 'God', ',', 'I', 'am', 'so', 'glad', 'you', 'do', \"n't\", 'have', 'a', 'problem', 'with', 'this', ',', 'because', 'if', 'you', 'did', ',', 'I', 'would', \"n't\", 'even', 'consider', 'applying', '.', 'And', 'that', \"'s\", 'I', \"'m\", 'so', 'glad', 'there', \"'s\", 'no', 'problem', '.', 'Ohh', '!', 'That', \"'s\", 'great', '!', 'Really', '?', '!', 'Well', ',', 'I', ',', 'umm', '...', 'Thank', 'you', '.', 'Well', ',', 'they', 'uh', ',', 'they-they', 'do', 'more', 'than', 'that', '.', 'Yes', ',', 'Joanna', 'really', 'has', 'been', 'an', 'incredible', 'mentor', 'to', 'me', '.', 'I-I-I', 'of', 'course', ',', 'I', 'have', 'more', 'responsibilities', 'than', 'that', '.', 'Yes', ',', 'I', 'realize', 'that', '.', 'I', 'love', 'working', 'with', 'designers', '!', 'Umm', ',', 'Joanna', '?', 'I', 'wan', 'na', 'talk', 'about', 'that', 'interview', '.', 'No', '!', 'It', 'did', \"n't\", '!', 'That', \"'s\", 'what', 'I', 'want', 'to', 'talk', 'to', 'you', 'about', '.', 'Now', ',', 'just', 'to', 'brief', 'you', 'I', 'may', 'cry', ',', 'but', 'they', 'are', 'not', 'tears', 'of', 'sadness', 'or', 'of', 'anger', ',', 'but', 'just', 'of', 'me', 'having', 'this', 'discussion', 'with', 'you', '.', 'There', \"'s\", 'nobody', 'here', '!', 'Do', 'you', 'want', 'me', 'to', 'quit', '?', 'Well', 'of', 'those', 'things', 'that', 'you', 'said', 'in', 'the', 'interview', ',', 'I', 'mean', 'if', 'you', 'believe', 'any', 'of', 'them', ',', 'I', 'must', 'not', 'be', 'a', 'very', 'good', 'assistant', '.', \"Y'know\", 'what', '?', 'I', 'am', 'just', 'gon', 'na', 'pack', 'up', 'my', 'desk', ',', 'and', 'I', 'will', 'be', 'gone', 'by', 'the', 'end', 'of', 'the', 'day', '!', 'Well', ',', 'I', 'guess', 'there', \"'s\", 'no', 'use', 'to', 'me', 'sticking', 'around', \"'til\", 'the', 'end', 'of', 'the', 'day', '!', 'What', '?', 'My', 'drinking', '?', 'Said', 'what', '?', 'Exactly', '.', 'Oh', 'my', 'God', '!', '!', 'Ohh', ',', 'that', 'is', 'it', '!', 'I', \"'m\", 'leaving', '!', 'You', 'are', 'just', 'a', 'horrible', 'person', '!', 'Say', 'more', 'things', 'like', 'that', '.', 'I', \"'d\", 'need', 'an', 'expense', 'account', '.', 'And', 'an', 'assistant', '.', 'Hey', 'Mon', ',', 'little', 'question', 'for', 'ya', '!', 'How', 'do', 'you', 'think', 'this', 'suit', 'will', 'look', 'on', 'an', 'assistant', 'buyer', '?', 'Oh', 'my', 'God', '!', '!', 'You', 'just', 'ruined', 'the', 'thing', 'I', 'was', 'practicing', 'the', 'whole', 'way', 'home', ',', 'but', 'I', \"'m\", 'soo', 'happy', '!', 'Ohh', ',', 'you', \"'ve\", 'waited', 'soo', 'long', '.', 'Hey', ',', 'Pheebs', ',', 'quick', 'question', 'for', 'ya', '.', 'How', 'do', 'you', 'think', 'this', 'suit', 'would', 'look', 'on', 'an', 'assistant', 'buyer', 'at', 'Bloomingdale', \"'s\", '?', 'Yes', '!', '!', '!', 'Ohh', ',', 'it', \"'s\", 'gon', 'na', 'be', 'so', 'great', '!', 'I', \"'m\", 'gon', 'na', 'get', 'to', 'help', 'decide', 'what', 'we', 'sell', ',', 'I', \"'m\", 'gon', 'na', 'have', 'an', 'office', 'with', 'walls', 'and', 'everything', '.', 'I', \"'m\", 'gon', 'na', 'have', 'walls', '!', 'I', \"'m\", 'an', 'assistant', 'buyer', '!', '!', 'Oh', ',', 'hi', 'Mrs.', 'Lynch', '!', 'Is', 'Joanna', 'in', 'already', '?', 'Heard', 'what', '?', 'Oh', 'my', 'God', '!', 'How', '?', '!', 'Oh', 'my', 'God', '!', 'Oh', ',', 'I', 'can', 'not', 'believe', 'it', '!', 'Oh', ',', 'God', '.', 'Oh', ',', 'God', '.', 'Oh', 'God', '.', 'Yes', ',', 'so', 'close', '.', 'Mrs.', 'Lynch', ',', 'I', 'know', 'that', 'this', 'is', 'an', 'emotional', 'and', 'difficult', 'time', ',', 'for', 'all', 'of', 'us', '.', 'But', 'by', 'any', 'chance', 'did', 'Joanna', 'send', 'any', 'paperwork', 'your', 'way', 'before', 'it', 'happened', '.', 'Yes-yes', ',', 'just', 'a', 'few', 'seconds', 'and', 'she', \"'d\", 'still', 'be', 'with', 'us', 'nothing', 'about', 'an', 'assistant', 'buyer', '?', 'Oh', ',', 'Sophie', ',', 'I', 'guess', 'you', 'did', \"n't\", 'hear', 'about', 'Joanna', '.', 'Hey', ',', \"y'know\", ',', 'at', 'least', 'you', 'have', 'somebody', 'to', 'miss', 'that', 'stuff', 'with', '!', 'I', 'hate', 'being', 'alone', 'this', 'time', 'of', 'year', '!', 'Next', 'thing', 'you', 'know', 'it', \"'ll\", 'be', 'Valentine', \"'s\", 'Day', ',', 'then', 'my', 'birthday', ',', 'then', 'bang', '!', 'before', 'you', 'know', 'it', ',', 'they', \"'re\", 'lighting', 'that', 'damn', 'tree', 'again', '.', 'Ohh', ',', 'I', 'want', 'somebody', '!', \"Y'know\", ',', 'I', 'want', 'a', 'man', '!', '!', 'I', 'mean', ',', 'it', 'does', \"n't\", 'even', 'have', 'to', 'be', 'a', 'big', 'relationship', ',', \"y'know\", ',', 'just', 'like', 'a', 'fling', 'would', 'be', 'great', '.', 'Well', ',', 'believe', 'me', ',', 'it', \"'s\", 'been', 'a', 'long', 'time', 'since', 'I', \"'ve\", 'been', 'flung', '.', 'Yeah', '!', 'Wait', 'a', 'minute', ',', 'it', \"'s\", 'been', 'a', 'long', 'time', 'that', 'I', \"'ve\", 'been', 'single', '.', 'How', 'come', 'you', 'never', 'offered', 'this', 'before', '?', 'Okay', '!', 'No', 'accountants', '.', 'Oh', ',', 'and', 'no', 'one', 'from', 'like', 'legal', '.', 'I', 'do', \"n't\", 'like', 'guys', 'with', 'boring', 'jobs', '.', 'Hey', ',', 'honey', '!', 'What', \"'s\", 'the', 'matter', '?', 'Fine', ',', 'I', 'was', 'just', 'trying', 'to', 'be', 'nice', '!', 'Whoa', '!', 'Well', ',', 'wait', 'a', 'minute', ',', 'you', \"'re\", 'the', 'boss', '!', 'Why', 'do', \"n't\", 'you', 'just', 'yell', 'at', 'them', '?', 'Or', ',', 'fire', 'them', '?', 'Pheebs', ',', 'that', \"'s\", 'great', '!', 'But', \"y'know\", 'umm', ',', 'Rachel', 'does', \"n't\", 'rhyme', 'with', 'draddle', '.', 'Oh', 'yeah', '!', 'Really', '?', '!', 'So', ',', 'will', 'I', 'like', 'any', 'of', 'these', 'guys', '?', 'Chandler', '!', 'Ohh', ',', 'I', 'like', 'swimmer', \"'s\", 'bodies', '!', 'Op', ',', 'I', 'like', 'credit', 'cards', '!', 'Well', ',', 'so', 'what', 'does', 'he', 'do', '?', 'Your', 'company', 'has', 'a', 'fine', 'foods', 'division', '?', 'Chandler', '!', '!', 'You', 'have', 'the', 'best', 'taste', 'in', 'men', '!', 'Patrick', 'and', 'I', 'had', 'such', 'a', 'great', 'time', 'last', 'night', '!', 'I', 'mean', 'I', 'think', 'this', 'could', 'maybe', 'turn', 'into', 'something', 'serious', '.', 'Well', ',', \"y'know\", ',', 'possibly', '.', 'You', 'did', \"n't\", 'tell', 'him', 'that', ',', 'though', '?', 'Right', '?', 'You', 'told', 'this', 'guy', 'that', 'I', 'was', 'looking', 'for', 'a', 'fling', '?', '!', 'You', 'do', \"n't\", 'tell', 'the', 'guy', 'that', '!', 'Oh', ',', 'between', 'you', 'telling', 'him', 'that', 'I', 'wanted', 'to', 'have', 'a', 'fling', 'and', 'me', 'putting', 'out', 'on', 'the', 'first', 'date', 'oh', ',', 'he', \"'s\", 'so', 'gon', 'na', 'get', 'the', 'wrong', 'idea', '.', 'Chandler', '!', 'Patrick', 'just', 'uh', ',', 'ended', 'things', 'with', 'me', '.', 'Did', 'you', 'or', 'did', 'you', 'not', 'tell', 'him', 'that', 'I', 'was', 'looking', 'for', 'a', 'serious', 'relationship', '?', 'You', 'idiot', '!', '!', 'You', 'do', \"n't\", 'tell', 'a', 'guy', 'that', 'you', \"'re\", 'looking', 'for', 'a', 'serious', 'relationship', '!', 'You', 'do', \"n't\", 'tell', 'the', 'guy', 'that', '!', 'Now', 'you', 'scared', 'him', 'away', '!', \"Y'know\", ',', 'you', 'should', 'never', 'be', 'allowed', 'to', 'talk', 'to', 'people', '!', 'Oh', '!', 'See', 'just', 'I', \"'m\", 'right', 'back', 'where', 'I', 'started', '!', 'Aww', ',', 'this', 'sucks', '!', 'Being', 'alone', ',', 'sucks', '!', 'Really', '?', 'No', '.', 'Cute', 'guys', 'in', 'little', 'shorts', '?', 'Sure', '.', 'Well', 'that', 'sounds', 'fun', 'too', '.', 'What', '?', '!', 'Chandler', ',', 'what', 'is', 'the', 'matter', 'with', 'you', '?', '!', 'Well', 'you', 'said', '*', 'black', '*', '.', 'Why', 'would', 'he', 'want', 'his', 'blue', 'blazer', 'black', '?', 'Do', \"n't\", 'you', 'have', 'to', 'be', 'a', 'dinosaur', 'expert', 'or', 'something', '?', 'Honey', ',', 'this', 'is', 'really', 'an', 'incredible', 'thing', 'to', 'do', 'for', 'them', 'but', 'there', 'are', 'things', 'to', 'think', 'about', '.', 'Wow', ',', 'I', 'do', \"n't\", 'know', 'if', 'I', 'could', 'ever', 'do', 'that', '.', 'You', 'know', ',', 'I', 'always', 'figured', 'the', 'first', 'time', 'I', 'had', 'a', 'baby', ',', 'it', 'would', 'be', 'with', 'someone', 'I', 'love', 'and', 'that', 'baby', 'would', 'be', 'like', ',', 'a', 'keeper', '.', 'Why', 'do', \"n't\", 'you', 'talk', 'to', 'someone', 'who', \"'s\", 'had', 'a', 'baby', '.', 'Like', 'your', 'mom', '.', 'I', 'am', 'so', 'jealous', '.', 'You', 'guys', 'are', 'just', ',', 'really', ',', 'right', '*', 'there', '*', ',', 'are', \"n't\", 'you', '?', 'Chandler', ',', 'that', 'is', 'so', 'nice', '.', 'Why', ',', 'just', 'because', 'you', \"'re\", 'not', 'mature', 'enough', 'to', 'understand', 'something', 'like', 'that', '?', 'Yeah', '.', 'Yeah', ',', 'when', 'we', \"'re\", 'in', 'the', 'audience', ',', 'he', 'does', \"n't\", 'talk', 'to', 'us', ',', 'but', 'he', 'does', 'wave', '.', 'Yeah', ',', 'not', 'for', 'girls', 'anyway', '.', 'Guys', 'agree', 'like', 'that', '.', 'Let', 'me', 'see', 'that', '.', 'Oh', 'yeah', '.', 'Well', ',', 'you', 'know', ',', 'sometimes', 'that', 'helps', '.', 'Well', ',', 'if', 'you', 'go', 'to', 'Disneyland', ',', 'you', 'do', \"n't\", 'spend', 'the', 'whole', 'day', 'on', 'the', 'Matterhorn', '.', 'Oh', ',', 'TOES', '!', '!', 'Yeah', ',', 'for', 'some', 'people', '.', 'Oh', '.', 'Oh', ',', 'I', 'ca', \"n't\", 'watch', 'this', '.', 'It', \"'s\", 'like', '``', 'Sophie', \"'s\", 'Choice', '.', \"''\", 'Oh', ',', 'it', 'was', 'only', 'okay', '.', 'Depends', 'who', 'asked', '.', 'Oh', ',', 'Mon', '.', 'Sure', '.', 'Yes', '.', 'You', \"'re\", 'not', 'asking', 'me', ',', 'are', 'you', '?', 'Yes', ',', 'totally', '.', 'What', 'the', 'hell', 'is', 'that', '?', '!', '!', 'What', 'the', 'hell', 'is', 'that', '?', 'Is', 'that', 'you', '?', 'Ohhhhhhh', '!', 'BACK', 'OFF', '!', '!', '!', 'Get', 'up', '!', 'Get', 'up', '!', 'Get', 'up', '!', 'God', 'damn', 'it', '!', 'Get', 'up', ',', 'get', 'up', ',', 'get', 'up', ',', 'get', 'up', ',', 'get', 'up', '!', '!', 'What', 'is', 'that', 'noise', '?', 'Well', ',', 'I', \"'ve\", 'been', 'up', 'since', 'six', '.', 'Thanks', 'to', 'somebody', \"'s\", 'dumb-ass', 'rooster', '.', 'Yeah', '!', 'Especially', 'not', 'with', 'all', 'of', 'these', 'knives', 'and', 'cookbooks', 'around', '.', 'What', '?', 'I', \"'m\", 'so', 'not', 'impressed', '.', 'Everybody', 'snacks', 'when', 'they', 'shop', '.', 'How', 'many', 'guesses', 'do', 'you', 'get', '?', 'No', '!', 'There', \"'s\", 'no', 'orange', 'juice', 'in', 'there', '!', 'We', 'win', '!', '!', 'Okay', ',', 'well', ',', 'we', 'won', 'that', 'one', '.', 'Yeah', ',', 'and', 'none', 'of', 'these', 'stupid', 'grocery', 'questions', ',', 'real', 'personal', 'questions', '.', 'Fine', '!', 'We', \"'ll\", 'ask', 'Phoebe', '.', 'I', 'know', '!', 'I', 'know', ',', 'it', \"'s\", 'such', 'a', 'huge', ',', 'life-altering', 'thing', '.', 'Tails', '!', 'We', \"'ll\", 'take', 'Literature', '!', '!', 'Chandler', 'gets', 'it', '!', 'It', \"'s\", 'Chandler', 'Bing', '!', 'It', \"'s\", 'All', 'Relative', '!', '!', 'I', \"'m\", 'sorry', '!', 'Monica', ',', 'I', 'do', \"n't\", 'want', 'to', 'lose', '200', 'dollars', '.', 'Monica', '?', '!', 'Okay', ',', 'so', 'let', \"'s\", 'play', 'for', 'some', 'pepper', '!', 'Stop', 'spending', 'my', 'money', '!', 'Oooohh', 'that', \"'s\", 'interesting', '.', 'Throw', 'in', 'the', 'duck', 'too', '!', 'Well', ',', 'he', 'gets', 'the', 'other', 'one', 'all', 'riled', 'up', '.', 'Monica', ',', 'betting', 'the', 'apartment', ',', 'I', 'do', \"n't\", 'know', 'about', 'this', '.', 'Why', '?', 'Do', 'you', 'have', 'the', 'answers', 'written', 'on', 'there', '?', 'All', 'right', ',', 'let', \"'s\", 'do', 'it', '.', 'Okay', '.', 'All', 'right', '!', '14', '?', 'Space', 'cowboy', '!', 'Oh', 'gosh', ',', 'it', 'has', 'something', 'to', 'do', 'with', 'numbers', '.', 'He', 'carries', 'a', 'briefcase', '.', 'Oh-oh-oh', ',', 'he', \"'s\", 'a', 'transponce', ',', 'transpondster', '!', 'Oh', 'my', 'God', '.', 'Oh', 'my', 'God', '!', 'I', 'ca', \"n't\", 'believe', 'you', 'guys', 'are', 'actually', 'think', 'you', \"'re\", 'moving', 'in', 'here', '!', 'Well', 'I-I-I', \"'m\", 'not', 'moving', '.', 'No', ',', 'it', 'was', 'a', 'stupid', 'bet', '!', 'We', 'were', 'just', 'playing', 'a', 'game', '!', 'Noooo', '.', 'What', '?', '!', 'I', 'do', \"n't\", 'care', ',', 'I', \"'m\", 'not', 'going', 'anywhere', '.', 'No', '!', 'Put', 'that', 'box', 'down', '!', 'We', 'are', 'not', 'going', 'anywhere', '!', 'This', 'is', 'my', 'apartment', 'and', 'I', 'like', 'it', '!', 'This', 'is', 'a', 'girl', \"'s\", 'apartment', '!', 'That', 'is', 'a', 'boy', \"'s\", 'apartment', ',', 'it', \"'s\", 'dirty', 'and', 'it', 'smells', '.', 'This', 'is', 'pretty', '.', \"It's-it\", \"'s\", 'so', 'pretty', '!', 'And', 'look', ',', 'and', \"it's-it\", \"'s\", 'purple', '!', 'And', 'I', \"'m\", 'telling', 'you', ',', 'you', 'with', 'the', 'steady', 'hand', ',', 'I', 'am', 'not', 'moving', ',', 'and', 'now', 'I', 'have', 'got', 'the', 'steady', 'hand', '.', 'That', \"'s\", 'right', '!', 'You', 'do', 'what', 'the', 'hand', 'says', '!', 'How', 'did', 'it', 'go', '?', \"Y'know\", 'what', ',', 'you', 'are', 'mean', 'boys', ',', 'who', 'are', 'just', 'being', 'mean', '!', 'That', 'is', 'not', 'true', '.', 'She', 'did', '!', 'She', 'forced', 'me', '!', 'Well', 'it', 'stupid', ',', 'unfair', 'question', '!', 'Will', 'you', 'stop', 'calling', 'it', 'your', 'apartment', '!', 'No', 'it', \"'s\", 'not', '!', 'Oh', ',', 'I', 'think', 'I', 'saw', 'some', 'in', 'here', '.', 'I', 'do', \"n't\", 'know', '!', 'But', 'maybe', 'if', 'we', 'keep', 'that', 'drawer', 'shut', ',', 'it', \"'ll\", 'die', '.', 'Bloomingdale', \"'s\", 'eliminated', 'my', 'department', '.', 'No', ',', 'but', 'they', 'stuck', 'me', 'in', 'personal', 'shopping', '.', 'Which', 'is', 'just', 'a', 'huge', 'step', 'down', '!', 'Uh-huh', '.', 'Monica', ',', 'I', \"'m\", 'quitting', '!', 'I', 'just', 'helped', 'an', '81', 'year', 'old', 'woman', 'put', 'on', 'a', 'thong', 'and', 'she', 'did', \"n't\", 'even', 'buy', 'it', '!', 'I', \"'m\", 'telling', 'you', 'I', \"'m\", 'quitting', '!', 'That', \"'s\", 'it', '!', 'I', \"'m\", 'talking', 'to', 'my', 'boss', 'right', 'now', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Okay', 'bye', ',', 'call', 'me', 'when', 'you', 'get', 'this', 'message', '.', 'Oh', '!', 'Mr.', 'Waltham', ',', 'I', 'ah', 'really', 'need', 'to', 'talk', 'to', 'you', '.', 'Hi', '!', 'Hi', ',', 'I', \"'m\", 'Rachel', 'Green', '.', 'What', 'can', 'I', 'do', 'for', 'you', 'Joshua', '?', 'Oh', ',', 'I', \"'m\", 'so', 'sorry', '.', 'Well', ',', 'at', 'least', 'that', \"'s\", 'a', 'great', 'suit', '.', 'Okay', '.', 'No-no', ',', 'that', 'was', \"n't\", 'me', '!', 'Well', ',', 'we', 'should', 'get', 'started', '.', 'Let', 'me', 'show', 'you', 'my', 'underwear', '.', 'The', 'selection', 'of', 'underwear', 'we', 'carry', '.', 'Oh-oh', ',', 'sorry', ',', 'it', \"'s\", 'this', 'way', ',', 'it', \"'s\", 'this', 'way', '.', 'I', 'have', 'the', 'best', 'job', 'in', 'the', 'entire', 'world', '!', 'The', 'most', 'adorable', 'guy', 'came', 'over', 'today', ',', 'and', 'I', 'got', 'to', 'dress', 'him', 'up', 'all', 'day', '!', 'Oh', ',', 'I', 'wish', 'he', 'was', 'a', 'doll', ',', 'then', 'I', 'could', 'get', 'a', 'Rachel', 'doll', 'and', 'bump', 'them', 'together', 'and', 'make', 'kissy', 'noises', '.', 'Oh', '!', 'And', 'he', 'has', 'the', 'most', 'beautiful', 'name', ',', 'I', 'never', 'realised', 'it', ',', 'Joshua', '!', 'Josh-u-a', '!', 'Joshua', '!', 'Josh', '.', 'Hi-e', '!', '!', 'Well', ',', 'it', 'was', 'just', 'something', 'Josh', 'said', 'about', 'v-necks', ',', 'but', 'you', 'had', 'to', 'be', 'there', '.', 'It', \"'s\", 'Joshua', '.', 'Why', '?', 'Honey', ',', 'what', 'is', 'the', 'big', 'deal', '?', 'Yeah', ',', 'that', \"'s\", 'true', '.', 'Chandler', ',', 'what', 'did', 'she', 'say', '?', 'Beefsteak', 'Charlie', \"'s\", '?', 'Whoops', '.', 'Oh', ',', 'hey', ',', 'do', 'you', 'need', 'help', 'with', 'that', '?', 'Ooh', ',', 'I', 'just', 'feel', 'bad', ',', 'I', 'never', 'vacuum', '.', 'Hi', '!', 'So', 'I', 'was', 'with', 'Joshua', 'for', 'an', 'hour', 'today', ',', 'and', 'he', 'has', 'not', 'asked', 'me', 'out', '.', 'It', \"'s\", 'just', 'so', 'frustrating', '!', 'Really', '?', 'It', 'does', \"n't\", 'seem', 'desperate', '?', 'Hmm-mmm', '.', 'Yeah', 'but', ',', 'I', \"'ve\", 'never', 'asked', 'a', 'guy', 'out', 'before', '.', 'No', '.', 'Have', 'you', '?', 'I', 'do', \"n't\", 'even', 'know', 'how', 'I', 'would', 'go', 'about', 'it', '.', 'You', 'know', 'what', ',', 'I', \"'m\", 'gon', 'na', 'do', 'that', ',', 'I', \"'m\", 'gon', 'na', 'call', 'him', 'up', ',', 'and', 'I', \"'m\", 'gon', 'na', 'ask', 'him', 'out', '.', 'I', 'can', 'do', 'that', '.', 'Ask', 'him', 'out', '.', 'How', 'you', 'doin', \"'\", '?', 'Hi', '!', 'Joshua', '?', 'It', \"'s\", 'Rachel', 'Green', 'from', 'Bloomingdale', \"'s\", '.', 'Yeah', ',', 'umm', ',', 'I', 'was', 'wondering', 'if', 'you', 'umm', ',', 'if', 'you', 'umm', ',', 'left', 'your', 'wallet', 'at', 'the', 'store', 'today', '?', 'Well', ',', 'we', 'found', 'a', 'wallet', ',', 'and', 'we', ',', 'the', 'license', '?', 'Well', ',', 'that', 'is', 'a', 'good', 'idea', '!', 'Uh', ',', 'well', ',', 'let', \"'s\", 'see', 'here', 'this', 'says', 'this', 'license', 'belongs', 'to', 'a', 'uh', ',', 'uh', ',', 'belongs', 'to', 'a', 'mister', 'uh', ',', 'Pheebs', ',', 'and', 'umm', ',', 'yeah', ',', 'so', 'sorry', 'to', 'bother', 'you', 'at', 'home', '.', 'I', \"'ll\", 'see', 'you', 'tomorrow', '.', 'Bye', '.', 'You', \"'ve\", 'done', 'that', 'a', 'thousand', 'times', '?', 'Ohh', ',', 'God', ',', 'I', 'just', 'got', 'so', 'nervous', 'that', 'he', 'would', 'say', 'no', '.', 'Really', '?', '!', 'You', 'think', 'that', 'will', 'work', '?', 'Would', 'you', 'like', 'to', 'go', 'to', 'a', 'basketball', 'game', 'with', 'me', '?', 'You', 'know', ',', 'its', 'funny', ',', 'basketball', ',', 'because', 'I', 'happen', 'to', 'have', 'tickets', 'too', ',', 'Umm', ',', 'who', 'likes', 'the', 'Knicks', '.', 'Oh', '!', 'Well', ',', 'as', 'a', 'single', 'woman', ',', 'who', 'is', 'available', ',', 'I', 'think', 'you', 'look', 'great', '!', 'Yep', '.', 'Oh', ',', 'yeah', ',', 'look', 'you', 'great', '.', 'Oh', 'yeah', '.', 'Yeah', ',', 'this', 'looks', 'great', '.', 'Umm', ',', 'so', 'you', 'like', 'it', '?', 'Great', '.', 'Sure', '.', 'Yeah-eah-ha', '!', 'Oh', 'well', ',', 'you', 'do', \"n't\", 'want', 'to', 'do', 'that', 'now', '?', '!', 'Okay', '.', 'Basketball', '!', 'I', 'uh', ',', 'I', 'have', 'two', 'tickets', 'to', 'the', 'Knicks', 'game', 'tonight', 'if', 'you', \"'re\", 'interested', ',', 'just', 'as', 'a', 'thank', 'you', 'for', 'this', 'week', '.', 'Really', '?', 'I', 'have', 'an', 'extra', 'ticket', '.', 'An', 'extra', 'ticket', '.', 'Not', ',', 'two', 'tickets', ',', 'I', 'have', 'an', 'extra', 'ticket', '.', 'He', 'did', \"n't\", 'turn', 'me', 'down', '!', 'He', \"'s\", 'at', 'the', 'game', 'is', \"n't\", 'he', '?', 'I', 'got', 'the', 'date', ',', 'I', \"'m\", 'just', 'not', 'on', 'it', '!', 'Wow', '!', 'Monica', '!', 'Honey', ',', 'this', 'is', 'not', 'your', 'fault', ',', 'just', 'because', 'you', 'guys', 'had', 'a', 'fight', ',', 'it', 'does', 'not', 'justify', 'her', 'sleeping', 'with', 'someone', '.', 'Really', '?', 'Yes', '!', 'I', 'will', '!', 'Absolutely', '!', 'Hello', ',', 'Rachel', '.', 'Hi', ',', 'Joshua', '.', 'I', 'left', 'my', 'wallet', 'here', 'on', 'purpose', '.', 'Really', '?', 'Yes', ',', 'I', 'just', 'wanted', 'to', 'see', 'you', 'again', '.', 'Oh', ',', 'I', \"'m\", 'glad', '.', 'Rachel', ',', 'I', \"'d\", 'like', 'to', 'say', 'something', 'to', 'you', '.', 'Yes', '?', 'How', 'you', 'doin', \"'\", '?', 'How', 'does', 'going', 'to', 'a', 'strip', 'club', 'help', 'him', 'better', '?', 'Um-hmm', '.', 'There', 'we', 'go', '.', 'There', 'it', 'is', '.', 'Yeah', '!', 'Oh', ',', 'okay', '.', 'Uhh', ',', 'well', 'let', \"'s\", 'see', '.', 'You', \"'re\", 'about', 'well', 'uh', ',', 'this', 'one', 'is', 'large', '.', 'And', 'this', 'one', 'Yeah', '!', 'Okay', ',', 'two', 'larges', 'coming', 'right', 'up', '!', 'Yes', '.', 'Sure', '.', 'You', 'got', 'it', '.', 'Great', '!', 'Me', ',', 'Fladermouse', ',', 'great', '.', 'I', 'really', '...', 'So', '?', 'Ohh', '!', 'Right', '!', 'Right', ',', 'sorry', ',', 'I', \"'ll\", 'be', 'right', 'back', '!', 'Oh', '.', 'No', '!', 'Nothing', '!', 'Yeah', '!', 'That', 'would', 'be', 'great', '!', 'Well', ',', 'I-I', 'guess', ',', 'I', '...', 'Yeah', ',', 'great', ',', 'you', 'betcha', '!', 'What', '?', 'Oh', '.', 'Oh', ',', 'right', '.', 'Oh', 'yay', '!', 'Hey', '!', 'Hey', ',', 'Monica', '!', 'Ohh', ',', 'it', \"'s\", 'Joshua', 'invited', 'me', 'to', 'this', 'fancy', 'club', 'opening', 'tonight', '.', 'But', ',', 'I', 'already', 'told', 'Mr.', 'Waltham', 'that', 'I', 'would', 'take', 'his', 'niece', 'to', 'this', 'dumb', 'old', 'opera', '.', 'So', '.', 'What', 'are', 'you', 'gon', 'na', 'do', '?', 'No', '!', 'Help', 'me', '!', 'Phoebe', '?', 'Ugh', '!', 'Ohh', ',', 'gosh', '.', 'You', 'guys', ',', 'come', 'on', ',', 'this', 'is', ',', 'I', 'have', 'to', 'meet', 'Joshua', '!', 'This', 'is', 'my', 'one', 'chance', 'for', 'him', 'to', 'see', 'the', 'fun', 'Rachel', '.', \"Y'know\", 'the', '``', 'Would', \"n't\", 'it', 'be', 'great', 'if', 'she', 'was', 'my', 'wife', \"''\", 'Rachel', '.', 'Ohh', ',', 'all', 'right', '!', 'Are', 'Joey', 'and', 'Chandler', 'back', '?', 'Ohh', '!', 'Hi', '!', 'So', '.', 'Ohhhh', ',', 'come', 'on', '!', '!', '!', 'No', '!', 'Wait', '!', 'Wait-wait', '!', 'Ross', ',', 'please', '!', 'I', \"'ll\", 'be', 'right', 'there', '!', 'Okay', ',', 'Ross', ',', 'please', 'come', 'on', '!', 'I', 'thought', 'we', 'have', 'moved', 'on', '!', 'I', 'thought', 'we', \"'ve\", 'gotten', 'to', 'a', 'place', 'where', 'we', 'could', 'be', 'happy', 'for', 'each', 'other', '!', 'I', 'mean', 'was', 'that', 'just', 'me', '?', 'Oh', 'thank', 'you', '!', 'Thank', 'you', ',', 'thank', 'you', ',', 'thank', 'you', '!', 'Emily', '?', 'I', \"'m\", 'Rachel', 'Green', '.', 'There', \"'s\", 'been', 'a', 'teeny-teeny', 'change', 'in', 'plans', '.', 'It', 'turns', 'out', 'that', 'I', \"'m\", 'not', 'free', 'tonight', '.', 'So', ',', 'Oh', 'well', ',', 'no', 'I', ',', 'I', \"'ll\", 'get', 'her', '.', 'Hey', ',', 'whoa', ',', 'slow', 'down', '.', 'No', ',', 'keep', 'moving', '.', 'Wow', '!', 'Well', ',', 'I', 'did', \"n't\", 'see', 'Joshua', 'last', 'night', ',', 'but', 'I', 'did', 'punch', 'a', 'girl', 'in', 'the', 'face', '.', 'The', 'whole', 'night', 'was', 'horrible', ',', 'it', 'was', 'pouring', 'down', 'rain', ',', 'and', 'when', 'I', 'got', 'there', ',', 'there', 'was', 'no', 'Rachel', 'Green', 'on', 'the', 'list', ',', 'but', 'there', 'was', 'a', 'Rachel', 'Greep', '.', 'No', ',', 'there', 'is', 'no', 'Rachel', 'Greep', ',', 'but', 'then', 'this', 'other', 'girl', 'overheard', 'us', 'and', 'she', 'was', 'all', ',', '``', 'I', \"'m\", 'Rachel', 'Greep', '!', 'I', \"'m\", 'Rachel', 'Greep', '!', \"''\", 'and', 'he', 'let', 'her', 'right', 'in', '.', 'No', ',', 'she', 'was', 'already', 'in', ',', 'but', 'then', 'this', 'big', 'bitch', 'behind', 'me', 'tried', 'to', 'steal', 'my', 'umbrella', ',', 'so', 'I', 'clocked', 'her', '.', 'Ohhh', '!', 'I', 'ca', \"n't\", 'believe', 'this', ',', 'all', 'I', 'wanted', 'was', 'a', 'few', 'hours', 'outside', 'of', 'work', 'to', 'see', 'Joshua', ',', 'so', 'he', 'can', 'go', 'ahead', 'and', 'start', 'falling', 'in', 'love', 'with', 'me', '.', 'Honey', ',', 'that', \"'s\", 'you', \"'re\", 'name', '.', 'What', '?', 'Who', 'the', 'hell', 'is', 'Emily', ',', 'noooo', '!', '!', 'They', \"'re\", 'in', 'Vermont', '!', '!', 'How', 'could', 'this', 'happen', '?', '!', 'How', ',', 'how', 'did', 'end', 'up', 'in', 'Vermont', 'with', 'that', 'awful', 'witch', '?', '!', 'I', 'do', \"n't\", 'get', 'this', '!', 'She', 'was', 'horrible', '!', 'I', 'do', \"n't\", 'care', '!', 'All', 'right', ',', \"y'know\", 'what', 'I', \"'m\", 'just', 'upset', 'that', 'I', \"'m\", 'getting', 'nowhere', 'with', 'Joshua', 'that', \"y'know\", 'what', 'still', ',', 'you', 'do', 'not', 'meet', 'someone', 'and', 'go', 'flitting', 'off', 'to', 'Vermont', '!', 'Oh', ',', \"y'know\", ',', 'would', 'you', 'just', 'for', 'once', ',', 'not', 'remember', 'every', ',', 'little', ',', 'thing', '!', '!', 'Well', ',', 'I', 'just', 'checked', 'our', 'messages', 'and', 'Joshua', 'did', \"n't\", 'call', '.', 'I', 'mean', 'you', \"'d\", 'think', 'he', \"'d\", 'be', 'worried', 'about', 'me', 'not', 'showing', 'up', 'at', 'his', 'club', '.', 'Ugh', ',', 'you', 'know', 'what', 'makes', 'it', 'so', 'much', 'worse', ',', 'Ross', 'is', 'all', 'happy', 'in', 'Vermont', '!', 'I', 'ca', \"n't\", 'believe', 'it', '!', 'He', 'still', 'has', \"n't\", 'called', '.', 'It', \"'s\", 'Joshua', '.', 'No', ',', 'I', 'do', \"n't\", '.', 'Yeah', ',', 'come', 'on', '!', 'What', \"'s\", 'going', 'in', 'on', 'in', 'there', '?', 'See', ',', 'I', 'do', \"n't\", 'know', ',', 'for', 'me', 'it', 'would', 'have', 'to', 'Chantal', '.', 'Oh', 'my', 'goodness', ',', 'she', 'had', 'the', 'smoothest', 'skin', '!', 'I', 'mean', 'when', 'I', 'stuck', 'that', 'dollar', 'bill', 'in', 'her', 'g-string', 'and', 'grazed', 'her', 'thigh', '!', 'Well', ',', 'are', 'we', 'all', 'together', '?', 'Like', 'in', 'a', 'group', '?', 'Oh', ',', 'hey', '!', 'What', '?', 'Oh', ',', 'hmm', '.', 'Joshua', '.', 'Yeah', ',', 'I', '...', 'Oh', ',', 'thank', 'goodness', '!', 'Oh', ',', 'no', 'problem', '.', 'I', \"'m\", 'so', 'glad', 'I', 'could', 'help', '.', 'Happy', 'for', 'you', '.', 'No', ',', 'happy', 'for', 'you', '!', 'No-no-no', ',', 'that', \"'\", 'not', 'Joshua', '.', 'Chandler', ',', 'there', \"'s\", 'a', 'guy', 'right', 'over', 'there', '.', 'Chandler', ',', 'do', \"n't\", 'worry', '!', 'This', 'does', \"n't\", 'make', 'you', 'less', 'of', 'a', 'guy', '!', 'That', 'does', '!', 'What', 'am', 'I', 'sitting', 'on', '?', 'I', 'hate', 'to', 'think', 'what', 'this', 'woman', 'was', 'scratching', 'when', 'this', 'broke', 'off', '.', 'Hmm', '.', 'Well', ',', 'here', \"'s\", 'another', 'question', 'for', 'ya', '.', 'Uhh', ',', 'do', 'you', 'know', 'what', 'that', 'silver', 'knob', 'on', 'the', 'toilet', 'does', '?', 'Okay', ',', 'good', '.', 'Now', 'that', 'since', 'you', 'know', ',', 'when', 'you', 'come', 'over', 'would', 'you', 'mind', 'actually', 'using', 'it', '?', 'Guess', 'who', 'we', 'ran', 'into', 'today', '?', '!', 'You', 'are', 'not', '.', 'You', 'have', 'never', 'been', 'able', 'to', 'break', 'up', 'with', 'her', '.', 'Hey', '!', \"Y'know\", ',', 'you-you', 'also', 'could', \"'ve\", 'used', 'uh', ',', 'lamps', 'and', 'then', 'followed', 'the', 'light', '.', 'It', \"'s\", 'coming', 'from', 'Joey', '!', 'Please', ',', 'Ross', ',', 'you-you', 'got', 'hurt', 'playing', 'badminton', 'with', 'my', 'dad', '.', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'sorry', '.', 'You', \"'re\", 'right', ',', 'you', 'are', 'a', 'tough', 'guy', '.', 'You', \"'re\", 'the', 'toughest', 'palaeontologist', 'I', 'know', '.', 'Oh', ',', 'well', 'maybe', 'there', 'was', 'a', 'dog', 'lookin', \"'\", 'at', 'him', '.', 'You', 'are', 'not', 'going', 'to', 'believe', 'it', '!', 'Joshua', 'came', 'into', 'work', 'today', ',', 'and', 'guess', 'what', 'happened', '?', 'No', '.', 'But', 'I', 'was', 'showing', 'him', 'some', 'cufflinks', 'and', 'I', 'felt', 'his', 'pulse', '.', 'What', 'are', 'these', '?', 'Okay', ',', 'okay', ',', 'okay', 'should', 'I', 'be', 'scared', '?', 'Wow', '!', 'If', 'only', 'more', 'people', 'knew', '.', 'Hey', '!', 'What-what', 'are-what', 'are', 'these', '?', 'Oh', 'my', 'God', '!', 'Look', 'at', 'this', '!', 'I', 'do', \"n't\", 'care', '!', 'The', 'wires', 'have', 'come', 'loose', 'in', 'your', 'head', '!', 'And', 'did', 'you', '?', '!', 'Oh', 'my', 'God', '.', 'Hello', ',', 'Mrs.', 'Chatracus', '.', 'Thank', 'God', '.', 'Well', ',', 'Joshua�s', 'coming', 'in', 'tomorrow', 'and', 'since', 'I', 'don�t', 'have', 'the', 'guts', 'to', 'ask', 'him', 'out', ',', 'I�m', 'going', 'to', 'sell', 'him', 'a', 'coat', 'and', 'put', 'this', 'note', 'in', 'the', 'pocket', '.', 'Oh', ',', 'here�s', 'that', 'trench-coat', 'that', 'you', 'wanted', '.', 'Yeah', '?', 'Oh', 'no-no', ',', 'no-no', ',', 'they', 'don�t', 'want', 'you', 'to', 'put', 'your', 'hands', 'in', 'the', 'pockets', 'until', 'you', 'are', 'out', 'of', 'the', 'store', '.', 'Well', ',', 'that�s', 'because', 'of', 'a', 'lot', 'of', ',', 'I', 'know', '!', 'Oh', '?', 'Well', ',', 'congratulations', ',', 'so', 'do', 'you', 'love', 'her', '?', 'Huh', '.', 'Well', ',', 'uh', ',', 'that�s', 'uh', ',', 'that�s', 'interesting', '.', 'Oh', ',', 'it�s', 'just', 'an', 'anti-theft', 'device', '.', 'You', 'need', 'that', ',', 'you', 'need', 'that', 'too', '�cause', 'obviously', ',', 'a', 'thief', 'could', 'just', 'tear', 'this', 'up', '.', 'Oops', ',', 'sorry', '.', 'Listen', ',', 'we-we', 'have', 'to', 'have', 'a', 'party', 'tonight', '!', 'Actually', ',', 'we', 'have', 'to', 'have', 'one', 'in', 'five', 'minutes', ',', 'so', 'everybody', 'cancel', 'your', 'plans', '.', 'We', 'have', 'to', 'have', 'a', 'surprise', 'Bon', 'Voyage', 'party', 'for', 'Emily', '.', 'But', 'it�s', 'actually', 'for', 'Joshua', '.', 'Look', ',', 'he', 'said', 'he�s', 'not', 'ready', 'to', 'date', ',', 'so', 'I', 'had', 'to', 'invite', 'him', 'to', 'a', 'party', 'if', 'I', 'wanted', 'to', 'see', 'him', 'outside', 'of', 'work', ',', 'and', 'now', 'I', 'have', 'the', 'perfect', 'opportunity', 'to', 'seduce', 'him', '!', 'Surprise', '!', '!', '!', 'Well', ',', 'it', 'was', 'all', 'Ross�s', 'idea', '.', 'Uhh', ',', 'because', 'I�m', 'trying', 'to', 'play', 'hard', 'to', 'get', '.', 'Oh', ',', 'quick', 'he�s', 'looking', 'over', 'here', ',', 'say', 'something', 'funny', '.', 'Okay', ',', 'y�know', 'what', ',', 'y�know', 'what', '?', 'This', 'playing', 'hard', 'to', 'get', 'thing', 'is', 'not', 'working', '.', 'Umm', ',', 'hand-hand', 'me', 'those', 'cherries', '.', 'Okay', '.', 'Okay', '.', 'Hi', '!', 'Care', 'for', 'a', 'cherry', '?', 'No', '?', 'Y�know', ',', 'I', 'can', 'tie', 'one', 'of', 'these', 'into', 'a', 'knot', 'using', 'just', 'my', 'tongue', '.', 'Oh', ',', 'could', 'somebody', 'give', 'me', 'a', 'hand', 'with', 'this', 'zipper', '?', 'Up', '!', 'Yeah', ',', 'I', 'did', '.', 'I', 'needed', 'my', 'lucky', 'dress', '.', 'Ohh', ',', 'God', '!', 'Look', 'at', 'him', ',', 'he�s', 'so', 'cute', '.', 'I', 'wan', 'na', 'go', 'over', 'there', ',', 'grab', 'him', ',', 'and', 'kiss', 'him', '!', 'How', 'can', 'I', 'kiss', 'him', 'and', 'not', 'letting', 'him', 'know', 'that', 'I', 'like', 'him', '?', 'What', '?', 'It�s', 'not', 'Christmas', '!', 'He�s', 'not', '11', '!', 'What', '?', 'You�re', 'leaving', '?', '!', 'No', '!', 'You', 'guys', 'can�t', 'leave', 'yet', '!', 'You', 'have', 'to', 'stay', ',', 'we-we', 'got', 'the', 'whole', 'big', 'thing', 'planned', '!', 'So', ',', 'Spin', 'the', 'Bottle', 'works', 'like', 'this', ':', 'I', 'spin', 'the', 'bottle', ',', 'it', 'lands', 'on', 'Gunther', ',', 'so', 'I', 'would', 'have', 'to', 'kiss', 'Gunther', '.', 'All', 'right', '.', 'Who', 'wants', 'to', 'go', 'first', '?', 'Yay', '!', 'Emily', '!', 'Okay', ',', 'my', 'turn', '!', '!', 'It�s', 'okay', '!', 'It�s', 'okay', '!', 'It', 'kicked', 'once', ',', 'it�ll', 'kick', 'again', '!', 'All', 'right', ',', 'well', ',', 'everybody', 'just', 'remember', 'where', 'they', 'were', 'sitting', '.', 'Just', 'a', 'bug', '.', 'No-n-n-n-no', '!', 'I', 'am', 'finally', 'thinking', 'clearly', '.', 'My', 'lucky', 'dress', 'wasn�t', 'working', 'out', 'to', 'well', 'for', 'me', ',', 'but', 'for', 'four', 'years', ',', 'this', 'baby', 'never', 'missed', '.', 'Hi', '!', 'Ohh', ',', 'yeah', ',', 'well', 'I', 'wanted', 'to', 'give', 'Emily', 'a', 'big', 'American', 'good-bye', 'cheer', '.', 'So', 'okay', '!', 'Ready', '!', 'Okay', '!', 'Gim', 'me', 'an', '�E', '!', '�', 'Gim', 'me', 'an', '�M', '!', '�', 'Gim', 'me', 'an', '�I', '!', '�', 'Gim', 'me', 'an', '�L', '!', '�', 'Gim', 'me', 'a', '�Y', '!', '�', 'What', 'do', 'you', 'get', '?', 'Emily', '!', '!', 'Emil', ',', 'Whoa', '!', '!', 'Okay', '!', 'So', 'that�s', 'me', 'as', 'a', 'cheerleader', '!', 'Ta-dum', '!', 'I�m', 'fine', '!', 'I�m', 'fine', '!', 'I�m', 'just', 'losing', 'a', 'tooth', ',', 'it�s', 'no', 'big', 'deal', '.', 'I', 'have', 'a', 'dentist', '!', 'Y�know', '.', 'I�m', 'gon', 'na', 'go', 'put', 'some', 'ice', 'on', 'it', '.', 'Excuse', 'me', '.', 'What', 'do', 'I', 'do', 'now', '?', 'What', 'do', 'I', 'do', 'now', '?', 'All', 'right', ',', 'come', 'on', ',', 'let�s', 'go', 'get', 'your', 'coat', '.', 'Oh', ',', 'yeah', '!', 'Real', 'fun', '.', 'Y�know', ',', 'this', 'bra', ',', 'Really', ',', 'bothers', 'me', '.', 'Y�know', ',', 'this', 'used', 'to', 'be', 'my', 'bedroom', '.', 'Yeah', '.', 'A', 'lot', 'of', 'memories', 'in', 'here', ',', 'a', 'lot', 'of', 'memories', '.', 'If', 'these', 'walls', 'could', 'talk', ',', 'y�know', 'what', 'they�d', 'say', '?', 'Wan', 'na', 'hear', 'some', 'memories', '?', 'Oh', 'no-no-no', '!', 'No', ',', 'I', 'got', 'this', 'all', 'under', 'control', '.', 'Ughhhh', '!', '!', 'Forget', 'it', '!', 'This', 'is', ',', 'this', 'is', 'not', 'how', 'this', 'is', 'supposed', 'to', 'happen', '.', 'Can', 'you', 'not', 'look', 'at', 'me', 'when', 'I', 'say', 'this', '?', 'I', 'thought', 'that', 'if', 'I', 'could', 'get', 'you', 'here', ',', 'I', 'could', 'seduce', 'you', '.', 'Well', ',', 'I�m', 'sorry', ',', 'I', 'thought', 'you', 'needed', 'them', '!', 'Why', '?', '!', 'You', 'like', 'me', '?', 'Yeah', 'but-but-but', 'you', 'liked', 'me', '!', 'Oh', 'my', 'God', ',', 'I', 'can�t', 'believe', 'this', ',', 'all', 'this', 'time', ',', 'I', 'liked', 'you', 'and', 'you', 'liked', 'me', '!', 'Oh', 'no-no-no', 'don�t', 'say', 'but', '!', 'No-no', ',', 'but�s', 'never', 'good', '!', 'Let�s', 'just', 'leave', 'it', 'at', ',', 'you', 'like', 'me', 'and', 'I', 'like', 'you', '.', 'Oh', ',', 'now', 'see', 'that�s', 'a', 'fancy', 'but', '.', 'But', '....', 'Okay', '.', 'Ohh', ',', 'here', 'you', 'are', '.', 'I', 'was', 'looking', 'for', 'you', 'before', '.', 'Joshua�s', 'gone', 'so', 'you', 'and', 'Emily', 'are', 'free', 'to', 'go', '.', 'Oh', ',', 'Ross', ',', 'I�m', 'sorry', '.', 'I', 'completely', 'ruined', 'your', 'evening', '.', 'Well', ',', 'if', 'it', 'makes', 'you', 'feel', 'any', 'better', ',', 'I', 'made', 'a', 'fool', 'out', 'of', 'myself', '.', 'Is', 'there', 'room', 'on', 'that', 'step', 'for', 'a', 'pathetic', 'loser', '?', 'I�m', 'so', 'sorry', '.', 'Well', ',', 'maybe', 'you', 'didn�t', 'want', 'it', 'to', 'end', '?', 'You', 'seem', 'to', 'really', 'like', 'her', '.', 'Ross', ',', 'that', 'girl', 'just', 'spent', 'the', 'entire', 'evening', 'talking', 'to', 'your', 'friends', ',', 'asking', 'to', 'hear', 'stories', 'about', 'you', ',', 'looking', 'through', 'Monica�s', 'photo', 'albums', ',', 'I', 'mean', 'you', 'don�t', 'do', 'that', 'if', 'you�re', 'just', 'in', 'it', 'for', 'two', 'weeks', '.', 'Yeah', ',', 'you', 'got', 'like', '14', 'hours', 'until', 'she', 'has', 'to', 'be', 'at', 'the', 'airport', ',', 'and', 'you�re', 'sitting', 'here', 'in', 'the', 'hallway', 'with', 'a', '28-year-old', 'cheerleader', 'with', 'a', 'fat', 'lip', '.', 'Yeah', '.', 'I', 'don�t', 'know', ',', 'it', 'was', 'you', 'and', 'a', 'bunch', 'of', 'albino', 'kids', '.', 'Hey', '.', 'You�re', 'a', 'pathetic', 'loser', ',', 'right', '?', 'Sit', '!', 'Oh', 'my', 'gosh', ',', 'Joshua', '!', 'They�re', 'not', 'true', '?', 'Oh', '.', 'Oh', '!', 'Oh', ',', 'I', 'love', 'that', 'but', '.', 'You', 'wan', 'na', 'go', 'inside', 'and', 'have', 'some', 'coffee', '?', 'Okay', '.', 'Every', 'time', '.', 'All', 'right', ',', 'y�know', 'what', ',', 'come', 'on', ',', 'do', 'we', 'really', 'have', 'to', 'watch', 'this', 'while', 'we', 'eat', '?', 'Honey', ',', 'what', 'are', 'you', 'doing', '?', 'That�s', 'too', 'heavy', '.', 'Give', 'it', 'here', '.', 'Oh', ',', 'God', '.', 'Is', 'that', 'the', 'heartbeat', '?', 'Oh', 'wow', '!', 'This', 'is', 'so', 'cool', '.', 'Well', ',', 'so', ',', 'are-are', 'you', 'sure', 'that', 'there', 'are', 'three', '?', '!', 'What�s', 'that', 'song', '?', 'It', 'has', 'been', 'in', 'my', 'head', 'all', 'day', 'long', '.', 'Y�know', 'who', 'doesn�t', 'even', 'like', 'dirty', 'movies', '?', 'My', 'new', 'boyfriend', 'Joshua', '.', 'No', ',', 'he', 'told', 'me', '.', 'He', 'prefers', 'to', 'leave', 'certain', 'things', 'to', 'the', 'imagination', '.', 'Yes', '!', 'I�m', 'going', 'to', 'find', 'out', 'if', 'he', 'really', 'thinks', 'supermodels', 'are', 'too', 'skinny', '.', 'Hey', ',', 'Pheebs', '!', 'Hey', '!', 'Well', ',', 'so', ',', 'why', 'don�t', 'you', 'just', 'turn', 'it', 'off', '?', 'Well', ',', 'what-what', '�cha', 'got', 'there', '?', 'Honey', ',', 'you�re', 'not', 'gon', 'na', 'make', 'enough', 'money', 'to', 'help', 'Frank', 'and', 'Alice', 'just', 'by', 'selling', 'knives', '.', 'Hey', '!', 'Well', ',', 'we', 'were', 'walking', 'down', 'the', 'street', 'and', 'we', 'saw', 'that', 'van', 'that', 'you', 'guys', 'used', 'for', 'catering', 'and', 'we', 'realised', '...', 'Okay', '.', 'Relaxi-Taxi', '!', 'Well', ',', 'well', 'I', 'came', 'up', 'with', 'it', '!', 'Well', ',', 'I', '...', 'Okay', ',', 'it�s', 'not', 'Relaxi', 'Cab', '.', 'It�s', 'Relaxicab', ',', 'like', 'taxicab', '.', 'Hey', ',', 'Mon', ',', 'if', 'you', 'were', 'hoping', 'to', 'sleep', 'with', 'Joshua', 'the', 'first', 'time', 'tonight', ',', 'which', 'one', 'of', 'these', 'would', 'you', 'want', 'to', 'be', 'wearing', '.', 'Sorry', '.', 'I�m', 'so', 'exited', '!', 'I�ve', 'been', 'waiting', 'for', 'this', 'for', 'months', '!', 'I', 'got', 'my', 'hair', 'coloured', '!', 'I', 'got', 'new', 'sheets', '!', 'I�m', 'making', 'him', 'a', 'very', 'fancy', 'meal', '.', 'What', 'am', 'I', 'making', 'him', 'by', 'the', 'way', '?', 'I', 'thought', 'I', 'was', 'making', 'him', 'filet', 'mignon', '?', 'Wow', ',', 'I', 'really', 'get', 'crabby', 'when', 'I', 'cook', '.', 'Ohh', ',', 'please', '!', 'Cooking', 'soothes', 'me', '.', 'Ahh', '.', 'So', ',', 'dig', 'in', '!', 'Hmmm', '!', 'Oh', 'I', 'know', ',', 'my', 'God', ',', 'this', 'is', 'so', ',', 'this', 'rice', 'is', 'so', ',', 'I', 'am', 'so', 'good', '.', 'Oh', ',', 'yeah', ',', 'I�m', 'sorry', '.', 'They', 'used', 'to', 'live', 'here', ';', 'sometimes', 'they', 'migrate', 'back', 'over', '.', 'Yeah', ',', 'sure', ',', 'okay', '.', 'Okay', '.', 'All', 'gone', '!', 'So', ',', 'farm', 'birds', ',', 'huh', '?', 'Oh', '.', 'Okay', '.', 'So', ',', 'can', 'I', 'serve', 'you', 'a', 'little', 'of', ',', 'What', '?', 'What', '?', 'What', '?', 'But', ',', 'they�re', 'across', 'the', 'hall', '!', 'I', 'mean', 'that�s', 'two', 'doors', 'away', ',', 'it', 'would', 'take', 'them', 'a', 'long', 'time', 'to', 'peck', 'their', 'way', 'back', 'over', 'here', '.', 'Okay', ',', 'y�know', ',', 'would', 'you', 'feel', 'better', 'if', 'we', 'went', 'someplace', 'else', '?', 'I', 'mean', 'we', 'could', 'pack', 'all', 'this', 'stuff', 'up', 'and', 'y�know', 'go', 'to', 'your', 'apartment', '.', 'Your', 'parents�', '?', 'Ohh', '.', 'Yeah', 'that', 'works', '.', 'Wow', '!', 'This', 'place', 'is', 'fabulous', '!', 'Whoa-whoa', ',', 'there�s', 'two', 'living', 'rooms', '?', 'God', ',', 'growing', 'up', 'here', ',', 'this', 'place', 'must�ve', 'been', 'a', 'real', 'babe', 'magnet', '.', 'Ohh', ',', 'you', 'should', 'know', ',', 'this', 'place', 'is', 'a', 'real', 'babe', 'magnet', '.', 'Wan', 'na', 'make', 'out', '?', 'That', 'sounds', 'like', 'a', 'plan', '.', 'Umm', ',', 'is', 'there', 'a', 'place', 'I', 'can', 'go', 'freshen', 'up', '?', 'Ah', '.', 'Hi', 'you', '!', 'I', 'know', ',', 'I', 'can', 'do', 'more', 'than', 'cook', '.', 'Ohh', '!', 'It�s', 'so', 'nice', 'to', 'meet', 'you', '.', 'Hello', '.', 'Hello', '.', 'What', '?', 'This-this', ',', 'no', ',', 'oh', 'no', ',', 'no-no-no', ',', 'this', 'is', 'not', ',', 'that�s-that�s', 'not', 'what', 'it', 'is', '.', 'See', ',', 'see', ',', 'okay', ',', 'I', 'work', 'in', 'fashion', ',', 'see', 'and-and', ',', 'this', 'is', 'a', 'real', 'dress', 'actually', '.', 'It�s-it�s', ',', 'they�re-they�re', 'wearing', 'it', 'in', 'Milan', ',', 'so', 'part', 'of', 'my', 'job', 'is', 'too', 'wear', 'the', 'clothes', ',', 'and', 'then', 'I', 'see', 'how', 'people', 'respond', ',', 'and', 'then', 'I', 'report', 'back', 'to', 'my', 'superiors', 'at', 'Bloomingdale�s', ',', 'so', '.', 'And', 'obviously', 'in', 'uh', ',', 'in-in', 'this', 'case', ',', 'I', 'am', 'going', 'to', 'report', 'back', ',', '``', 'USA', 'not', 'ready', '.', \"''\", 'Yes', '!', 'Well', ',', 'we', 'were', 'going', 'to', 'do', 'that', 'after', ',', 'I', 'mean', 'umm', ',', 'next', '.', 'Oh', ',', 'yeah', ',', 'well', ',', 'Yeah', ',', 'no', 'use', 'wasting', 'this', 'baby', ',', 'just', 'lyin�', 'around', 'the', 'house', '.', 'Yes', '.', 'Oh', ',', 'yeah', '.', 'And', 'uh', ',', 'the', 'best', 'part', 'though', ',', 'when', 'the', 'uh', ',', 'waiter', 'spilled', 'water', 'down', 'my', 'back', ',', 'I', 'jumped', 'up', ',', 'and', 'my', 'boob', 'popped', 'out', '.', 'No', ',', 'it�s', 'all', 'right', '.', 'I', 'got', 'nice', 'boobs', '.', 'So', '?', 'Huh', '.', 'She�s', 'totally', 'right', '!', 'When', 'we', 'were', 'together', ',', 'you', 'got', 'all', 'freaked', 'out', 'about', 'Mark', 'and', 'there', 'was', 'nothing', 'going', 'on', '.', 'Absolutely', '!', 'Absolutely', '!', 'What', ',', 'yeah', ',', 'what', ',', 'y�know', 'what', '?', 'I', 'hope', 'Emily', 'is', 'a', 'lesbian', '.', 'HEY', '!', '!', 'Do', 'you', 'have', 'to', 'do', 'that', '?', 'It�s', 'Saturday', '!', 'I', 'hate', 'this', 'apartment', '!', 'I', 'hate', 'the', 'color', 'of', 'these', 'walls', '!', 'I', 'hate', 'the', 'fact', 'that', 'this', 'place', 'still', 'smells', 'like', 'bird', '!', 'I', 'hate', 'that', 'singing', 'guy', '!', 'Stop', 'it', '!', 'I', 'will', 'kill', 'you', '.', 'I', 'hate', 'the', 'fact', 'that', 'my', 'room', 'is', 'so', 'small', '.', 'Monica', ',', 'you', 'don�t', 'even', 'have', 'a', 'bed', ',', 'you', 'sleep', 'in', 'a', 'ball', 'on', 'the', 'floor', '!', 'I�m', 'sorry', '.', 'I�m', 'so', 'sorry', '.', 'Hey', '!', 'So', '.', 'Hey', ',', 'Pheebs', '!', 'So', ',', 'how', 'are', 'the', 'elves', '?', 'Yeah', ',', 'my', 'mom', 'got', 'my', 'dad�s', 'season', 'tickets', 'in', 'the', 'divorce', ',', 'so', 'she', 'just', 'gave', 'them', 'to', 'me', '.', 'Yeah', '.', 'Do', 'you', 'guys', 'want', 'these', '?', 'Ohh', ',', 'well', 'you', 'got', '�em', '.', 'Just', 'give', 'us', 'our', 'apartment', 'back', '!', 'Oh', ',', 'come', 'on', '!', 'We', 'know', 'what', 'these', 'are', 'worth', '.', 'You�re', 'bachelor', 'pad', '?', '!', 'Or', 'I�ll', 'give', 'them', 'to', 'my', 'new', 'boyfriend', ',', 'Joshua', '.', 'All', 'right', ',', 'okay', ',', 'look', ',', 'what', 'if', 'you', 'could', 'keep', 'the', 'apartment', 'and', 'get', 'the', 'tickets', '?', 'Let', 'me', 'finish', '.', 'I�m', 'talking', 'about', 'a', 'bet', ',', 'winner', 'takes', 'all', '.', 'Oh', ',', 'okay', ',', 'well', ',', 'I', 'think', 'we', 'should', 'let', 'Phoebe', 'decide', ',', 'because', 'she�s', 'the', 'only', 'who�s', 'impartial', ',', 'and', 'she�s', 'so', 'pretty', '.', 'What', '?', 'Shut', 'up', '!', 'We�re', 'winning', '!', 'Okay', '.', 'All', 'right', ',', 'cut', ',', 'let�s', 'pick', 'again', ',', 'pick', 'again', '.', 'Come', 'on', 'apartment', '!', 'Come', 'on', 'apartment', '!', 'Oh', '!', 'I', 'know', 'queen', 'is', 'high', '!', 'We', 'took', 'our', 'apartment', 'back', '!', '!', 'All', 'right', '.', 'We', 'figured', 'you', 'might', 'respond', 'this', 'way', ',', 'so', 'we', 'have', 'a', 'backup', 'offer', '.', 'Let', 'us', 'keep', 'the', 'apartment', 'and', '....', 'Yeah', '!', 'Can', 'you', 'believe', 'that', 'something', 'that', 'stupid', 'actually', 'got', 'us', 'our', 'apartment', 'back', '?', 'Yeah', '.', 'Yeah', ',', 'I-I', 'heard', '.', 'I', 'think', 'it�s', 'great', '!', 'Ohh', ',', 'I�m', 'so', 'happy', 'for', 'you', '!', 'Hey', ',', 'Mon', ',', 'I', 'was', 'just', 'doing', 'the', 'dishes', '!', 'Oh', '!', 'It�s', 'you', '.', 'Hi', '.', 'Yeah', ',', 'yeah', ',', 'I', 'was', 'just', 'about', 'to', 'take', 'a', 'break', 'anyways', ',', 'so', '....', 'Oh', '.', 'Yeah', '.', 'Yeah', '.', 'Definitely', ',', 'well', 'it', 'definitely', 'took', 'me', 'by', 'surprise', ',', 'but', 'I�m', 'okay', '.', 'Yeah', '.', 'Oh', ',', 'that�s', 'sweet', '.', 'Uhh', ',', 'hang', 'in', 'there', '?', 'I', 'mean', 'maybe', 'you', 'didn�t', 'hear', 'about', 'a', 'serious', 'relationship', 'called', 'me', 'and', 'Joshua', '?', 'Oh', ',', 'no-no-no', ',', 'no-no-no', ',', 'it', 'has', 'become', ',', 'it', 'has', 'yeah', '.', 'Oh', 'no', ',', 'those', 'were', 'four', 'great', 'dates', '.', 'Yeah', '.', 'Oh', ',', 'yeah', '.', 'And', 'I', 'mean', ',', 'the', 'connection', ',', 'I', 'mean', 'y�know', ',', 'emotionally', ',', 'mentally', ',', 'physically', '...', 'I', 'know', 'isn�t', 'it', '?', 'It�s', 'like', 'I�m', 'right', 'there', 'with', 'Joshua', '.', 'You', 'are', 'right', 'there', 'with', 'Emily', '.', 'And', 'it�s', 'y�know', ',', 'it�s', 'kinda', 'like', ',', 'it�s', 'a', 'tie', '!', 'Well', ',', 'I', 'got', 'ta', 'get', ',', 'I', 'got', 'ta', 'get', 'back', 'to', 'the', 'dishes', '.', 'Oh', 'yeah', '?', 'Fine', '.', 'Oh', 'yeah', ',', 'no', ',', 'what�s', 'that', '?', 'That', 'would', 'be', 'great', '!', 'Hang', 'in', 'there', '.', 'You', 'hang', 'in', 'there', '.', 'No', ',', 'just', 'singing', '.', 'Hi', '!', 'Handling', 'it', '?', 'What', 'do', 'you', 'mean', ',', 'handling', 'it', '?', 'There�s', 'nothing', 'to', 'handle', '.', 'Now', ',', 'maybe', 'I', 'would', 'have', 'a', 'problem', 'with', 'this', 'if', 'it', 'wasn�t', 'for', 'me', 'and', 'Joshua', '.', 'Y�know', ',', 'they�re', 'not', 'gon', 'na', 'get', 'married', 'anyway', '!', 'Come', 'on', '!', 'They', 'rushed', 'into', 'this', 'thing', 'so', 'fast', 'it�s', 'ridiculous', '!', 'I', 'mean', ',', 'they�re', 'gon', 'na', 'be', 'engaged', 'for', 'like', 'what', '?', 'A', 'year', '?', 'And', 'somewhere', 'along', 'the', 'way', ',', 'one', 'of', 'them', 'is', 'gon', 'na', 'realise', 'what', 'they�ve', 'done', 'and', 'they�re', 'call', 'the', 'whole', 'thing', 'off', '.', 'I�m', 'telling', 'ya', ',', 'you�re', 'gon', 'na', 'be', 'dancing', 'at', 'my', 'wedding', 'before', 'you�re', 'dancing', 'at', 'there�s', '.', 'Why', 'not', '?', 'Nothing', '.', 'In', 'a', 'month', '?', 'You', 'mean', ',', 'you', 'mean', '30', 'days', '?', 'From', 'now', '?', 'Well', ',', 'that�s', 'great', '.', 'Hi', '!', 'Ohh', ',', 'nothing', ',', 'I', 'just', 'wanted', 'to', 'see', 'you', '.', 'See', 'you', 'and', 'hug', 'you', '.', 'See', 'you', '.', 'Yeah', '!', 'Sit', '!', 'I�m', 'more', 'than', 'okay', ',', 'I', 'am', 'really', ',', 'really', 'happy', '!', 'Wan', 'na', 'know', 'why', '?', '�Cause', 'I', 'am', 'really', 'happy', 'about', 'us', '.', 'I', 'think', 'we', 'are', ',', 'I', 'think', 'we', 'are', 'so', 'on', 'the', 'right', 'track', '!', 'Y�know', '?', 'I', 'mean', ',', 'I', 'think', 'we', 'are', 'working', ',', 'I', 'think', 'we', 'are', 'clicking', '.', 'Y�know', '?', 'Yeah-yeah', ',', 'y�know', 'if-if', 'there', 'was', 'just', 'like', 'one', 'little', 'area', 'where', 'I', ',', 'that', 'I', 'think', 'we', 'need', ',', 'we', 'would', 'need', 'to', 'work', 'on', ';', 'I-I', 'would', 'think', 'it', 'was', 'we�re', 'just', 'not', 'crazy', 'enough', '!', 'Well', ',', 'yeah', ',', 'right', ',', 'y�know', 'what', '?', 'Yeah', ',', 'you�re', 'right', ',', 'I', 'mean', ',', 'we', 'no', ',', 'we', 'have', 'our', 'fun', '.', 'Yeah', '!', 'But', 'if', '(', 'Grunts', 'uncomprehensively', '.', 'I', 'mean', ',', 'I', 'mean', 'like', 'craaaazy', '!', 'Y�know', '?', 'Okay', ',', 'all', 'right', '.', 'This', 'is', 'gon', 'na', ',', 'this', 'is', 'gon', 'na', 'sound', 'y�know', ',', 'a', 'little', 'umm', ',', 'hasty', ',', 'but', 'uh', ',', 'just', 'go', 'with', 'it', '.', 'Umm', '.', 'Ugh', '.', 'What', 'if', 'we', 'got', 'married', '?', 'Oh', ',', 'I', 'know', ',', 'I', 'know', ',', 'it�s-it�s', 'so', ',', 'it�s', 'so', 'totally', 'like', ',', '``', 'Whoa', '!', 'Can', 'we', 'do', 'this', '?', \"''\", 'Y�know', ',', 'I', 'mean', ',', 'but', 'I', 'mean', 'it', 'just', 'feels', 'right', '!', 'Don�t', 'you', 'think', '?', 'It', 'does', '!', 'I', 'mean', ',', 'it', 'just', 'feels', 'right', ',', 'don�t', 'you', 'think', '?', 'Well', ',', 'I', 'just', 'called', 'Joshua', '...', 'Well', ',', 'I', 'did', 'my', 'best', 'to', 'convince', 'him', 'that', 'I�m', 'not', 'some', 'crazy', 'girl', 'who', 'is', 'dying', 'to', 'get', 'married', '.', 'I�m', 'just', 'going', 'through', 'a', 'hard', 'time', '.', 'Well', 'uh', ',', 'his', 'answering', 'machine', 'was', 'very', 'understanding', '.', 'Ugh', '.', 'I', 'feel', 'blue', '.', 'Yeah', ',', 'maybe', ',', 'but', 'I', 'don�t', 'think', 'I', 'even', 'care', '.', 'I', 'don�t', 'think', 'he�s', 'the', 'one', 'I�m', 'sad', 'about', '.', 'Y�know', ',', 'I', 'know', 'that', 'I', 'said', 'that', 'I', 'am', 'totally', 'okay', 'with', 'Ross', 'getting', 'married', ',', 'but', 'as', 'it', 'turns', 'out', ',', 'I', 'don�t', 'think', 'I�m', 'handling', 'it', 'all', 'that', 'well', '.', 'And', 'I-I', 'am', 'just', 'trying', 'to', 'figure', 'out', 'why', '.', 'Well', ',', 'yeah', ',', 'y�know', 'how', 'Ross', 'and', 'I', 'were', 'on', 'again', ',', 'off', 'again', ',', 'on', 'again', ',', 'off', 'again', '?', 'I', 'guess', 'I', 'just', 'figured', 'that', 'somewhere', 'down', 'the', 'road', ',', 'we', 'would', 'be', 'on', 'again', '.', 'Yeah', ',', 'well', ',', 'you', 'uh', ',', 'better', 'make', 'it', 'for', 'three', '.', 'Three', 'people', '.', 'Joshua�s', 'not', 'gon', 'na', 'be', 'there', '.', 'Uh', ',', 'well', ',', 'I', 'think', ',', 'I', 'think', 'he', 'broke', 'up', 'with', 'me', '.', 'Well', ',', 'apparently', 'he', 'scares', 'easy', '.', 'It�s', 'okay', '.', 'Sometimes', ',', 'things', 'don�t', 'work', 'out', 'the', 'way', 'you�d', 'thought', 'they', 'would', '.', 'Oh', ',', 'hey', ',', 'don�t', 'you', 'have', 'to', 'go', 'pick', 'up', 'Emily', '?', 'Yeah', '.', 'Yeah', '!', 'I', 'got', 'my', 'girls', '.', 'Ugh', '.', 'What', '?', 'Y�know', ',', 'I', 'got', 'ta', 'tell', 'ya', ',', 'this', 'really', 'does', 'put', 'in', 'a', 'better', 'mood', '.', 'Oh', ',', 'okay', '!', 'I�m', 'not', 'gon', 'na', 'marry', 'Chandler', '!', 'Okay', ',', 'you', 'guys', ',', 'just', 'relax', '.', 'I', 'doooo', '.', 'Oh', ',', 'wait', ',', 'Joshua', '!', 'Joshua', '!', 'Yeah', ',', 'well', ',', 'that', 'oughta', 'do', 'it', '.', 'Oh', 'God', 'Monica', 'hi', '!', 'I', 'just', 'went', 'to', 'your', 'building', 'and', 'you', 'were', \"n't\", 'there', 'and', 'then', 'this', 'guy', 'with', 'a', 'big', 'hammer', 'said', 'you', 'might', 'be', 'here', 'and', 'you', 'are', ',', 'you', 'are', '!', 'Hi', ',', 'sure', '!', 'I', 'knew', '.', 'I', 'did', '.', 'Yeah', ',', 'maybe', '...', 'Really', '?', 'Oh', 'Ross', ',', 'you', \"'re\", 'so', 'great', '.', 'OK', '.', 'Ohhh', '!', '!', '!', '!', 'Oh', ',', 'look', 'at', 'the', 'little', 'cat', '!', 'Look', 'at', 'it', '!', 'All', 'right', ',', 'listen', ',', 'missy', '.', 'If', 'you', 'want', 'this', 'cart', ',', 'you', \"'re\", 'gon', 'na', 'have', 'to', 'take', 'me', 'with', 'it', '!', 'Yes', '!', 'Did', 'you', 'see', 'that', '?', 'I', 'could', 'not', 'have', 'done', 'this', 'without', 'you', '.', 'What', '?', 'Hey', ',', 'I', 'was', 'doin', \"'\", 'great', 'before', 'I', 'found', 'out', 'about', 'you', '.', 'You', 'think', 'it', \"'s\", 'easy', 'for', 'me', 'to', 'see', 'you', 'with', 'Julie', '?', 'Alright', ',', 'fine', ',', 'you', 'go', 'ahead', 'and', 'you', 'do', 'that', ',', 'alright', 'Ross', '.', \"'Cause\", 'I', 'do', \"n't\", 'need', 'your', 'stupid', 'ship', '.', 'Good', '.', 'Ross', 'do', 'you', 'realise', 'this', 'is', 'the', 'first', 'time', 'in', 'my', 'life', 'I�m', 'doing', 'something', 'I', 'actually', 'care', 'about', '.', 'This', 'is', 'the', 'first', 'time', 'in', 'my', 'life', 'I�m', 'doing', 'something', 'that', 'I�m', 'actually', 'good', 'at', '.', 'I', 'mean', '.', 'if', 'you', 'don�t', 'get', 'that', '...', 'Well', 'neither', 'do', 'I', '!', 'Oh', 'my', 'God', '.', 'Oh', 'my', 'God', '.', 'I', 'can', 'not', 'keep', 'having', 'this', 'same', 'fight', 'over', 'and', 'over', 'again', ',', 'Ross', ',', 'no', ',', 'you�re', ',', 'you�re', ',', 'you�re', 'making', 'this', 'too', 'hard', '.', 'I', 'don�t', 'know', ',', 'I', 'don�t', 'know', '.', 'Urrrgh', '!', 'Look', ',', 'maybe', 'we', 'should', 'take', 'a', 'break', '.', 'No', '.', 'A', 'break', 'from', 'us', '.', 'Hi', '.', 'Ohhh', ',', 'you', 'got', 'my', 'message', '.', 'So', 'what', 'do', 'you', 'say', '?', 'Can', 'I', 'be', 'your', 'girlfriend', 'again', '?', \"Y'know\", 'what', ',', 'I', 'want', 'you', 'to', 'leave', '!', 'Get', 'outta', 'here', '!', 'Just', 'get', 'out', '!', 'Now', '!', '!', 'Okay', '!', 'All', 'right', '!', 'How', 'was', 'she', '?', 'Was', 'she', 'good', '?', 'Come', 'on', 'Ross', '!', 'You', 'said', 'you', 'wanted', 'to', 'talk', 'about', 'it', ',', 'let�s', 'talk', 'about', 'it', '!', '!', 'How', 'was', 'she', '?', 'Good', 'different', '?', '�', '...', 'the', 'way', 'you', 'owned', 'up', 'to', 'everything', ',', 'it', 'just', 'showed', 'me', 'how', 'much', 'you�ve', 'grown', '.', \"Y'know\", '?', '�', 'I', 'mean', 'my', 'Mom', 'never', 'thought', 'this', 'would', 'work', 'out', '.', 'It', 'was', 'all', ',', '``', 'Once', 'a', 'cheater', ',', 'always', 'a', 'cheater', '.', \"''\", '�', 'Ooh', ',', 'I', 'just', 'wish', 'we', 'hadn�t', 'lost', 'those', 'four', 'months', ',', 'but', 'if', 'time', 'was', 'what', 'you', 'needed', 'just', 'to', 'gain', 'a', 'little', 'perspective', '...', 'You', 'seem', 'to', 'really', 'like', 'her', '.', 'Ross', ',', 'that', 'girl', 'just', 'spent', 'the', 'entire', 'evening', 'talking', 'to', 'your', 'friends', ',', 'asking', 'to', 'hear', 'stories', 'about', 'you', ',', 'looking', 'through', 'Monica�s', 'photo', 'albums', ',', 'I', 'mean', 'you', 'don�t', 'do', 'that', 'if', 'you�re', 'just', 'in', 'it', 'for', 'two', 'weeks', '.', 'Yeah', ',', 'you', 'got', 'like', '14', 'hours', 'until', 'she', 'has', 'to', 'be', 'at', 'the', 'airport', ',', 'and', 'you�re', 'sitting', 'here', 'in', 'the', 'hallway', 'with', 'a', '28-year-old', 'cheerleader', 'with', 'a', 'fat', 'lip', '.', 'Yeah', '.', 'Hey', 'guys', '!', 'What�s', 'up', '?', 'What�s', 'this', '?', 'Is', 'this', 'Ross�s', 'wedding', 'invitation', '?', 'Oh', ',', 'no', '!', 'No', 'you', 'guys', '!', 'Come', 'on', ',', 'you', 'don�t', 'have', 'to', 'do', 'that', '!', 'I�m', 'happy', 'for', 'him', '!', 'I', 'am', '!', 'I', 'really', ',', 'I�m-I�m', 'happy', '.', 'I�ll', 'work', 'on', 'it', '.', 'Yeah', '.', 'Oh', ',', 'honey', ',', 'I', 'don�t', 'know', '.', 'I', '....', 'No', ',', 'I�ll', 'think', 'about', 'it', '.', 'Yeah', '.', 'Who', \"'s\", 'this', 'from', '?', 'Oh', '...', '...', 'Oh', 'my', 'God', '.', 'He', 'remembered', '.', 'It', 'was', 'like', 'months', 'ago', '.', 'We', 'were', 'walking', 'by', 'this', 'antique', 'store', ',', 'and', 'I', 'saw', 'this', 'pin', 'in', 'the', 'window', ',', 'and', 'I', 'told', 'him', 'that', 'it', 'was', 'just', 'like', 'one', 'my', 'grandmother', 'had', 'when', 'I', 'was', 'a', 'little', 'girl', '.', 'Oh', '!', 'I', 'ca', \"n't\", 'believe', 'he', 'remembered', '!', 'What', 'did', 'you', 'just', 'say', '?', 'Oh', '....', 'my', 'God', '.', '�', 'Oh', 'my', 'God', '.', 'Julie', '!', 'Julie', ',', 'is', \"n't\", 'that', 'great', '?', 'I', 'mean', ',', 'is', \"n't\", 'that', 'just', 'kick-', 'you-in-the-crotch', ',', 'spit-on-your-neck', 'fantastic', '?', '�', 'She', 'did', \"n't\", 'hang', 'up', 'either', '...', 'Ross', ',', 'hi', ',', 'it', \"'s\", 'Rachel', '.', 'I', \"'m\", 'just', 'calling', 'to', 'say', 'that', 'um', ',', 'everything', \"'s\", 'fine', 'and', 'I', \"'m\", 'really', 'happy', 'for', 'you', 'and', 'your', 'cat', '......', 'I', 'am', 'over', 'you', '.', 'I', 'am', 'over', 'you', 'and', 'that', ',', 'my', 'friend', ',', 'is', 'what', 'they', 'call', 'closure', '.', 'Oh', 'my', 'God', '.', 'Oh', 'my', 'God', 'Ross', ',', 'no', ',', 'hang', 'up', 'the', 'phone', ',', 'give', 'me', 'the', 'phone', 'Ross', ',', 'give', 'me', 'the', 'phone', ',', 'give', 'me', 'the', 'phone', ',', 'give', 'me', 'the', '.', '.', '.', 'Ohhhhhhhh', 'God', '.', 'Ohh', ',', 'ohh', '.', 'Well', ',', 'basically', ',', 'lately', ',', 'I', \"'ve\", 'uh', ',', 'I', \"'ve\", 'uh', ',', 'sort', 'of', 'had', 'feelings', 'for', 'you', '.', 'Really', '?', 'Oh', ',', 'god', '.', 'Oh', 'it', \"'s\", 'OK.', 'You', 'were', 'worth', 'the', 'wait', ',', 'and', 'I', 'do', \"n't\", 'just', 'mean', 'tonight', '.', 'Ah', ',', 'oh', 'God', '.', 'Oh', ',', 'honey', ',', 'oh', 'that', \"'s\", 'OK.', 'Yeah', ',', 'because', 'I', 'was', 'mad', 'at', 'you', ',', 'not', 'because', 'I', 'stopped', 'loving', 'you', '!', 'Noo', '.', 'Noo', '!', 'Maybe', '!', 'I', ',', 'I', 'don�t', 'know', '.', 'I', 'just', ',', 'I', 'feel', ',', 'I-I', 'just', '...', \"Y'know\", 'I', 'can�t', 'believe', 'I', 'even', 'thought', 'about', 'getting', 'back', 'together', 'again', '!', 'We', 'are', 'so', 'over', '!', '!', 'And', 'hey', '!', 'Just', 'so', 'you', 'know', ',', 'it�s', 'not', 'that', 'common', '!', 'It', 'doesn�t', 'happen', 'to', 'every', 'guy', '!', 'And', 'it', 'is', 'a', 'big', 'deal', '!', '!', 'Oh', 'my', 'God', '.', 'Oh', '.', 'I', 'ca', \"n't\", 'go', 'to', 'my', 'own', 'prom', 'without', 'a', 'date', ',', 'I', 'ca', \"n't\", ',', 'it', \"'s\", 'too', 'late', '.', 'Yeah', '.', 'It�s', 'just', 'gon', 'na', 'be', 'too', 'hard', '.', 'Y�know', '?', 'I', 'mean', ',', 'it�s', 'Ross', '.', 'How', 'can', 'I', 'watch', 'him', 'get', 'married', '?', 'Y�know', 'it�s', 'just', ',', 'it�s', 'for', 'the', 'best', ',', 'y�know', 'it', 'is', ',', 'it�s', ',', 'Y�know', ',', 'plus', ',', 'somebody�s', 'got', 'to', 'stay', 'here', 'with', 'Phoebe', '!', 'Y�know', 'she�s', 'gon', 'na', 'be', 'pretty', 'big', 'by', 'then', ',', 'and', 'she', 'needs', 'someone', 'to', 'help', 'her', 'tie', 'her', 'shoes', ';', 'drive', 'her', 'to', 'the', 'hospital', 'in', 'case', 'she', 'goes', 'into', 'labour', '.', 'I', 'know', '.', 'Yeah', ',', 'see', ',', 'there�s', 'so', 'much', 'to', 'do', 'and', 'I', 'have', 'so', 'little', 'time', 'to', 'do', 'it', 'in', '.', 'So', 'uh', ',', 'Pheebs', ',', 'honey', ',', 'how', 'are', 'those', 'mood', 'swings', 'coming', '?', 'Whoa', '!', 'Hey-hey', ',', 'you', 'planning', 'on', 'inviting', 'us', '?', 'Hormones', '!', 'Nooo', '!', 'All', 'right', 'fine', '!', 'You', \"'re\", 'not', 'invited', 'to', 'the', 'party', 'we', \"'re\", 'gon', 'na', 'Well', 'umm', '....', 'Little', 'village', 'people', '.', 'Oh', ',', 'that', 'is', 'so', 'sweet', '!', 'Huh', '.', 'Except', ',', 'Phoebe', \"'s\", 'not', 'gon', 'na', 'be', 'the', 'one', 'that', 'gets', 'to', 'dress', 'Oh', 'my', 'God', '!', 'We', 'are', 'throwing', 'the', 'most', 'depressing', 'baby', 'shower', 'Oh', ',', 'and', 'somebody', 'can', 'get', 'those', 'leather', 'pants', 'she', \"'s\", 'always', 'Hi', '!', 'Phoebe', '.', '(', 'Both', 'Monica', 'and', 'her', 'try', 'to', 'move', 'out', 'of', 'Phoebe', \"'s\", 'No', 'we', '...', 'Hormones', ',', 'yeah', '.', 'Oh', ',', 'well', ',', 'actually', 'we', 'were', 'just', 'talking', 'about', 'me', 'not', 'going', 'to', 'It', 'just', 'might', 'be', 'too', 'hard', ',', 'given', 'the', 'history', 'and', 'all', 'that', '.', 'Well', ',', 'h-how', 'is', 'this', 'like', 'that', '?', \"I'm-I\", \"'m\", 'sorry', ',', 'I', 'just', 'thought', 'that', '.', 'Good', '.', 'What', '?', '!', 'She', 'made', 'the', 'tea', '!', 'You', 'what', '?', 'Okay', '.', 'It', \"'s\", 'okay', '.', 'We', \"'re\", 'gon', 'na', 'be', 'okay', '.', \"Y'know\", 'what', '?', 'It', \"'s\", 'okay', '.', 'Okay', '!', 'Okay', '!', 'I', 'do', \"n't\", 'know', '!', 'I', 'still', 'do', \"n't\", 'get', 'how', 'you', 'know', 'when', 'it', \"'s\", 'false', 'labour', '.', 'Well', ',', 'is', \"n't\", 'that', 'a', 'good', 'thing', '?', 'You', 'said', 'you', 'were', 'sick', 'of', 'this', '.', 'No', ',', 'really', '.', 'Really', ',', 'Pheebs', ',', 'you', \"'re\", 'not', 'gon', 'na', 'be', 'the', 'one', 'And', 'you', 'just', 'get', 'to', 'be', 'cool', 'Aunt', 'Phoebe', '!', 'And', \"y'know\", 'what', 'else', ',', 'oh', 'my', 'God', ',', 'are', 'they', 'gon', 'na', 'love', 'you', '.', 'Oh', '!', 'What', '?', '!', 'Who', 'are', 'you', 'saying', '``', 'check', \"''\", 'too', '?', 'Have', 'fun', '!', 'Oh', ',', 'I', 'know', '.', 'What', '?', '!', 'Yeah', ',', 'well', ',', 'I', 'got', 'ta', 'work', ',', 'I', \"'m\", 'sorry', '.', 'Because', ',', 'I', 'ca', \"n't\", '!', 'Ross', ',', 'I', 'told', 'you', ',', 'no', '.', 'I', 'ca', \"n't\", '.', 'Oh', ',', 'honey', '!', 'Do', \"n't\", 'get', 'up', '!', 'What', 'do', 'you', 'need', '?', 'Come', 'on', '!', 'I', 'am', 'here', 'to', 'take', 'care', 'of', 'you', '!', 'What', 'do', 'you', 'need', '?', 'Okay', ',', 'that', 'is', 'all', 'you', '.', 'Oh', ',', 'I', 'do', \"n't\", 'know', '.', 'I', 'guess', 'we', 'have', 'to', 'eat', '.', 'I', \"'m\", 'just', 'bummed', 'about', 'the', 'way', 'I', 'left', 'things', 'with', 'Ross', '.', 'I', 'Still', 'in', 'love', 'with', '?', '!', 'I', \"'m\", 'not', 'in', 'love', 'with', 'Ross', '!', 'Phoebe', ',', 'I', \"'m\", 'going', 'to', 'Ross', \"'s\", 'wedding', 'because', 'he', 'is', 'my', 'ex-boyfriend', 'We', '?', '!', 'You', 'all', 'know', '?', 'Does', 'Ross', 'know', '?', 'Oh', ',', 'I', 'can', 'not', 'believe', 'you', 'did', \"n't\", 'tell', 'me', '!', 'Hi', '.', 'Manhattan', 'does', 'not', 'have', 'enough', 'stores', '.', 'You', 'can', '?', 'Um-hmm', '.', 'Okay', '.', 'Ooh', ',', 'is', 'this', 'one', 'of', 'those', 'things', 'where', 'you', 'throw', 'it', 'in', 'a', 'bag', 'with', 'I', 'can', 'do', 'that', '.', 'I', 'certainly', 'did', 'it', 'when', 'we', 'were', 'going', 'out', '.', 'I', 'do', \"n't\", 'know', ',', 'his', 'uh', ',', 'his', 'hair', 'never', 'really', 'bothered', 'me', 'that', 'much', ',', 'Okay', '.', 'All', 'right', '.', 'Okay', '.', 'Ow', '!', 'Well', ',', 'I', 'like', 'you', 'less', '!', 'Pheebs', '?', 'Do', 'you', 'remember', 'where', 'the', 'duck', 'food', 'is', '?', 'Because', 'I', \"'m\", 'going', 'to', 'London', '.', 'Yeah', ',', 'I', 'have', 'to', 'tell', 'Ross', 'that', 'I', 'love', 'him', '.', 'Now', 'honey', ',', 'you', 'take', 'care', ',', 'Yeah', ',', 'I', 'know', ',', 'I', 'know', ',', 'I', 'know', 'he', 'does', '.', 'But', 'I', 'have', 'to', 'tell', 'him', 'how', 'I', 'Ohh', ',', 'Do', 'you', 'think', 'he', 'will', '?', '!', \"Y'know\", 'what', '?', 'No', '.', 'It', \"'s\", 'not', 'over', 'until', 'someone', 'says', ',', '``', 'I', 'do', '.', \"''\", 'Ooh', ',', 'ooh', ',', 'ooh', ',', 'ooh', ',', 'ooh', '.', '(', 'Slightly', 'Hello', '.', 'Umm', ',', 'when', 'is', 'your', 'next', 'flight', 'to', 'Ohh', ',', 'good', '.', 'Ohh', ',', 'thank', 'you', ',', 'thank', 'you', ',', 'thank', 'you', '.', 'Ohh', ',', 'I', 'just', 'do', \"n't\", 'think', 'I', 'have', 'enough', 'Ohh', ',', 'okay', ',', 'how', 'about', 'five', '.', 'Okay', ',', 'you', 'know', 'what', '?', 'I', 'do', \"n't\", 'have', 'it', ',', 'Hi', ',', 'Pheebs', '.', 'Bye', ',', 'Pheebs', '.', 'Hi', ',', 'I', \"'m\", 'back', '.', 'Listen', ',', 'I', 'need', 'to', '...', 'Hello', '.', 'I', 'need', 'to', 'get', 'on', 'the', '11', \"o'clock\", 'flight', '.', 'Okay', ',', 'you', 'know', 'what/', 'You', \"'re\", 'going', 'to', 'have', 'to', 'call', 'that', 'plane', 'and', 'Sure', ',', 'you', 'know', 'what', '?', 'Come', 'on', ',', 'we', \"'ll\", 'just', 'tell', 'them', 'that', 'there', 'was', 'Look', ',', 'If', 'I', 'do', \"n't\", 'get', 'to', 'London', '!', '!', 'He', 'is', 'going', 'to', 'marry', 'that', 'other', 'All', 'right', ',', 'you', 'know', 'what', '?', 'I', 'am', 'not', 'leaving', 'here', ',', 'until', 'you', 'call', 'Ohhh', '.', 'Yeah', '?', 'Oh', '.', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'very', 'sorry', '.', 'Sorry', '.', '...', 'And', 'so', 'then', 'I', 'realized', '.', 'All', 'this', 'stuff', 'I', 'had', 'been', 'doing', ',', 'Ehh', ',', 'pardon', 'me', '?', 'But', 'he', 'has', 'to', 'know', 'how', 'I', 'feel', '!', 'Well', 'I-I', 'think', 'your', 'wrong', '.', 'Well', 'I', 'just', 'came', '...', '(', 'She', 'touches', 'him', 'near', 'his', 'heart', '.', 'She', \"'s\", 'almost', 'in', 'He-he', 'said', 'Rachel', ',', 'right', '?', 'Do', 'you', 'think', 'I', 'should', 'go', 'up', 'there', '?', 'Mon', ',', 'honey', ',', 'I', 'got', 'ta', 'ask', 'you', 'something', '.', 'Ross', 'said', 'my', 'name', 'up', 'there', ',', 'I', 'mean', ',', 'come', 'on', ',', 'I', 'just', 'ca', \"n't\", 'pretend', 'that', 'did', \"n't\", 'happen', 'can', 'I', '?', 'Monica', ',', 'what', 'should', 'I', 'do', '?', 'What', '?', 'Whoa', ',', 'wait', ',', 'listen', ',', 'I', 'think', 'I', \"'m\", 'just', 'gon', 'na', 'talk', 'to', 'Ross', 'about', 'what', 'he', 'think', 'it', 'meant', '.', 'Okay', ',', 'you', \"'re\", 'right', '.', 'You', \"'re\", 'right', '.', 'You', 'ca', \"n't\", 'help', 'me', '.', 'Oh', ',', 'hi', '!', 'Hi', '.', 'Sorry', ',', 'things', 'are', \"n't\", 'working', 'out', 'so', 'well', '.', 'Oh', 'yeah', '!', 'Of', 'course', ',', 'I', 'mean', ',', 'she', \"'s\", 'gon', 'na', 'get', 'over', 'this', ',', \"y'know\", '?', 'I', 'mean', ',', 'so', 'you', 'said', 'my', 'name', '!', \"Y'know\", 'you', 'just', 'said', 'it', \"'cause\", 'you', 'saw', 'me', 'there', ',', 'if', 'you', \"'d\", 'have', 'seen', 'a', 'circus', 'freak', ',', 'you', 'would', \"'ve\", 'said', ',', '``', 'I', 'take', 'thee', 'circus', 'freak', '.', \"''\", \"Y'know\", ',', 'it', 'did', \"n't\", 'mean', 'anything', ',', 'it', \"'s\", 'just', 'a', 'mistake', '.', 'It', 'did', \"n't\", 'mean', 'anything', '.', 'Right', '?', 'Right', '!', \"Y'know\", 'when', 'I', 'locked', 'myself', 'in', 'the', 'bathroom', 'at', 'my', 'wedding', ',', 'it', 'was', 'because', 'I', 'was', 'trying', 'to', 'pop', 'the', 'window', 'out', 'of', 'the', 'frame', '.', 'Get', 'the', 'hell', 'out', 'of', 'there', ',', \"y'know\", '?', 'Well', ',', 'look', 'at', 'that', ',', 'same', 'thing', '.', 'Ross', 'said', 'my', 'name', '.', 'Okay', '?', 'My', 'name', '.', 'Ross', 'said', 'my', 'name', 'up', 'there', 'that', 'obviously', 'means', 'that', 'he', 'still', 'loves', 'me', '!', 'Okay', ',', 'do', \"n't\", 'believe', 'me', ',', 'I', 'know', 'I', \"'m\", 'right-do', 'you', 'guys', 'want', 'to', 'go', 'downstairs', 'and', 'get', 'a', 'drink', '?', 'Okay', '.', 'Hello', '?', 'Oh', ',', 'Pheebs', '!', 'It', \"'s\", 'Phoebe', '!', 'Hi', '!', 'Well', ',', 'Ross', 'said', 'my', 'name', '.', 'Okay', ',', 'Pheebs', ',', \"y'know\", 'what', ',', 'let', \"'s\", 'look', 'at', 'this', 'objectively', 'all', 'right', '?', 'Ninth', 'grade', ',', 'right', '?', 'The', 'obsession', 'starts', '.', 'All', 'right', '?', 'The', 'summer', 'after', 'ninth', 'grade', 'he', 'sees', 'me', 'in', 'a', 'two-piece', 'for', 'the', 'first', 'time', ',', 'his', 'obsession', 'begins', 'to', 'grow', '.', 'So', 'then', '...', 'Hey-hey', ',', 'you', 'guys', 'oh', 'hurry', 'up', ',', 'get', 'some', ',', 'there', \"'s\", 'a', 'whole', 'cart', 'outside', '.', 'Hi', '!', 'Well', ',', 'I-I-I', \"'ve\", 'been', 'on', 'Standby', 'for', 'a', 'flight', 'home', 'for', 'hours', '.', 'Ohh', ',', 'so', 'no', 'sign', 'of', 'Emily', 'huh', '?', 'So', 'umm', ',', 'what', 'time', 'are', 'you', 'supposed', 'to', 'leave', '?', 'Yeah', '.', 'I', \"'m\", 'sorry', '.', 'No', ',', 'you', \"'re\", 'not', 'an', 'idiot', ',', 'Ross', '.', 'You', \"'re\", 'a', 'guy', 'very', 'much', 'in', 'love', '.', 'No', ',', 'you', 'know', 'what', ',', 'I', 'think', 'you', 'should', 'go', '.', 'Yeah', ',', 'I', 'do', '.', 'I', 'think', 'you', 'should', 'go', ',', 'by', 'yourself', ',', 'get', 'some', 'distance', ',', 'clear', 'your', 'head', ',', 'I', 'think', 'it', \"'d\", 'be', 'really', 'good', '.', 'Oh', ',', 'come', 'on', 'Ross', '!', 'I', 'think', 'it', 'would', 'be', 'really', 'good', 'for', 'you', '!', 'Yeah', '.', 'Good', '!', 'Right', '!', 'Right', '!', 'Okay', ',', 'I', \"'ll\", 'see', 'you', 'back', 'at', 'home', ',', 'if', 'I', 'ever', 'get', 'a', 'flight', 'out', 'of', 'here', '.', 'What', '?', 'Wait', ',', 'what', '?', 'Well-well', ',', 'I', 'do', \"n't\", 'know', 'Ross-really', '?', 'Uh-huh', '.', 'Oh', 'wow', ',', 'uh', 'okay', ',', 'uh', 'maybe', '.', 'Umm', ',', 'yes', ',', 'I', 'can', 'do', 'that', '!', 'Okay', '!', 'All', 'right', '!', 'Oh', ',', 'okay', ',', 'we', \"'re\", 'going', '.', 'Yeah', '.', 'Oh', ',', 'wait-wait-wait', '!', 'Okay', '.', 'Wait', '!', 'Wait', '!', 'Ahh', ',', 'yes', ',', 'I', 'will', 'have', 'a', 'glass', 'of', 'the', 'Merlot', 'and', 'uh', ',', 'he', 'will', 'have', 'a', 'white', 'wine', 'spritzer', '.', 'Woo', '!', 'Hey', ',', 'look', 'at', 'that', ',', 'the', 'airport', \"'s\", 'moving', '.', 'Hey', ',', 'are', 'we', 'moving', '?', '!', 'Are', 'we', 'moving', '?', 'Why', 'are', 'we', 'moving', '?', 'Hey', ',', 'time-out', ',', 'umm', ',', 'yeah', ',', 'does', 'the', 'captain', 'know', 'that', 'we', \"'re\", 'moving', '?', 'Oh', 'my', 'God', '.', 'Oh', ',', 'my', 'gosh', '.', 'Hi', '!', 'Oh', 'Ross', ',', 'come', 'on', '!', 'You', 'just', 'did', 'what', 'you', 'had', 'to', 'do', '.', 'Terrible', '?', 'Hell', ',', 'I', 'was', 'in', 'Greece', '!', 'That', 'was', 'a', 'nice', 'hotel', '!', 'Nice', 'beach', ',', 'met', 'the', 'nice', 'people', '.', 'Not', 'to', 'shabby', 'for', 'Rachel', '.', 'Well', ',', 'yeah', '!', 'We', \"'re\", 'cool', '.', 'Totally', 'cool', '.', 'Oh', 'no', ',', 'you', \"'re\", 'the', 'best', '.', 'What', '?', '!', 'I', 'did', \"n't\", 'have', 'a', 'good', 'time', 'in', 'Greece', '!', 'Ross', 'abandoned', 'me', '!', 'Okay', ',', 'I', 'could', \"n't\", 'get', 'a', 'plane', 'out', ',', 'so', 'I', 'had', 'to', 'stay', 'in', 'their', 'honeymoon', 'suite', 'with', 'people', 'coming', 'up', 'to', 'me', 'all', 'the', 'time', 'going', ',', '``', 'Oh', ',', 'Mrs.', 'Geller', ',', 'why', 'are', 'you', 'crying', '?', \"''\", 'I', 'mean', ',', 'it', 'was', 'sooo', 'humiliating', '.', 'I', 'felt', 'like', 'such', 'an', 'idiot', '!', 'I', 'mean', ',', 'it', \"'s\", 'all', 'my', 'fault', '!', 'And', 'you', 'know', 'why', ',', 'because', 'I', 'make', 'very', 'bad', 'decisions', '.', 'Yes', 'it', 'is', '!', 'It', 'is', 'true', '!', 'I', 'went', ',', 'I', 'went', 'after', 'Ross', 'in', 'stupid', 'London', '.', 'Phoebe', ',', 'you', 'were', 'right', '.', 'I', 'should', \"'ve\", 'never', 'gone', 'to', 'London', ',', 'and', 'from', 'now', 'on', 'you', 'make', 'all', 'of', 'my', 'decisions', 'for', 'me', '.', 'That', \"'s\", 'fine', '.', 'So', 'Monica', ',', 'you', 'are', 'now', 'in', 'control', 'of', 'my', 'love', 'life', '.', 'Ohh', ',', 'he', \"'s\", 'married', '!', 'Ross', 'is', 'married', '.', 'I', 'ca', \"n't\", '--', 'I', 'still', 'ca', \"n't\", 'believe', 'it', '.', 'I', 'mean', ',', \"y'know\", 'I', \"'m\", 'just', 'gon', 'na', 'have', 'to', 'accept', 'it', 'I', 'mean', 'it', \"'s\", 'my', 'fault', '.', 'Oh', 'my', 'God', '!', 'Yeah', ',', 'I', 'guess', 'Gunther', 'is', 'kinda', '...', 'Oh', ',', 'I', 'do', \"n't\", 'know', '.', 'I', 'do', \"n't\", 'know', '.', 'All', 'right', ',', 'you', \"'re\", 'the', 'boss', '.', 'I', 'guess', 'I', 'got', 'ta', 'do', 'what', 'you', 'tell', 'me', '.', 'Hey', '!', 'Well', ',', \"y'know\", ',', 'a', 'little', 'of', 'this', ',', 'a', 'little', 'of', 'that', '.', 'Got', 'myself', 'a', 'date', 'tomorrow', 'night', '.', 'Well', '?', 'That', \"'s\", 'not', 'European', '!', 'Oh', 'God', ',', 'I', 'really', 'had', 'a', 'good', 'time', '!', 'Yeah', '.', 'Umm', ',', 'unless', 'you', 'wan', 'na', 'come', 'inside', '?', 'Okay', '.', 'Oh', ',', 'uh', ',', 'wait', 'a', 'minute', ',', \"y'know\", 'what', '?', 'I', 'uh', ',', 'I', 'ca', \"n't\", 'decide', 'this', '.', 'Umm', ',', 'okay', ',', 'just', 'hold', 'on', 'a', 'second', '.', 'Umm', ',', 'hi', '!', 'Is', 'Monica', 'around', '?', 'I-I', 'have', 'to', 'ask', 'her', 'something', '.', 'What', \"'s\", 'that', '?', 'Oh', ',', 'honey', 'that', \"'s\", 'awful', '.', 'But', ',', 'it', \"'s\", 'not', 'raining', '.', \"Y'know\", 'what', 'Ross', '?', 'You', \"'re\", 'not', 'going', 'anywhere', '.', 'You', \"'re\", 'gon', 'na', 'sit', 'right', 'here', '.', 'I', \"'m\", 'gon', 'na', 'make', 'you', 'a', 'cup', 'of', 'tea', 'and', 'we', \"'re\", 'gon', 'na', 'talk', 'this', 'thing', 'whole', 'out', '.', 'All', 'right', '?', 'Hey', ',', 'Dave', '!', 'Umm', ',', 'listen', ',', 'I', \"'m\", 'gon', 'na', 'need', 'to', 'take', 'a', 'rain', 'check', ',', 'my', 'roommate', 'is', 'just', 'really', 'sick', '.', 'Okay', '?', 'Bye', '!', 'Honey', ',', 'listen', ',', 'I', 'know', ',', 'I', 'know', 'things', 'seem', 'so', 'bad', 'right', 'now', '.', 'Yeah', '.', 'Ohh', '!', 'You', 'did', 'not', 'drop', 'any', 'socks', '!', 'Well', ',', 'ultimately', ',', 'I', 'was', 'trying', \"y'know\", ',', 'I-I', 'wanted', 'to', 'tell', 'him', \"y'know\", ',', 'that', 'I', \"'m\", 'still', 'in', 'love', 'with', 'him', '.', 'Why', '?', 'Why', 'not', '?', '!', 'People', 'love', 'to', 'hear', 'that', '!', 'Well', ',', \"y'know\", 'what', ',', 'no', ',', 'you', 'do', 'not', 'make', 'my', 'decisions', 'because', \"y'know\", 'what', ',', 'you', \"'re\", 'fired', '.', 'Well', '..', 'No', '.', 'Well', ',', 'then', 'talk', '!', 'Yes', '!', 'I', \"'m\", 'gon', 'na', 'do', 'it', '.', 'But', 'I', '....', 'All', 'right', ',', 'fine', '.', 'Hey-whoa-whoa-whoa', '!', '!', 'Ho-ho-hold', 'on', 'a', 'sec', 'there', ',', 'Mr.', 'Kissey', '!', \"Y'know\", ',', 'I', \"'ve\", 'been', 'meaning', 'to', 'talk', 'to', 'you', 'about', 'this', 'whole', ',', 'little', ',', 'new', 'European', 'thing', 'you', 'got', 'going', 'on', ',', 'and', 'I', 'just', 'need', 'to', 'tell', 'you', 'that', 'it', 'makes', 'me', 'very', 'uncomfortable', 'and', 'I', 'just', '--', \"y'know\", '--', 'stop', 'it', '!', 'Phoebe', ',', 'woo', '!', 'Yeah', ',', \"y'know\", 'what', '?', \"I'm-I\", \"'m\", 'gon', 'na', 'meet', 'you', 'upstairs', 'in', 'a', 'minute', '.', 'Well', ',', \"y'know\", 'what', ',', 'that', 'does', \"n't\", 'matter', '.', 'Yeah', ',', 'I-I', 'do', \"n't\", 'care', '.', 'What', \"'cha\", 'readin', \"'\", '?', 'Yeah', ',', 'what', \"'s\", 'it', 'about', '?', 'Okay', '.', 'Uhh', ',', 'Ross', ',', \"y'know\", 'what', ',', 'there', \"'s\", 'something', 'that', 'I-that', 'I', 'have', 'to', 'talk', 'to', 'you', 'about', 'and', 'everybody', \"'s\", 'saying', 'that', 'I', 'should', \"n't\", 'tell', 'you', ',', 'but', 'I', 'think', 'they', \"'re\", 'wrong', '.', 'I', 'mean', ',', 'and', 'you', 'know', 'how', 'people', 'can', 'be', 'wrong', '.', 'Okay', ',', 'Ross', ',', 'I', \"'m\", 'really', 'trying', 'to', 'tell', 'you', 'something', 'here', '.', 'Okay', '.', 'Umm', ',', 'okay', ',', 'I', 'think', \"I'm-I\", \"'m\", 'just', 'gon', 'na', '-just', 'gon', 'na', 'say', 'it', '.', 'Just', 'gon', 'na', 'say', 'it', '.', 'Uhh', ',', 'I', \"'m\", 'still', 'in', 'love', 'with', 'you', 'Ross', '.', 'I', \"'m\", 'so', 'dead', 'serious', '.', 'I', \"'m\", 'totally', 'serious', '.', 'Because', ',', 'because', ',', 'I', 'just', 'heard', 'it', '.', 'I', 'heard', 'it', ',', 'and', 'it', \"'s\", 'ridiculous', '!', 'I', 'mean', ',', 'you', \"'re\", 'married', '.', \"You're-you\", \"'re\", 'married', 'and', 'it', \"'s\", 'just', 'ridiculous', ',', 'and', 'it', \"'s\", 'like', ',', 'it', \"'s\", 'like', 'when', 'I', 'said', 'it', ',', 'I', 'sort', 'of', 'like', ',', 'I', 'floated', 'up', 'out', 'of', 'my', 'body', ',', \"y'know\", '?', 'And', ',', 'and-and', 'then', 'I', 'heard', 'myself', 'say', 'it', 'and', 'then', 'the', 'floating', 'Rachel', 'was', 'like', ',', '``', 'You', 'are', 'such', 'an', 'idiot', '!', \"''\", 'I', \"'m\", 'sorry', ',', 'that', \"'s\", 'not', 'funny', '.', 'Oh', 'God', ',', 'ohh', ',', 'okay', ',', \"y'know\", 'what', ',', 'do', 'you', 'think', 'ah', ',', 'do', 'you', 'think', 'that', 'you', 'just', 'forget', 'that', 'I', 'told', 'you', 'this', '?', 'The', 'thing', 'is', \"y'know\", ',', 'that', 'you', \"'re\", 'married', 'to', 'Emily', '.', 'Ross', ',', 'things', 'are', \"n't\", 'gon', 'na', 'be', 'weird', 'between', 'us', ',', 'right', '?', 'I', 'mean', 'was', 'that', 'just', 'the', 'stupidest', 'thing', ',', 'me', 'telling', 'you', 'that', '?', 'That', \"'s\", 'what', 'I', 'said', '!', 'Thank', 'you', 'for', 'being', 'so', 'nice', '.', 'High-five', ',', 'the', 'babies', 'are', 'coming', '!', 'I', 'am', 'so', 'gon', 'na', 'miss', 'watching', 'you', 'freak', 'people', 'out', 'like', 'that', '!', 'You-you', \"'re\", 'not', 'wearing', 'a', 'jacket', '.', 'Hi', ',', 'Pheebs', '?', 'Okay', ',', 'so', 'just', 'spoke', 'to', 'the', 'nurse', 'and', 'the', 'reason', 'that', 'your', 'doctor', 'is', 'late', 'is', 'because', 'uh', ',', 'she', \"'s\", 'not', 'coming', '.', 'Honey', ',', 'listen', ',', \"y'know\", 'what', '?', 'The', 'nurse', 'said', 'the', 'doctor', 'is', 'wonderful', '.', 'Monica', '?', 'You', 'gon', 'na', 'be', 'very', 'proud', 'of', 'me', '.', 'I', 'just', 'got', 'us', 'dates', 'with', 'two', 'unbelievably', 'cute', 'nurses', '.', 'They', \"'re\", 'male', 'nurses', '.', 'Anyway', ',', 'they', 'want', 'to', 'take', 'us', 'out', 'Saturday', 'night', '!', 'What', 'do', 'you', 'say', '?', 'What', '?', 'What', 'are', 'you', 'talking', 'about', '?', '!', 'You-you', \"'re\", 'the', 'one', 'who', \"'s\", 'been', 'telling', 'me', 'to', 'get', 'over', 'Ross', 'and', 'move', 'on', '.', 'I', \"'m\", 'moving', 'on', ',', 'and', 'you', \"'re\", 'moving', 'on', 'with', 'me', '.', 'Come', 'on', ',', 'give', 'me', 'one', 'good', 'reason', 'why', 'you', 'do', \"n't\", 'wan', 'na', 'go', '.', 'What', '?', 'Okay', ',', 'you', \"'re\", 'coming', 'with', 'me', ',', 'and', 'I', 'also', 'told', 'them', 'that', 'if', 'we', \"'re\", 'still', 'here', 'when', 'they', 'get', 'off', 'that', 'we', \"'ll\", 'go', 'down', 'to', 'the', 'cafeteria', 'and', 'have', 'some', 'Jell-O', 'with', 'them', '.', 'Joey', ',', 'how', 'do', 'you', 'make', 'that', 'dirty', '?', 'Honey', ',', \"y'know\", 'I', 'just', 'got', 'ta', 'tell', 'you', ',', 'I', 'think', 'this', 'is', 'such', 'a', 'terrific', 'thing', 'you', \"'re\", 'having', 'these', 'babies', 'for', 'Frank', 'and', 'Alice', '.', 'Yeah', '!', 'Yeah', '!', 'Ohh', ',', 'I', \"'m\", 'gon', 'na', 'be', 'on', 'the', 'news', '!', 'Okay', ',', 'Phoebe', ',', 'honey', ',', 'you', 'got', 'ta', 'be', 'kidding', '.', 'I', 'mean', ',', 'you', 'know', 'you', 'can', 'not', 'keep', 'one', 'of', 'these', 'babies', '!', 'Yes', '!', 'Yes', '!', 'Yes', ',', 'I', 'do', '!', 'I', 'do', 'know', '!', 'Frank', 'and', 'Alice', 'are', 'gon', 'na', 'want', 'to', 'keep', 'all', 'of', 'their', 'children', '!', 'Phoebe', ',', 'no', '!', 'This', 'is', ',', 'this', 'is', 'insane', '.', 'Me', '?', '!', 'No', '!', 'Forget', 'it', '!', 'I', 'am', 'not', 'gon', 'na', 'ask', 'Frank', 'to', 'give', 'you', 'one', 'of', 'his', 'kids', '!', '!', 'No', ',', 'I', 'have', \"n't\", 'had', 'a', 'chance', 'to', 'be', 'alone', 'with', 'him', 'yet', '.', \"Y'know\", 'who', 'I', 'always', 'liked', '?', 'Mork', '.', 'Yeah', ',', 'but', 'umm', '...', 'Yes', ',', 'but', ',', 'Fonzie', 'was', 'already', 'cool', ',', 'so', 'he', 'was', \"n't\", 'hurt', ',', 'right', '?', 'Hi', '!', 'Monica', ',', 'this', 'is', 'Dan', ',', 'one', 'of', 'the', 'guys', 'that', 'we', \"'re\", 'gon', 'na', 'be', 'going', 'out', 'with', 'on', 'Saturday', '.', 'Uh', 'Dan', ',', 'Monica', '.', 'Hi', '!', 'Oh', ',', 'honey', ',', 'don�t', 'worry', '.', 'She', \"'s\", 'gon', 'na', 'make', 'it', 'on', 'time', '.', 'Yeah', '.', 'So', 'Frank', ',', 'three', 'babies', '.', 'Whew', ',', 'that', 'just', 'seems', 'like', 'a', 'lot', ',', 'huh', '?', 'Yeah', ',', 'fair', 'enough', '.', 'Oh', ',', 'how', 'does', 'he', 'look', '?', 'How', 'does', 'he', 'look', '?', 'Hi', '.', 'Hey', ',', 'hi', '!', 'So', 'uh', ',', 'Frank', 'and', 'Alice', 'wanted', 'me', 'to', 'tell', 'you', 'that', 'they', \"'re\", 'still', 'outside', 'making', 'phone', 'calls', '.', 'Yeah', ',', 'umm', ',', 'no', 'honey', '.', 'So', 'does', 'it', 'really', 'hurt', 'as', 'bad', 'as', 'they', 'say', '?', 'Hi', '!', 'I', 'just', 'wan', 'na', '--', 'Ahhh', '!', '!', '!', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', 'Since', 'when', 'do', 'take', 'naps', 'in', 'that', 'position', '.', 'Oh', 'God', 'Monica', ',', 'tell', 'me', 'you', 'were', 'waiting', 'for', 'a', 'guy', '!', 'Please', 'tell', 'me', 'you', 'were', 'waiting', 'for', 'a', 'guy', '!', 'That', 'cute', 'waiter', 'guy', 'from', 'your', 'restaurant', ',', 'the', 'one', 'that', 'looks', 'like', 'a', 'non-threatening', 'Ray', 'Liotta', '?', \"Y'know\", 'what', ',', 'just', 'give', 'me', 'a', 'second', 'and', 'I', \"'ll\", 'be', 'out', 'of', 'your', 'hair', '.', 'I', \"'m\", 'just', 'gon', 'na', 'grab', 'a', 'jacket', '.', 'When', 'I', 'get', 'back', ',', 'I', 'want', 'every', 'little', 'detail', '.', 'Maybe', 'that', \"'s\", 'him', '.', 'Why', 'are', \"n't\", 'you', 'guys', 'at', 'the', 'movie', '?', 'So', 'Chandler', ',', 'have', 'you', 'heard', 'about', 'Monica', \"'s\", 'secret', 'boyfriend', '?', 'So', 'Mon', ',', 'when', 'are', 'we', 'gon', 'na', 'meet', 'this', 'new', 'secret', 'waiter', 'man', '?', 'I', 'don�t', 'care', '!', 'I', 'wan', 'na', 'meet', 'this', 'guy', 'who', \"'s\", 'the', 'best', 'sex', 'she', 'ever', 'had', '!', 'What-what-what', 'are', 'you', 'gon', 'na', 'do', '?', 'Maybe', 'Joey', \"'s\", 'right', '.', 'Maybe', 'all', 'good', 'deeds', 'are', 'selfish', '.', 'Chandler', '!', 'Is', 'he', '?', 'Hi', '!', 'Are', 'you', 'ready', '?', 'We', \"'re\", 'gon', 'na', 'be', 'late', '!', 'For', 'Stella', '!', 'Remember', '?', 'She', \"'s\", 'gettin', \"'\", 'her', 'grove', 'back', 'in', 'like', '20', 'minutes', '.', 'Sure', '.', 'I', 'guess', '.', 'Hey', ',', 'I', 'hear', 'you', 'do', \"n't\", 'have', 'to', 'go', 'to', 'London', '.', 'Yay', '!', 'Like', 'what', '?', 'Well', ',', 'why', 'do', \"n't\", 'you', 'talk', 'to', 'me', 'about', 'it', ',', 'maybe', 'I', 'can', 'help', '.', 'Well', ',', 'I-I', 'know', 'you', 'can', 'do', 'that', 'too', '.', 'I', \"'m\", 'just', ',', 'I', \"'m\", 'just', 'saying', 'if', 'you', 'need', 'somebody', 'to', 'talk', 'to', '.', 'Hi', '!', 'Ross', '?', 'Look', ',', 'whatever', 'this', 'relationship', 'stuff', 'that', 'Emily', 'wants', ',', 'just', 'give', 'it', 'to', 'her', '.', 'Come', 'on', ',', 'the', 'bottom', 'line', 'here', 'is', 'that', 'you', 'love', 'her', '.', 'So', 'just', 'fix', 'whatever', 'she', 'wants', 'fixed', '.', 'Just', 'do', 'it', '.', 'I', 'mean', ',', 'you', \"'re\", 'gon', 'na', 'have', 'to', 'try', '.', 'You', \"'ll\", 'just', 'gon', 'na', 'hate', 'yourself', 'if', 'you', 'do', \"n't\", '.', 'Oh', 'come', 'on', 'answer', 'it', '!', 'It', \"'s\", 'driving', 'me', 'crazy', '!', 'Hi', ',', 'guys', '!', 'What', \"'s\", 'going', 'on', '?', 'Oh', 'okay', ',', 'hey', 'guys', ',', 'would', 'you', 'flip', 'mine', 'too', '?', 'Oh', 'look', '!', 'A', 'letter', 'from', 'my', 'mom', '.', 'Oh', 'yeah', '!', 'I', 'know', '.', 'Oh', 'my', 'God', '!', 'My', 'dog', 'died', '!', 'Oh', 'my', 'God', ',', 'Le', 'Poo', ',', 'our', 'dog', '!', 'Oh', 'God', ',', 'it', 'says', 'he', 'was', 'hit', 'by', 'an', 'ice', 'cream', 'truck', 'and', 'dragged', 'for', 'nine', '--', 'teen', 'blocks', '.', 'Oh', '.', 'Oh', 'my', 'God', '.', 'It', \"'s\", 'Le', 'Poo', '.', 'Oh', 'yeah', '!', 'What', '?', 'Oh', 'God', '.', 'No', '!', 'Oh', 'not', 'again', '!', 'This-this', 'happened', 'when', 'my', 'grandfather', 'died', '.', 'It', \"'s\", 'ugh', '!', 'Sorry', '.', 'Oh', ',', 'okay', ',', 'so', 'I', \"'m\", 'sorry', ',', 'what-what', 'were', 'you-what', 'did', 'you', 'want', 'to', 'tell', 'me', '?', 'Sorry', '.', 'Sorry', '.', 'Yeah', ',', 'I', 'know', '.', 'It', \"'s\", 'ridiculous', '!', 'I', 'ca', \"n't\", 'see', 'you', 'either', '.', 'Hi', '!', 'Okay', ',', 'what', \"'s\", 'up', '?', 'Yeah', ',', 'I', 'told', 'you', 'to', 'give', 'Emily', 'whatever', 'she', 'wants', '.', 'Yeah', '?', 'That', \"'s\", 'crazy', '!', 'You', 'ca', \"n't\", 'do', 'that', '!', 'What', 'are', 'you', 'going', 'to', 'tell', 'her', '?', 'Oh', 'God', '.', 'Ohh', ',', 'you', 'already', 'agreed', 'to', 'this', ',', 'have', \"n't\", 'you', '?', 'Ohh', '!', 'Lucky', 'me', '!', 'Oh', 'my', 'God', '!', 'That', 'is', 'good', 'news', ',', 'Ross', '!', 'I', 'think', 'that', \"'s\", 'the', 'best', 'news', 'I', \"'ve\", 'heard', 'since', 'Le', 'Poo', 'died', '!', 'Oh', 'yeah', ',', 'really', '?', 'Is', 'it', 'Ross', '?', 'Yeah', '?', 'Okay', ',', 'well', 'let', 'me', 'make', 'this', 'a', 'just', 'a', 'little', 'bit', 'easier', 'for', 'you', '.', 'Storming', 'out', '!', 'Yeah', ',', 'well', 'that', \"'s\", 'how', 'mad', 'I', 'am', '!', '!', 'Hi', '!', 'Look', ',', 'I', 'know', 'you', 'guys', 'heard', 'about', 'the', 'whole', 'thing', 'with', 'me', 'and', 'Ross', 'but', \"y'know\", ',', 'I', \"'ve\", 'been', 'obsessing', 'about', 'it', 'all', 'day', 'and', 'I', \"'d\", 'just', 'love', 'not', 'to', 'talk', 'about', 'it', '.', 'All', 'right', '?', 'That', \"'s\", 'not', 'Ross', '!', 'Oh', 'my', 'God', ',', 'its', 'happening', '.', 'It', \"'s\", 'already', 'started', '.', 'I', \"'m\", 'Kip', '.', 'Do', 'you', 'even', 'know', 'who', 'Kip', 'is', '?', 'See', '?', 'Yeah', ',', 'you', 'told', 'me', 'the', 'story', '.', 'He', 'and', 'Monica', 'dated', 'when', 'they', 'broke', 'up', 'they', 'could', \"n't\", 'even', 'be', 'in', 'the', 'same', 'room', 'together', 'and', 'you', 'all', 'promised', 'that', 'you', 'would', 'stay', 'his', 'friend', 'and', 'what', 'happened', '?', 'He', 'got', 'phased', 'out', '!', 'Well', ',', 'of', 'course', 'I', 'am', '!', 'It', \"'s\", 'not', 'gon', 'na', 'happen', 'to', 'Ross', '!', 'He', \"'s\", 'your', 'brother', '.', 'He', \"'s\", 'your', 'old', 'college', 'roommate', '.', 'Ugh', ',', 'it', 'was', 'just', 'a', 'matter', 'of', 'time', 'before', 'someone', 'had', 'to', 'leave', 'the', 'group', '.', 'I', 'just', 'always', 'assumed', 'Phoebe', 'would', 'be', 'the', 'one', 'to', 'go', '.', 'Honey', ',', 'come', 'on', '!', 'You', 'live', 'far', 'away', '!', 'You', \"'re\", 'not', 'related', '.', 'You', 'lift', 'right', 'out', '.', 'Phoebe', '?', 'I', \"'m\", 'sorry', 'about', 'the', 'whole', 'lifting', 'out', 'thing', '.', 'You', 'got', 'ta', 'come', 'with', 'me', '!', 'Wherever', 'I', 'go', '.', 'Come', 'on', 'you', 'and', 'me', ',', \"we'll-we\", \"'ll\", 'start', 'a', 'new', 'group', ',', 'we', \"'re\", 'the', 'best', 'ones', '.', 'Hi', '.', 'What', 'are', 'you', 'doing', 'here', '?', 'Is', \"n't\", 'this', 'against', 'the', 'rules', '?', 'Oh', ',', 'Ross', '...', 'No', ',', 'it', \"'s\", 'not', 'better', '.', 'I', 'still', 'do', \"n't\", 'get', 'to', 'see', 'you', '.', 'Well', ',', 'for', 'starters', 'I', 'would', \"'ve\", 'said', 'the', 'right', 'name', 'at', 'my', 'wedding', '!', 'I', 'know', '.', 'I', 'know', 'that', 'too', '.', 'Yeah', ',', 'it', \"'s\", 'in', 'there', '.', 'Uh-huh', '!', 'Ohh', ',', 'whoa', 'God', '!', 'Storage', 'rooms', 'give', 'me', 'the', 'creeps', '!', 'Monica', ',', 'come', 'on', 'please', 'hurry', 'up', 'honey', '!', 'Please', '?', 'I', 'want', 'the', 'little', 'round', 'waffles', '.', 'Okay', ',', \"y'know\", 'what', '?', \"I'll-I\", \"'ll\", 'have', 'toast', '!', 'Arghhhh', '!', '!', '!', '!', '!', '!', 'You', 'guys', '!', 'You', 'guys', '!', 'It', 'was', 'like', 'this', 'crazy-eyed', ',', 'hairy', 'beast', 'man', '!', 'He', 'was', 'like', 'a', ',', 'like', 'a', 'bigfoot', 'or', 'a', 'yeti', 'or', 'something', '!', 'Yeah', ',', 'I-I-I', 'just', 'pulled', 'the', 'tab', 'and', 'I', 'just', 'fogged', 'his', 'yeti', 'ass', '!', 'Yeah', '!', 'Please', '!', 'We', 'did', 'not', 'fog', 'Danny', '!', 'Who', \"'s\", 'Danny', '?', 'Hi', '!', 'You', 'might', 'not', 'remember', 'us', ',', 'but', 'we', 'are', 'the', 'girls', 'that', 'fogged', 'you', '.', 'Hi', '!', 'Just', 'so', 'you', 'know', ',', 'we-we', 'did', \"n't\", 'mean', 'to', 'fog', 'you', ',', 'we', 'thought', 'you', 'were', 'like', 'a', 'yeti', 'or', 'something', '.', 'Hi', '!', 'Sorry', 'to', 'bother', 'you', ',', 'but', 'I', 'do', \"n't\", 'think', 'we', 'can', 'accept', 'your', 'acceptance', 'of', 'our', 'apology', ',', 'it', 'just', 'does', \"n't\", 'really', 'seem', 'like', 'you', 'mean', 'it', '.', 'Really', '!', 'What', 'is', 'with', 'that', 'guy', '?', 'I', 'mean', 'you', \"'d\", 'forgive', 'me', 'if', 'I', 'fogged', 'you', '.', 'Oh', 'my', 'God', ',', 'honey', ',', 'I', \"'m\", 'so', 'sorry', '!', 'Really', '?', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', ',', 'look', 'at', 'these', 'pelts', '!', 'What', '?', 'Uhh', ',', 'Phoebe', ',', 'honey', ',', 'honey', ',', 'I', 'know', 'you', \"'re\", 'quirky', 'and', 'I', 'get', 'a', 'big', 'kick', 'out', 'of', 'it', ',', 'we', 'all', 'do', 'actually', ',', 'but', 'if', 'you', 'destroy', 'a', 'coat', 'like', 'this', 'that', 'is', 'like', 'a', 'crime', 'against', 'nature', '!', 'Not', 'nature', ',', 'fashion', '!', 'Hi', '!', 'What', '?', 'Yeti', '....', 'I', 'mean', 'Danny', '?', 'Oh', '.', 'Listen', ',', 'I', \"'m\", 'so', 'sorry', '.', 'I', 'would', ',', 'I', 'would', \"'ve\", 'never', 'fogged', 'you', 'if', \"y'know\", 'if', 'you', 'had', \"n't\", 'looked', 'so', '.', \"Y'know\", '.', 'What', '?', 'What', '?', 'Hey', '!', 'No-no-no', '!', 'This', 'not', 'cool', '!', 'You', 'do', \"n't\", 'even', 'know', 'me', '!', 'So', 'from', 'that', 'you', 'think', 'you', \"'ve\", 'got', 'me', 'all', 'figured', 'out', '?', 'Well', ',', 'you', 'do', \"n't\", '!', \"Y'know\", 'I-I', 'could', 'have', 'toys', 'for', 'underprivileged', 'kids', 'in', 'here', '!', 'Well', ',', \"y'know\", ',', 'if-if', 'kids', 'like', 'to', 'play', 'with', 'Capri', 'pants', '.', 'And', 'stop', 'saying', 'that', '!', 'I', 'hate', 'that', '!', 'Fine', '!', 'I', 'judged', 'you', '.', 'I', 'made', 'a', 'snap', 'judgement', '.', 'But', 'you', 'did', 'it', 'too', '!', 'And', 'you', 'are', 'worse', 'because', 'you', 'are', 'sticking', 'to', 'your', 'stupid', 'snap', 'judgement', '!', 'You', 'ca', \"n't\", 'even', 'open', 'up', 'your', 'mind', 'for', 'a', 'second', 'to', 'see', 'if', 'you', \"'re\", 'wrong', '!', 'What', 'does', 'that', 'say', 'about', 'you', '?', 'What', '?', '!', 'Okay', '.', 'Okay', '.', 'Hi', '!', 'Oh', ',', 'I', 'went', 'to', 'have', 'pizza', '.', 'With', 'Danny', '.', 'That', 'yeti', 'is', 'one', 'smooth', 'talker', '.', 'Yeah', ',', \"y'know\", 'I-I', 'think', 'I', \"'m\", 'just', 'gon', 'na', 'hang', 'out', 'in', 'my', 'room', '.', 'Come', 'on', 'you', 'guys', '!', 'Listen', ',', 'if', 'Emily', 'knew', 'I', 'was', 'here', 'having', 'dinner', 'you', 'with', 'you', 'she', 'would', 'flip', 'out', 'and', 'you', 'know', 'it', '.', 'It', \"'s\", 'okay', ',', 'I', 'really', ',', 'I', 'do', \"n't\", 'mind', '.', 'Ross', ',', 'I', '....', 'Okay', '.', 'Okay', '.', 'Joey', ',', 'it', \"'s\", 'okay', '.', 'Settle', 'down', '.', 'I', 'have', \"n't\", 'seen', 'him', 'in', 'so', 'long', '!', 'Ross', ',', 'honey', ',', 'is', 'there', 'anything', 'we', 'can', 'do', '?', 'Thank', 'you', '.', 'Mon', '?', 'How', \"'s\", 'Ross', 'doing', '?', \"Y'know\", 'since', 'all', 'the', 'Emily', 'stuff', '.', 'Oh', ',', 'honey', ',', 'please', ',', 'no', ',', 'I', 'ca', \"n't\", 'get', 'started', 'with', 'all', 'that', 'Ross', 'stuff', 'again', '.', 'I', 'mean', ',', 'he', \"'s\", 'gon', 'na', 'screwed', 'up', 'for', 'a', 'looong', 'time', '.', 'And', 'besides', \"y'know\", ',', 'I', 'do', \"n't\", ',', 'I', 'do', \"n't\", 'go', 'for', 'guys', 'right', 'after', 'they', 'get', 'divorced', '.', 'I', 'do', \"n't\", 'know', '!', 'He', 'has', \"n't\", 'called', 'me', 'since', 'that', 'one', 'time', 'when', 'we', 'went', 'out', '.', 'I', 'see', 'him', 'in', 'the', 'hallway', ',', 'we', 'flirt', ',', 'I', \"'m\", 'all', 'ha-ha-ha-ha', ',', 'and', 'nothing', '.', 'Hi', 'Danny', '!', 'Wow', '!', 'Thirsty', 'huh', '?', 'Ohh', ',', 'great', '!', 'Yeah', '.', 'Okay', '.', 'All', 'right', ',', 'I', 'see', 'what', 'he', \"'s\", 'doing', '!', 'He', \"'s\", 'not', 'asking', 'me', 'out', ',', 'because', 'he', 'wants', 'me', 'to', 'ask', 'him', 'out', '.', 'That', \"'s\", 'right', '!', \"'Cause\", 'that', 'would', 'give', 'him', 'the', 'control', '!', 'So', 'now', 'he', \"'s\", 'all', 'ooh', ',', 'coming', 'up', 'with', 'this', 'whole', 'I', \"'ve\", 'got', 'a', 'party', 'thing', \"y'know\", ',', 'trying', 'to', 'get', 'me', 'to', 'hint', 'around', 'for', 'an', 'invitation', '.', 'Blew', 'up', 'in', 'his', 'face', ',', 'did', \"n't\", 'it', '?', 'No', ',', 'there', \"'s\", 'a', 'party', '.', 'There', \"'s\", 'a', 'party', '.', 'But', 'the', 'power', ',', 'that', 'is', 'still', 'up', 'for', 'grabs', '.', 'You', 'follow', 'me', '?', 'Exactly', '.', 'Oh', ',', 'hi', 'Danny', '.', 'Uh', ',', 'actually', ',', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'be', 'busy', '.', 'Yeah', '!', 'Remember', 'I', 'got', 'that', 'uh', ',', 'gala', '.', 'It', \"'s\", 'a', 'uh', ',', 'regatta', 'gala', '.', 'No-no', ',', 'but', 'I', 'support', 'it', '.', 'Okay', '.', 'Walked', 'right', 'into', 'that', 'one', 'did', \"n't\", 'he', '?', 'Yeah', ',', 'but', 'he', 'waited', 'until', 'the', 'last', 'minute', '!', 'So', 'if', 'I', 'said', 'yes', ',', 'he', 'would', 'know', 'I', 'had', 'nothing', 'better', 'to', 'do', 'than', 'wait', 'around', 'for', 'an', 'invitation', 'to', 'his', 'stupid', 'party', '.', 'I', 'said', ',', '``', 'No', '!', \"''\", 'Which', 'puts', 'me', 'right', 'back', 'in', 'the', 'driver', 'seat', '.', 'Ball', '?', 'There', 'is', 'no', 'ball', '.', 'Do', \"n't\", 'let', 'him', 'in', '!', 'I', \"'m\", 'supposed', 'to', 'be', 'at', 'a', 'regatta', 'gala', '.', 'What', '?', 'What', 'kind', 'of', 'a', 'regatta', 'gala', 'starts', 'at', 'night', '?', '!', 'Shoot', ',', 'shoot', ',', 'this', 'is', 'never', 'gon', 'na', 'work', '!', 'He', \"'s\", 'right', 'there', '!', 'No', ',', 'I', 'have', 'to', 'go', 'downstairs', 'and', 'come', 'back', 'up', 'as', 'if', 'I', \"'m\", 'coming', 'home', 'from', 'the', 'regatta', 'gala', '.', 'Okay', '?', 'So', 'just', 'go', 'distract', 'him', '.', 'But', 'do', \"n't\", 'be', 'sexy', '.', 'Hey', '!', 'Oh', 'right', ',', 'tonight', 'was', 'your', 'party', '.', 'Oh', 'well', ',', \"y'know\", ',', 'the', 'gala', 'had', 'to', 'end', 'sometime', '.', 'Yeah', ',', 'sure', '.', 'All', 'right', ',', 'whose', 'court', 'is', 'the', 'ball', 'in', 'now', '?', 'Oh', ',', 'come', 'on', '!', 'He', \"'s\", 'glad', 'that', 'I', 'came', ',', 'he', 'does', \"n't\", 'want', 'me', 'to', 'go', 'anywhere', ',', 'balls', 'flying', 'all', 'over', 'the', 'place', '!', 'Oh', ',', 'go', 'on', '!', 'You', 'telling', 'people', 'about', 'me', '?', 'Yeah', ',', 'okay', ',', 'at', 'ease', 'solider', '!', 'No', ',', 'it', \"'s\", 'all', 'right', ',', 'you', 'can', 'just', 'drop', 'the', 'act', 'Tommy', '.', 'I', 'know', 'what', \"'s\", 'going', 'on', 'here', '.', 'Your', 'Danny', \"'s\", 'wingman', 'right', '?', 'You', 'guys', 'are', 'best', 'buds', '.', 'Frat', 'bros', '!', 'Yeah', ',', 'yeah', ',', 'you', 'go', 'talk', 'to', 'your', 'friend', '.', 'You', 'tell', 'him', ',', '``', 'Nice', 'try', '.', \"''\", 'Man', '!', 'He', 'just', 'keeps', 'lobbing', 'them', 'up', 'and', 'I', 'just', 'keep', 'knocking', 'them', 'right', 'out', 'of', 'the', 'park', '!', 'Yeah', '!', 'Oh', 'Monica', 'that', 'was', 'the', 'best', 'Thanksgiving', 'dinner', 'ever', '!', 'I', 'think', 'you', 'killed', 'us', '.', 'Yeah', ',', 'you', 'know', 'what', 'we', 'should', 'all', 'do', '?', 'We', 'should', 'play', 'that', 'game', 'where', 'everyone', 'says', 'one', 'thing', 'that', 'they', \"'re\", 'thankful', 'for', '.', 'Oh', ',', 'you', \"'re\", 'not', 'gon', 'na', 'tell', 'the', 'whole', 'story', 'about', 'how', 'your', 'parents', 'got', 'divorced', 'again', 'are', 'you', '?', 'I', 'know', 'Monica', \"'s\", 'worst', 'Thanksgiving', '.', 'What', '?', '!', 'Joey', 'got', 'a', 'turkey', 'stuck', 'on', 'his', 'head', '?', '!', 'Actually', ',', \"y'know\", 'that', \"'s\", 'not', 'the', 'Thanksgiving', 'I', 'was', 'talking', 'about', '.', 'No', ',', 'it', 'was', \"n't\", '.', 'It', 'was', 'actually', 'the', '.....', 'Oh', ',', 'yeah', ',', 'I', 'had', 'too', '.', 'There', 'was', 'never', 'any', 'parking', 'by', 'the', 'Psychology', 'building', '.', 'Oh', 'hi', '!', 'No', ',', 'God', '!', 'Please', ',', 'let', 'me', '!', 'Hey', '!', 'Oh-ho', ',', 'my', 'God', '!', 'That', 'was', 'so', 'awesome', '!', 'You', 'totally', 'got', 'him', 'back', 'for', 'calling', 'you', 'fat', '!', 'He', 'was', 'just', 'drooling', 'all', 'over', 'you', '.', 'That', 'must', \"'ve\", 'felt', 'so', 'great', '!', 'What', '?', '!', 'Okay', ',', 'that', 'we', 'may', 'be', 'able', 'to', 'do', '.', 'Well', 'guys', 'tend', 'to', 'get', 'naked', 'before', 'they', \"'re\", 'gon', 'na', 'have', 'sex', '.', 'Okay', ',', 'first', 'of', 'all', ',', 'if', 'you', 'keep', 'calling', 'it', 'that', ',', 'no', 'one', \"'s\", 'gon', 'na', 'ever', 'take', 'it', '.', 'Then', ',', 'second', 'of', 'all', 'you', \"'re\", 'not', 'actually', 'gon', 'na', 'have', 'sex', 'with', 'him', '!', 'You', \"'re\", 'just', 'gon', 'na', 'make', 'him', 'think', 'that', 'you', 'are', '.', 'Yeah', '.', 'Then', ',', 'you', 'will', 'definitely', 'get', 'him', 'back', '!', 'Okay', ',', 'oh', ',', 'here', \"'s\", 'what', 'you', 'do', '.', 'Just', 'act', 'like', 'everything', 'around', 'you', 'turns', 'you', 'on', '.', 'Well', ',', 'like', 'anything', 'can', 'be', 'sexy', '.', 'Like', 'umm', ',', 'oh-oh', ',', 'like', 'this', 'dishtowel', '!', 'Ooh', ',', 'ooh', ',', 'this', 'feels', 'sooo', 'good', 'against', 'my', 'cheek', '!', 'And-and', 'if', 'I', 'feel', 'a', 'little', 'hot', ',', 'I', 'can', 'just', 'dab', 'myself', 'with', 'it', '.', 'Or', 'I', 'can', 'bring', 'it', 'down', 'to', 'my', 'side', 'and', 'bring', 'it', 'through', 'my', 'fingers', 'while', 'I', 'talk', 'to', 'him', '.', 'Yeah', '?', 'Okay', '!', 'Good', ',', 'good', ',', 'because', 'he', \"'s\", 'coming', '.', 'He', \"'s\", 'coming', '.', 'Hey', ',', 'what', \"'s\", 'up', '?', 'You', 'brought', 'a', 'carrot', '?', '!', 'All', 'right', '!', 'Who', \"'s\", 'are', 'they', '?', 'Who', \"'s\", 'are', 'they', '?', 'Well', ',', 'get', \"'em\", 'out', 'of', 'here', '!', 'What', \"'s\", 'wrong', 'with', 'you', '?', 'Take', \"'em\", '!', 'Joey', ',', 'you', 'can', 'touch', 'them', '!', 'They', \"'re\", 'your', 'underwear', '.', 'Hey', ',', 'Pheebs', '!', 'What', 'are', 'you', 'reading', '?', 'Honey', 'that', 'sounds', 'like', 'fun', '.', 'Okay', '.', 'Oh', ',', 'I', 'read', 'that', 'in', 'high', 'school', '.', 'Sorry', 'I', \"'m\", 'late', ',', 'but', 'I', 'left', 'late', '.', 'So', 'Pheebs', ',', 'what', 'is', 'the', 'book', 'about', '?', 'Well', 'yeah', ',', 'but', 'then', 'I', 'remembered', 'I', 'started', 'it', 'and', 'there', 'was', 'this', 'pep', 'rally', 'and', 'I', 'was', ',', 'I', 'was', 'on', 'top', 'of', 'the', 'pyramid', 'but', 'anyway', '...', 'umm', ',', 'what', 'is', 'this', 'book', 'about', '?', 'Umm', ',', 'well', 'I', 'would', 'have', 'to', 'say', 'that', 'it', \"'s\", 'a', ',', 'it', \"'s\", 'tragic', 'love', 'story', '.', 'Oh-oh-oh', ',', 'symbolism', '!', 'And', 'uh', ',', 'the-the', 'uh', ',', 'wildness', 'of', 'the', 'moors', ',', 'which', 'I', 'think', 'is-is', 'mirrored', 'in', 'the', 'wildness', 'of', 'Heathcliff', \"'s\", 'character', '.', 'Well', ',', 'honey', 'that', 'was', 'pretty', 'obvious', '.', 'Be-because', 'I', 'did', \"n't\", 'want', 'him', 'to', 'think', 'I', 'was', 'stupid', '!', 'I', 'mean', ',', 'that', 'was', 'really', 'embarrassing', 'what', 'happened', 'to', 'you', '!', 'Joey', ',', 'is', 'what', 'she', 'just', 'said', 'umm', '...', 'Oh', 'my', 'God', '.', 'You', 'were', 'actually', 'gon', 'na', '...', 'And', 'with', 'Chandler', 'in', 'the', 'next', 'room', '.', 'What', 'are', 'you', ',', 'what', 'are', 'you', 'sick', '?', 'Hi', '!', 'So', 'umm', ',', 'what', \"'s\", 'this', 'book', 'about', '?', 'Well', ',', 'I', 'was', 'gon', 'na', ',', 'but', 'I', 'accidentally', 'read', 'something', 'else', '.', 'Vogue', '!', 'Hey', ',', 'so', 'tell', 'me', 'about', 'this', 'Jane', 'Eyre', 'woman', '.', 'Come', 'on', 'Phoebe', '!', 'Don�t', 'be', 'such', 'a', 'goodie-goodie', '!', 'A', 'cyborg', '?', '!', 'Is', \"n't\", 'that', 'like', 'a', 'robot', '?', '!', 'Uh', ',', 'thank', 'you', 'Phoebe', '.', 'Umm', ',', 'well', ',', 'what', 'struck', 'me', 'most', 'when', 'reading', 'Jane', 'Eyre', 'was', 'uh', ',', 'how', 'the', 'book', 'was', 'so', 'ahead', 'of', 'its', 'time', '.', 'Yeah', ',', 'well', ',', 'feminism', 'yes', ',', 'but', 'also', 'the', 'robots', '.', 'Ugh', ',', 'that', 'was', 'so', 'embarrassing', '!', 'I', 'ca', \"n't\", 'believe', 'you', 'let', 'me', 'go', 'on', 'and', 'on', 'like', 'that', '!', 'That', 'was', 'not', 'funny', '!', 'Phoebe', ',', 'come', 'on', '!', 'What', 'is', 'the', 'big', 'deal', '?', 'I', 'thought', 'this', 'was', 'going', 'to', 'be', 'something', 'we', 'could', 'do', 'together', '!', \"Y'know\", ',', 'I', 'thought', 'it', 'would', 'be', 'fun', '!', 'Ohh', '.', 'Oh', ',', 'so', 'you', 'really', 'wanted', 'to', 'learn', '.', 'Yeah', ',', \"y'know\", ',', 'Pheebs', 'I', 'just', 'wanted', 'to', 'have', 'fun', '.', 'Ohh', ',', 'you', 'know', 'who', 'you', 'should', 'go', 'with', '?', 'Oh', 'my', 'God', '!', 'That', \"'s\", 'Monica', '!', '!', 'You', 'get', 'away', 'from', 'me', '!', '!', 'You', 'sick', ',', 'sick', ',', 'sick', ',', 'sick-o', '!', '!', 'Joey', 'has', 'got', 'a', 'secret', 'peephole', '!', 'Yes', '!', 'He', 'has', 'a', 'naked', 'picture', 'of', 'Monica', '!', 'He', 'takes', 'naked', 'pictures', 'of', 'us', '!', 'And', 'then', 'he', 'eats', 'chicken', 'and', 'looks', 'at', 'them', '!', 'Look', '!', 'Well', ',', 'what', 'is', 'the', 'truth', '?', 'Monica', ',', 'is', 'this', 'true', '?', 'Okay', ',', 'but', 'if', 'it', 'only', 'happened', 'that', 'one', 'time', ',', 'how', 'come', 'we', 'found', 'your', 'underwear', 'in', 'our', 'apartment', 'the', 'other', 'day', '?', 'And', 'the', 'video', 'camera', '?', 'Oh', 'my', 'god', '.', 'Ok', 'you', 'guys', ',', 'there�s', 'Danny', '.', 'Watch', '.', 'Just', 'watch', 'this', '.', 'See', '?', '!', 'Still', 'pretending', 'he�s', 'not', 'interested', '.', 'Ohh', ',', 'he�s', 'coming', 'over', '.', 'Just', 'pretend', 'like', 'we', 'don�t', 'know', 'him', '.', 'We�ve', 'forgotten', 'who', 'he', 'is', '.', 'Thanks', ',', 'Mon', '.', 'Monica', '!', '!', '!', 'Okay', '.', 'What', 'the', 'hell', 'was', 'that', '?', 'You', 'know', 'what', '?', 'Don�t', 'answer', 'me', '.', 'I', 'have', 'a', 'date', 'with', 'Danny', '.', 'I', 'just', 'saw', 'Danny', 'getting', 'on', 'the', 'subway', 'with', 'a', 'girl', 'and', 'he', 'had', 'his', 'arm', 'around', 'her', '.', 'Well', ',', 'you', 'should', 'be', ',', 'this', 'is', 'all', 'your', 'fault', '!', 'You', 'meddled', 'in', 'our', 'relationship', '!', '!', 'No', ',', 'but', 'I', 'was', 'doing', 'my', 'thing', 'and', 'everything', 'was', 'going', 'according', 'to', 'the', 'plan', '!', 'She', 'was', 'kinda', 'stupid', '.', 'You', \"'re\", 'right', '.', 'All', 'right', ',', 'I', \"'m\", 'just', 'gon', 'na', 'go', 'on', 'the', 'date', '.', 'I', \"'m\", 'gon', 'na', 'go', 'on', 'the', 'date', '.', 'That', 'is', 'the', 'new', 'plan', '.', 'So', 'did', 'I.', 'I', \"'m\", 'really', 'glad', 'Monica', 'asked', 'us', 'out', '.', 'You', \"'re\", 'sister', '?', 'You', \"'re\", 'sister', \"'s\", 'asleep', 'on', 'the', 'couch', '?', 'Ohhh', '!', 'I', 'saw', 'her', 'with', 'you', 'on', 'the', 'subway', 'and', 'now', 'she', \"'s\", 'asleep', 'on', 'the', 'couch', '!', 'Hi', '!', 'Uh', ',', 'it', 'was', 'very', 'nice', 'meeting', 'you', '.', 'Hey', '!', 'Hey', ',', 'umm', ',', 'can', 'I', 'ask', 'you', 'guys', 'something', '?', 'Uh', ',', 'I', 'do', \"n't\", 'have', 'any', 'brothers', 'so', 'I', 'do', \"n't\", 'know', ',', 'but', 'uh', ',', 'did', 'you', 'guys', 'wrestle', '?', 'Well', ',', 'I', 'met', 'Danny', \"'s\", 'sister', 'yesterday', ',', 'and', 'uh', 'that', 'was', 'actually', 'the', 'girl', 'on', 'the', 'subway', '.', 'Yeah', ',', 'they', 'were', 'very', \"y'know\", '...', 'wrestley', '.', 'But', ',', 'I', 'guess', 'that', \"'s\", 'normal', '?', 'Okay', ',', \"y'know\", 'what', 'uh', ',', 'actually', ',', 'that', \"'s\", 'great', '.', 'That', 'helps', 'a', 'lot', '.', 'Thanks', '.', 'Oh', ',', 'great', '!', 'Okay', ',', 'see', '?', 'I', 'told', 'you', '!', 'Yeah', 'uh', ',', \"y'know\", 'what', 'uh', ',', 'let', \"'s\", 'skip', 'it', '.', 'Umm', ',', 'you-you', 'and', 'your', 'sister', 'seem', 'to', 'have', 'umm', ',', 'a', 'very', 'special', 'bond', ',', 'and', '...', 'Well', ',', 'okay', ',', 'look', '.', 'I', 'do', \"n't\", 'know', ',', 'listen', ',', 'I', 'do', \"n't\", 'know', 'what', \"'s\", 'going', 'on', 'here', 'but', 'let', \"'s\", '...', 'No', ',', 'I', 'have', 'two', 'sisters', '.', 'But', 'one', 'of', 'them', 'has', 'a', 'very', 'masculine', 'energy', '.', 'No-no', ',', 'they', \"'re\", 'not', 'very', 'nice', 'people', '.', 'Well', ',', 'uh', ',', 'I-I', 'do', \"n't\", 'know', '.', 'See', 'when-when', 'you', 'put', 'it', 'that', 'way', \"y'know\", 'it', 'does', 'sort', 'of', '...', 'Yeah', ',', 'okay', ',', 'I', \"'ll\", 'see', 'you', 'later', '.', 'I', \"'m\", 'doing', 'just', 'fine', '!', 'God', ',', 'Tiffany', ',', 'you', 'smell', 'so', 'great', '!', 'Oh', ',', \"y'know\", 'Joey', ',', 'you', 'are', 'sick', '!', 'I', \"'m\", 'not', 'reading', 'this', '!', 'What', '?', '!', 'So', '?', 'Oh', ',', 'good', 'point', '.', 'Happy', 'New', 'Year', ',', 'Joey', '!', 'But', 'your', 'divorce', 'is', \"n't\", 'even', 'final', 'yet', '.', 'Op', ',', 'look', '!', 'Claire', 'forgot', 'her', 'glasses', '!', 'And', 'she', \"'s\", 'gon', 'na', 'be', 'really', 'needing', 'these', 'to', 'keep', 'an', 'eye', 'on', 'that', 'boyfriend', ',', 'who', ',', 'I', 'hear', ',', 'needs', 'to', 'keep', 'his', 'stapler', 'in', 'his', 'desk', 'drawer', ',', 'if', 'you', 'know', 'what', 'I', \"'m\", 'talking', 'about', '.', 'I', 'do', \"n't\", 'gossip', '!', 'Well', ',', 'maybe', 'sometimes', 'I', 'find', 'out', 'things', 'or', 'I', 'hear', 'something', 'and', 'I', 'pass', 'that', 'information', 'on', \"y'know\", 'kinda', 'like', 'a', 'public', 'service', ',', 'it', 'does', \"n't\", 'mean', 'I', \"'m\", 'a', 'gossip', '.', 'I', 'mean', ',', 'would', 'you', 'call', 'Ted', 'Kopel', 'a', 'gossip', '?', 'What', '?', 'They', 'were', 'like', 'this', '!', 'I', 'didn�t', '!', 'Even', 'when', 'I', 'found', 'out', '...', 'umm', ',', 'all', 'right', ',', 'well', 'let', \"'s\", 'just', 'say', 'I', 'found', 'something', 'out', 'something', 'about', 'someone', 'and', 'let', \"'s\", 'just', 'say', 'she', \"'s\", 'gon', 'na', 'keep', 'it', '.', 'I', 'think', 'they', \"'re\", 'very', 'nice', '.', 'Awful', ',', 'absolutely', 'awful', '.', '``', 'Baddest', 'man', 'in', 'the', 'whole', 'damn', 'town', '.', \"''\", 'Arghh', '!', '!', 'Joey', ',', 'do', 'you', 'have', 'a', 'minute', '?', 'Oh', ',', 'Joey', ',', 'I', 'have', 'such', 'a', 'problem', '!', 'Okay', '.', 'Okay', '.', 'Okay', '.', 'Joey', ',', 'I', 'have', 'got', 'to', 'tell', 'you', 'something', '!', 'Oh', 'my', 'God', ',', 'it', \"'s\", 'so', 'huge', ',', 'but', 'you', 'just', 'have', 'to', 'promise', 'me', 'that', 'you', 'can', 'not', 'tell', 'anyone', '.', 'Yes', '!', 'Yes', '!', 'Yes', ',', 'you', 'do', 'want', 'to', 'know', '!', 'This', 'is', 'unbelievable', '!', 'What', '?', 'What', 'secrets', '?', 'You', 'know', 'secrets', '?', 'What', 'are', 'they', '?', 'I', 'know', ',', 'I', 'know', '!', 'I', 'just', 'ca', \"n't\", 'keep', 'this', 'one', 'in', ',', 'so', 'I', 'pick', 'up', 'the', 'phone', '...', 'That', 'really', 'is', 'something', ';', 'that', \"'s\", 'really', 'cool', '.', 'Good', 'luck', ',', 'honey', '!', 'Hey', ',', 'uh', ',', 'Joey', '?', 'Remember', 'that', 'big', 'thing', 'I', 'was', 'gon', 'na', 'tell', 'you', 'about', '?', 'I', \"'m\", 'not', 'gon', 'na', 'tell', 'you', ',', 'but', 'if', 'you', 'found', 'out', 'on', 'your', 'own', ',', 'that', 'would', 'be', 'okay', 'and', 'then', 'we', 'could', 'talk', 'about', 'it', '.', 'Right', '?', 'Yeah', '.', 'Well', '.', 'Hey', 'uh', 'Joe', ',', 'would', 'mind', 'going', 'over', 'to', 'Chandler', \"'s\", 'bedroom', 'and', 'get', 'that', 'book', 'back', 'that', 'he', 'borrowed', 'from', 'me', '?', 'Yeah', '!', 'Do', 'you', 'know', 'something', '?', 'I', 'might', 'know', 'something', 'too', '.', 'Oh', 'no', ',', 'I', 'ca', \"n't\", 'tell', 'you', 'until', 'you', 'tell', 'me', 'what', 'you', 'know', '.', 'Well', 'then', 'I', 'ca', \"n't\", 'tell', 'you', 'what', 'I', 'know', '.', 'All', 'right', ',', 'how', 'about', 'I', 'go', 'over', 'there', 'and', 'I', 'will', 'walk', 'into', 'Chandler', \"'s\", 'bedroom', 'and', 'I', 'will', 'see', 'that', 'thing', 'that', 'I', 'think', 'that', 'I', 'know', 'is', 'actually', 'the', 'thing', 'that', 'I', 'think', 'that', 'I', 'know', '!', 'AND', 'YOU', 'KNOW', '!', '!', '!', 'Chandler', 'and', 'Monica', '?', '!', '!', 'Oh', ',', 'this', 'is', 'unbelievable', '!', '!', 'How', 'long', 'have', 'you', 'known', '?', 'Ohhh', ',', 'yeah', ',', 'me', 'too', '.', 'Come', 'on', 'Joey', '!', '!', '!', 'I', 'ca', \"n't\", 'believe', 'you', 'would', 'say', 'that', '!', 'No', '!', 'I', 'mean', 'come', 'on', '!', 'This', 'is', 'a', 'huge', 'deal', '!', 'Fine', 'I', 'want', '...', 'I', 'need', 'more', 'details', ',', 'who-who', 'initiated', 'the', 'first', 'kiss', '?', 'Is', 'he', 'romantic', 'with', 'her', '?', 'Are', 'they', 'in', 'love', '?', 'You', 'do', \"n't\", 'know', 'anything', '.', 'What', '?', 'Pheebs', ',', 'I', 'don�t', 'think', 'anyone', \"'s\", 'mad', 'about', 'that', '.', 'Oh', 'umm', ',', \"y'know\", 'I', 'lent', 'it', 'to', 'Joey', 'and', 'I', 'never', 'actually', 'got', 'it', 'back', '.', 'Hey', '!', 'What', \"'s\", 'up', '?', '!', 'Well', 'yeah', ',', 'I', 'do', ',', 'but', 'I', 'decided', 'to', 'take', 'a', 'long', 'lunch', 'and', 'spend', 'some', 'time', 'with', 'my', 'friend', 'Monica', '.', \"Y'know\", 'I-I', 'feel', 'that', 'we', 'do', \"n't\", 'talk', 'anymore', '.', 'How', 'are', 'you', '?', 'What', 'is', 'new', 'with', 'you', '?', 'Oh', \"y'know\", 'what', ',', 'we', 'don�t', 'have', 'to', 'talk', 'about', 'work', '.', 'We', 'can', 'talk', 'about', 'anything', '!', 'Hey', '!', \"Y'know\", 'what', '?', 'Let', \"'s\", 'talk', 'about', 'relationships', '!', 'Nothing', '!', 'You', 'go', '!', 'Wow', 'that', \"'s\", 'uh', ',', 'juicy', '.', 'Umm', ',', \"y'know\", 'what', 'though', 'Mon', ',', 'I', 'actually', 'do', 'have', 'a', 'lot', 'of', 'work', 'to', 'do', 'so', 'if-if', '...', 'are', 'you', 'sure', 'there', \"'s\", 'just', 'not', 'anything', 'else', '?', 'No', '!', 'If', 'there', 'was', 'I', 'would', \"n't\", 'tell', 'you', '.', 'Ross', 'could', \"n't\", 'fit', 'down', 'the', 'trash', 'chute', '.', 'There', 'he', 'is', '!', 'Ohh', ',', 'out', ',', 'oh', 'God', ',', 'I', 'do', \"n't\", 'know', 'why', 'we', 'did', \"n't\", 'think', 'to', 'check', 'there', '!', 'You', 'walked', 'around', 'all', 'night', 'in', 'the', 'city', 'by', 'yourself', '?', 'Yeah', '!', 'No', 'that', \"'s\", 'what', 'I', 'was', 'thinking', '.', 'Ross', '!', 'Janice', '?', '!', 'Okay', ',', 'I', 'have', 'to', 'tell', 'you', 'something', 'that', 'I', 'have', 'never', 'admitted', 'during', 'our', 'entire', 'friendship', '!', 'But', ',', 'when', 'we', 'were', 'in', 'high', 'school', 'I', 'made', 'out', 'with', 'James', 'Farrell', 'even', 'when', 'I', 'knew', 'that', 'you', 'liked', 'him', '!', 'Wow', ',', 'that', 'feels', 'so', 'good', 'to', 'get', 'off', 'my', 'chest', '!', 'Okay', ',', 'you', 'go', '!', 'Ugh', ',', 'Monica', ',', 'I', 'know', 'about', 'you', 'and', 'Chandler', '.', 'I', 'overheard', 'you', 'guys', 'on', 'the', 'phone', 'the', 'other', 'day', ',', 'and', 'you', 'said', ',', '``', 'I', \"'ll\", 'just', 'tell', 'Rachel', 'that', 'I', \"'m\", 'doing', 'laundry', 'for', 'a', 'couple', 'of', 'hours', '.', \"''\", 'And', 'he', 'said', ',', '``', 'Laundry', '?', 'Is', 'that', 'my', 'new', 'nickname', '?', \"''\", 'And', 'you', 'said', ',', '``', 'No', '!', 'You', 'know', 'what', 'your', 'nickname', 'is', ',', 'Mr', '.', 'Big', '.', \"''\", 'Well', ',', 'I', 'would', \"n't\", 'know', 'because', 'I', 'got', 'so', 'freaked', 'out', 'that', 'I', 'hung', 'up', 'the', 'phone', '.', 'What', '?', '!', 'All', 'right', '.', 'So', 'you', \"'re\", 'telling', 'me', 'that', 'there', 'is', 'nothing', 'going', 'on', 'between', 'you', 'and', 'Chandler', '.', 'Sure', '!', 'Why', '?', 'What', '?', '!', 'She', 'just', 'called', 'and', 'said', 'that', 'she', 'was', 'gon', 'na', 'be', 'working', 'late', '!', 'She', 'keeps', 'lying', 'to', 'me', '!', 'That', \"'s\", 'it', '!', \"Y'know\", 'what', '?', 'I', \"'m\", 'just', 'gon', 'na', 'go', 'over', 'there', 'and', 'confront', 'them', 'right', 'now', '!', 'Hey', '!', 'Hi', '!', 'Well', ',', 'I', 'was', 'actually', '...', 'I-I', 'came', 'over', 'here', 'to-to', 'borrow', 'this', 'lamp', '.', 'To', 'umm', ',', 'look', 'at', 'my', 'books', ',', \"y'know\", ',', 'see', 'them', 'a', 'little', 'better', '.', 'Yeah', '!', 'Oh', '!', 'What', 'a', 'great', 'way', 'to', 'earn', 'some', 'extra', 'pocket', 'money', '.', 'That', \"'s\", 'good', 'enough', '.', 'Right', '?', 'Okay', ',', 'well', 'umm', ',', 'I', \"'m\", 'gon', 'na', 'go', 'look', 'at', 'my', 'books', '!', 'Okay', '.', \"'Kay\", '.', 'Congratulations', 'on', 'your', 'new', 'job', '.', 'Joey', ',', 'if', 'you', 'wan', 'na', 'look', 'good', ',', 'why', 'do', \"n't\", 'you', 'just', 'come', 'down', 'to', 'the', 'store', '?', 'I', \"'ll\", 'help', 'you', 'out', '.', 'Sure', '!', 'God', ',', 'please', 'take', 'those', 'off', '!', 'What', '?', 'Well', 'maybe', ',', 'maybe', 'she', \"'s\", 'with', 'us', 'right', 'now', '?', 'Okay', 'now', 'Joey', ',', \"y'know\", 'that', 'since', 'you', \"'re\", 'returning', 'all', 'of', 'this', 'stuff', 'right', 'after', 'the', 'audition', 'you', \"'re\", 'gon', 'na', 'have', 'to', 'wear', 'underwear', '?', 'Okay', ',', 'it', \"'s\", 'missing', 'something', '.', 'Ooh', ',', 'I', 'know', '!', 'Umm', ',', 'okay', '.', 'It', \"'s\", 'not', 'a', 'purse', '!', 'It', \"'s\", 'a', 'shoulder', 'bag', '.', 'No', 'Joey', ',', 'look', '.', 'Trust', 'me', ',', 'all', 'the', 'men', 'are', 'wearing', 'them', 'in', 'the', 'spring', 'catalog', '.', 'Look', '.', 'See', 'look', ',', 'men', ',', 'carrying', 'the', 'bag', '.', 'Exactly', '!', 'Unisex', '!', 'No', '!', 'No', 'Joey', '!', 'U-N-I-sex', '.', 'Joey', ',', 'what', 'are', 'you', 'doing', 'with', 'the', 'bag', '?', 'You', \"'re\", 'audition', 'is', 'not', 'until', 'tomorrow', '.', 'Joey', ',', \"y'know\", 'you', 'get', 'any', 'mustard', 'on', 'that', 'bag', ',', 'you', 'ca', \"n't\", 'return', 'it', '.', 'All', 'right', ',', 'then', 'you', 'owe', 'me', '$', '350', '.', 'Joey', '!', 'Hey', ',', 'do', \"n't\", 'listen', 'to', 'them', '.', 'I', 'think', 'it', \"'s\", 'sexy', '.', 'Hi', 'sweetie', '!', 'Why', '?', '!', 'Why', 'not', '?', '!', 'Okay', '.', 'Ahhh', ',', 'I', 'think', 'you', 'look', 'great', '!', 'That', 'bag', 'is', 'gon', 'na', 'get', 'you', 'that', 'part', '.', 'Ooh', ',', 'Pheebs', ',', 'what', 'are', 'you', 'gon', 'na', 'say', '?', 'Are', 'you', 'gon', 'na', 'tell', 'him', 'who', 'you', 'are', '?', 'What', '?', '!', 'Why', '?', 'Joey', 'you', 'were', 'so', 'ready', 'for', 'it', '!', 'Honey', 'wait', ',', 'Joey', ',', 'I�m', 'sorry', 'I', 'mean', 'as', 'terrific', 'as', 'I', 'think', 'you', 'are', 'with', 'it', '...', '...', 'I', 'just', 'do', \"n't\", 'know', 'if', 'the', 'world', 'is', 'ready', 'for', 'you', 'and', 'your', 'bag', '.', 'Wait', 'a', 'minute', '!', 'Wait', 'a', 'minute', '!', 'I', \"'m\", 'not', 'saying', 'that', 'you', 'shouldn�t', 'have', 'a', 'bag', ',', 'I', 'just', '...', 'it', \"'s\", 'just', 'there', 'are', 'other', 'bags', 'that', 'are', 'a', 'little', 'less', 'umm', ',', 'controversial', '.', 'I', \"'d\", 'say', 'from', 'the', 'looks', 'of', 'it', ';', 'our', 'naked', 'buddy', 'is', 'moving', '.', 'Ohh', ',', 'I', \"'m\", 'gon', 'na', 'miss', 'that', 'big', 'old', 'squishy', 'butt', '.', 'Well', 'that', 'is', 'because', 'your', 'eye', 'immediately', 'goes', 'to', 'the', 'big', 'naked', 'man', '.', 'Well', ',', 'I', 'never', 'thought', 'I', \"'d\", 'say', 'this', ',', 'but', 'I', \"'m\", 'gon', 'na', 'go', 'use', 'Ugly', 'Naked', 'Guy', \"'s\", 'bathroom', '.', 'What', '?', '!', 'Oh', 'my', 'God', '!', 'OH', 'MY', 'GOD', '!', '!', '!', 'Phoebe', '!', '!', 'Phoebe', '!', '!', 'It', \"'s\", 'okay', '!', '!', 'It', \"'s\", 'okay', '!', '!', 'I', 'KNOW', '!', '!', 'I', 'KNOW', '!', '!', 'I', 'KNOW', '!', 'Yes', ',', 'I', 'know', '!', 'And', 'Joey', 'knows', '!', 'But', 'Ross', 'does', \"n't\", 'know', 'so', 'you', 'have', 'to', 'stop', 'screaming', '!', '!', 'HI', '!', '!', 'Hi', '!', 'Nothing', '!', 'Oh', 'God', ',', 'we', \"'re\", 'just', 'so', 'excited', 'that', 'you', 'want', 'to', 'get', 'this', 'apartment', '!', 'Uh-huh', ',', 'doing', 'it', '.', 'Doing', 'it', '.', 'Phone', 'doing', 'it', '.', 'Joey', '!', 'Come', 'here', '!', 'Come', 'here', '!', 'Phoebe', 'just', 'found', 'out', 'about', 'Monica', 'and', 'Chandler', '.', 'No', '.', 'Joey', ',', 'she', 'knows', '!', 'We', 'were', 'at', 'Ugly', 'Naked', 'Guy', \"'s\", 'apartment', 'and', 'we', 'saw', 'them', 'doing', 'it', 'through', 'the', 'window', '.', 'Actually', ',', 'we', 'saw', 'them', 'doing', 'it', 'up', 'against', 'the', 'window', '.', 'Wh-what', 'do', 'you', 'mean', '?', 'Ohhh', ',', 'I-I', 'would', 'enjoy', 'that', '!', 'Ehhh', ',', 'no', ',', 'I', 'wan', 'na', 'do', 'Phoebe', \"'s\", 'thing', '.', 'You', 'do', \"n't\", 'have', 'any', 'secrets', '!', 'So', 'umm', ',', 'how-how', 'are', 'we', 'gon', 'na', 'mess', 'with', 'them', '?', 'Okay', '.', 'Hey', 'Mon', ',', 'what', 'are', 'you', 'doing', 'now', '?', 'Wan', 'na', 'come', 'see', 'a', 'movie', 'with', 'us', '?', 'Oh', '.', 'Okay', 'great', ',', 'hold', 'on', 'a', 'sec', '!', 'Oh', ',', 'here', 'you', 'go', '!', 'You', 'do', \"n't\", 'mind', 'do', 'ya', '?', 'That', 'would', 'really', 'help', 'me', 'out', 'a', 'lot', '!', 'Thanks', '!', 'Hey', 'Ross', '!', 'Any', 'word', 'on', 'the', 'apartment', 'yet', '?', 'Oh', '.', 'What', '?', '!', 'You-you', 'actually', 'thought', 'that', 'basket', 'was', 'gon', 'na', 'get', 'you', 'the', 'apartment', '?', 'All', 'right', 'honey', ',', 'we', \"'d\", 'better', 'go', 'if', 'we', 'wan', 'na', 'catch', 'that', 'movie', '.', 'Oh', 'Ross', ',', 'honey', 'you', 'got', 'ta', 'stop', 'torturing', 'yourself', '!', \"Y'know\", 'what', 'you', 'should', 'do', '?', 'You', 'should', 'find', 'out', 'what', 'his', 'hobbies', 'are', 'and', 'then', 'use', 'that', 'to', 'bond', 'with', 'him', '.', 'Yeah', '!', 'Like', 'if', 'I', 'would', 'strike', 'up', 'a', 'conversation', 'about', 'say', 'umm', ',', 'sandwiches', '.', 'Or', 'uh', ',', 'or', 'my', 'underwear', '.', 'See', '?', 'Yeah', ',', 'he', 'broke', 'those', 'too', '.', 'Hello', '!', 'Oh', 'yeah', '!', 'Hey', '!', 'Hold', 'on', 'a', 'second', 'she', \"'s\", 'right', 'here', '!', 'It', \"'s\", 'Chandler', '.', 'Are', 'you', 'kidding', '?', '!', 'I', 'can', 'not', 'believe', 'he', 'would', 'do', 'that', 'to', 'Mon', '...', 'Whoa', '!', 'Joey', ',', 'do', 'they', 'know', 'that', 'we', 'know', '?', 'Joey', '!', 'Ugh', ',', 'I', 'knew', 'it', '!', 'Oh', 'I', 'can', 'not', 'believe', 'those', 'two', '!', 'All', 'right', '.', 'Be', 'sexy', '.', 'Oh', 'yeah', '!', 'Oh', 'my', 'God', '!', 'That', 'is', 'our', 'friend', '!', 'It', \"'s\", 'Naked', 'Ross', '!', 'Show', 'time', '!', 'Okay', '!', 'Okay', 'honey', ',', 'now', 'I', \"'m\", 'gon', 'na', 'try', 'to', 'listen', 'from', 'right', 'here', '!', 'Okay', '?', 'Whoa', ',', 'wait', '!', 'Yeah', ',', 'oh', 'wait', '!', 'Joey', 'look', ',', 'just', 'look', 'at', 'it', 'this', 'way', ',', 'the', 'sooner', 'Phoebe', 'breaks', 'Chandler', 'the', 'sooner', 'this', 'is', 'all', 'over', 'and', 'out', 'in', 'the', 'open', '.', 'Okay', '!', 'Hey', ',', \"what's-what\", \"'s\", 'going', 'on', '?', '!', 'Awww', ',', 'no', ',', 'it', \"'s\", 'okay', ',', 'we', \"'ve\", 'actually', 'known', 'for', 'a', 'while', '.', 'Well', ',', 'Ross', ',', 'we', 'were', 'worried', 'about', 'you', '.', 'We', 'did', \"n't\", 'know', 'how', 'you', 'were', 'going', 'to', 'react', '.', 'Oh', '!', 'Oh', ',', 'I', 'just', 'thought', 'of', 'the', 'greatest', 'wedding', 'gift', 'to', 'get', 'you', '.', 'Okay', '.', 'She', 'is', 'so', 'cute', '!', 'You', 'could', 'fit', 'her', 'right', 'in', 'your', 'little', 'pocket', '!', 'Aww', ',', 'Joey', ',', 'come', 'here', '.', 'Look', 'honey', ',', 'I', 'know', 'this', 'must', 'be', 'really', ',', 'really', 'difficult', 'for', 'you', 'and', 'I', '--', 'Oh', ',', 'I', \"'m\", 'sorry', '.', 'Am', 'I', 'hurting', 'you', '?', 'Hmm', '.', 'Look', ',', 'Ross', ',', 'if', 'you', 'want', 'your', 'neighbors', 'to', 'like', 'you', ',', 'why', 'do', \"n't\", 'you', 'just', 'pay', 'the', 'hundred', 'bucks', '?', 'The', 'party', \"'s\", 'gon', 'na', 'cost', 'you', 'way', 'more', 'than', 'that', '.', 'Okay', ',', 'I', 'thought', 'it', 'was', 'about', 'your', 'neighbors', 'liking', 'you', '.', 'And', 'that', 'crazy', 'party', 'animal', 'will', 'be', 'your', 'brother-in-law', '.', 'Umm', ',', 'Chandler', ',', 'you', 'do', 'realize', 'that', 'those', 'ideas', 'are', 'probably', 'already', 'in', 'Monica', \"'s\", 'head', '.', 'Well', ',', 'because', 'she', 'loves', 'you', 'and', 'because', 'you', 'love', 'her', '.', 'Hey', ',', 'Chandler', ',', 'do', \"n't\", 'freak', 'out', '!', 'I', \"'m\", 'telling', 'you', 'something', 'you', 'already', 'know', '!', 'Come', 'on', ',', 'she', 'broke', 'up', 'with', 'Richard', 'because', 'he', 'did', \"n't\", 'want', 'to', 'have', 'babies', '.', 'And', 'she', \"'s\", 'a', 'woman', ',', 'and', 'she', \"'s\", 'almost', '30', ',', 'and', \"y'know\", 'it', \"'s\", 'Monica', '.', 'No', ',', 'you', \"'re\", 'right', ',', 'you', 'are', 'absolutely', 'right', '.', 'I', 'mean', 'that', 'makes', ',', 'that', 'makes', 'everything', 'different', '.', 'Not', 'unless', 'different', 'means', 'the', 'same', '.', 'Hi', '!', 'Wow', '!', 'You', 'look', ',', 'you', 'look', '...', 'big', '.', 'Uhhh', ',', 'yeah', '.', 'But', 'it', \"'s\", 'not', 'obvious', 'why', '.', 'Hey', '!', 'Hey', ',', 'cute', 'jacket', '!', 'Oh', '!', 'Ow', '!', 'Whoa', '!', \"Y'know\", 'what', 'Katie', '?', 'I', 'got', 'ta', 'tell', 'ya', 'I-I-I-I', 'think', 'you', 'are', 'the', 'one', 'who', 'is', 'too', 'much', '.', 'Ohh', ',', 'and', 'the', 'nicest', 'girlfriend', '!', 'Ohh', ',', 'you', \"'re\", 'so', 'sweet', '!', 'Ohhhh', ',', 'I', 'can', 'not', 'look', 'at', 'it', '!', 'Oh', 'no', 'wait', 'Pheebs', ',', 'I', 'think', 'for', 'something', 'like', 'that', 'you', 'just', 'ask', 'them', 'to', 'move', 'in', 'with', 'you', '.', 'But', 'I', \"'m\", 'not', 'sure', ',', 'Chandler', '?', 'Uhh', ',', 'we', 'still', 'need', 'a', 'tip', '.', 'A', 'couple', 'of', 'bucks', '.', 'Phoebe', ',', 'I', 'bet', 'somebody', \"'s\", 'missing', 'that', 'badge', '.', 'Hey', 'Joey', '!', 'Ugh', '!', 'What', '?', '!', 'You', 'say', 'that', 'to', 'kids', '?', '!', '!', 'Ross', ',', 'honey', ',', 'it', \"'s\", 'a', 'nice', 'couch', '.', 'It', \"'s\", 'not', 'a', 'magic', 'couch', '.', 'Wait', '!', 'No', ',', 'that', \"'s\", 'ridiculous', '.', 'Come', 'on', ',', 'he', 'lives', 'three', 'blocks', 'away', '!', 'Yeah', '!', 'Are', 'you', 'kiddin', \"'\", '?', 'Oh', '.', 'Oh', '!', 'I', 'can', 'do', 'it', '!', 'Ross', '!', 'Ross', '!', 'Come', 'on', ',', 'I', 'do', \"n't\", 'really', 'want', 'to', 'be', 'doing', 'this', 'right', 'now', '.', 'I', 'am', 'carrying', 'a', 'very', 'heavy', 'couch', '.', 'Fine', '!', 'We', 'went', 'out', '.', 'Ross', '!', '!', 'Oh', 'my', '--', 'ugh', '!', '!', 'You', 'kept', 'count', '?', '!', 'You', 'are', 'such', 'a', 'loser', '!', 'Ross', ',', 'did', \"n't\", 'you', 'say', 'that', 'there', 'was', 'an', 'elevator', 'in', 'here', '?', 'Okay', ',', \"y'know\", 'what', '?', 'There', 'is', 'no', 'more', 'left', ',', 'left', '!', 'Yeah', '.', 'Oh-oh', '!', 'Any', 'chance', 'you', 'think', 'the', 'couch', 'looks', 'good', 'there', '?', 'Hey', ',', 'umm', ',', 'do', 'you', 'guys', 'have', 'that', 'tape', 'measure', '?', 'What', \"'s\", 'up', 'Joey', '?', 'Hey', '!', 'Joey', ',', 'would', 'you', 'mind', 'giving', 'me', 'and', 'Ross', 'a', 'hand', 'moving', 'his', 'couch', '?', 'Thanks', '!', 'I', 'know', '.', 'What', \"'s\", 'up', 'Joe', '?', 'Yeah', '?', 'What', 'are', 'you', 'saying', '?', \"Y'know\", 'honey', ',', 'umm', ',', 'as', 'uh', ',', 'as', 'flattered', 'as', 'I', 'am', 'that', 'uh', ',', 'you', 'saw', 'me', 'first', ',', 'uhh', ',', 'I', 'just', ',', 'I-I', 'do', \"n't\", 'think', 'we', 'should', 'be', 'cranking', 'anything', 'up', '.', 'Yeah', ',', 'well', ',', \"y'know\", 'umm', '...', 'No', 'honey', ',', 'listen', 'I', 'think', 'it', \"'s\", 'a', 'great', 'idea', 'to', 'become', 'friends', 'with', 'someone', 'before', 'you', 'date', 'them', ',', 'but', 'I', 'think', 'the', 'way', 'you', 'do', 'it', 'is', \"y'know\", 'you', 'meet', 'someone', ',', 'become', 'their', 'friend', ',', 'build', 'a', 'foundation', ',', 'then', 'you', 'ask', 'them', 'out', 'on', 'a', 'date', '.', 'Do', \"n't\", 'hit', 'on', 'your', 'existing', 'friends', '!', 'Yeah', '.', 'Yeah', '.', 'Oh', ',', 'but', 'once', 'you', 'find', 'it', ',', 'ohh', 'it', \"'s\", 'so', 'worth', 'the', 'wait', '.', 'Hey', 'Ross', '!', 'I', 'brought', 'reinforcements', '.', 'Well', ',', 'I', 'brought', 'the', 'next', 'best', 'thing', '.', 'Whoa-oh', ',', \"what's-what\", \"'s\", 'that', '?', 'Wow', '!', 'You', 'certainly', 'think', 'a', 'lot', 'of', 'yourself', '.', 'Okay', '!', 'Ross', ',', 'I', 'do', \"n't\", ',', 'I', 'just', 'do', \"n't\", 'think', 'it', \"'s\", 'going', 'to', 'fit', '.', 'I', 'know', ',', 'me', 'neither', '!', 'I', 'mean', ',', 'you', 'had', 'a', 'sketch', '!', 'Hey', '!', 'How', \"'s\", 'it', 'going', '?', 'Did', 'you', 'make', 'any', 'new', 'friends', '?', 'What', '?', '!', 'Why', '?', '!', 'Oh', 'my', 'God', ',', 'Phoebe', ',', 'are', 'you', 'gon', 'na', 'go', 'to', 'jail', '?', '!', 'Good', ',', 'you', 'guys', 'are', 'all', 'here', '!', 'Well', ',', 'I', 'have', 'a', 'job', 'interview', 'at', 'Ralph', 'Lauren', 'tomorrow', '!', 'I', 'know', '!', 'Wh-what', '?', '!', 'Anyway', ',', 'I', \"'m\", 'going', 'to', 'be', 'the', 'coordinator', 'of', 'the', 'woman', \"'s\", 'collection', ',', 'I', \"'ll\", 'work', 'right', 'under', 'the', 'director', ',', 'it', \"'s\", 'the', 'perfect', ',', 'perfect', 'job', 'for', 'me', '!', 'Yeah', '.', 'O-okay', '!', 'Hi', '.', 'Ugh', ',', 'horrible', '!', 'I', 'did', 'the', 'stupidest', ',', 'most', 'embarrassing', 'thing', '!', 'No', '!', 'Ugh', ',', 'it', 'was', 'horrible', '!', 'And-and', 'the', 'interview', 'part', 'went', 'so', 'well', ',', \"y'know\", '?', 'I', 'even', 'made', 'him', 'laugh', '.', 'He', 'said', 'something', 'about', 'a', 'boat', 'and', 'I', 'was', 'like', ',', '``', 'Well', ',', 'yeah', '!', 'If', 'you', \"'ve\", 'got', 'enough', 'life', 'jackets', '!', \"''\", 'Trust', 'me', ',', 'it', 'was', 'actually', ',', 'it', 'was', 'very', 'funny', '.', 'Anyway', ',', 'so', 'we', 'were', 'saying', 'good-bye', 'and', 'ugh', '!', 'All', 'right', ',', 'we', 'were', 'shaking', 'hands', 'and', 'he', 'kinda', 'leaned', 'toward', 'me', '...', \"Y'know\", 'maybe', 'he', 'was', 'going', 'to', 'open', 'the', 'door', ',', 'but', 'I', 'totally', 'miss', 'read', 'him', 'and', 'I', 'uhhh', '...', 'Well', ',', 'I', 'did', \"n't\", 'know', 'what', 'else', 'to', 'do', '!', 'Thanks', 'Chandler', '.', 'I', 'ca', \"n't\", 'believe', 'it', '!', 'I', 'got', 'a', 'second', 'interview', '!', 'What-what', ',', 'wait', 'a', 'minute', ',', 'you', 'do', \"n't\", 'think', 'that', \"'s\", 'why', 'he', 'wants', 'me', 'back', '?', 'I', 'accidentally', 'kissed', 'him', 'in', 'the', 'interview', ',', 'and', 'now', 'he', 'wants', 'me', 'back', \"y'know\", 'of', 'course', ',', \"'cause\", '``', 'Let', \"'s\", 'bring', 'the', 'girl', 'back', 'who', 'kisses', 'everybody', '!', \"''\", 'Oh', 'my', 'God', '!', 'What', 'if', 'he', 'thinks', 'I', \"'m\", 'the', 'kind', 'of', 'girl', 'that-that', 'would', 'just', 'sleep', 'with', 'him', '?', 'Maybe', '.', 'I-I', 'do', \"n't\", 'know', '...', 'Oh', 'God', ',', 'how', 'could', 'I', 'be', 'so', 'stupid', '?', '!', 'Ohh', ',', 'well', 'I', \"'m\", 'not', 'totally', 'back', 'yet', ',', 'but', 'thank', 'you', '.', 'Hi', '!', 'Thank', 'you', '.', 'What', '?', 'Excuse', 'me', '?', 'Wh-whoa', '!', 'All', 'right', ',', 'okay-okay', ',', 'I', 'see', ',', 'I', 'see', 'what', \"'s\", 'going', 'on', 'here', '!', 'Now', 'listen', ',', 'look-look', ',', 'I', \"'m\", 'sorry', 'if', 'I', 'gave', 'you', 'the', 'wrong', 'impression', ',', 'but', 'I', 'am', 'not', 'some', 'hussy', 'who', 'will', 'just', 'sleep', 'around', 'to', 'get', 'ahead', '!', 'Now', 'even', 'though', 'I', ',', 'hey-hey-hey', ',', 'even', 'though', 'I', 'kissed', 'you', ',', 'that', 'does', 'not', 'give', 'you', 'the', 'right', 'to', 'demand', 'sex', 'from', 'me', '.', 'I', 'do', 'not', 'want', ',', 'this', 'job', 'that', 'bad', '.', 'Good', 'day', ',', 'sir', '.', 'Ugh', ',', 'you', 'will', 'not', 'believe', 'what', 'that', 'sleaze-ball', 'from', 'Ralph', 'Lauren', 'did', 'too', 'me', '!', 'Okay-okay', 'that-that', \"'s\", 'amazing', '.', 'How', 'did', 'you', 'know', 'that', '?', 'Oh', '.', 'Ohhhhhhhhh', '.....', 'Ah', ',', 'first', ',', 'I-I', 'would', 'like', 'to', 'say', 'thank', 'you', 'for', 'agreeing', 'to', 'see', 'me', 'again', '.', 'Okay', '.', 'Umm', ',', 'well', ',', 'first', 'I', 'would', 'like', 'to', 'start', 'by', 'apologizing', 'for', 'kissing', 'you', 'and', 'uh', ',', 'for', 'yelling', 'at', 'you', '.', 'Now', 'you', \"'re\", 'probably', 'going', 'to', 'hire', 'one', 'of', 'the', 'people', 'who', 'did', 'not', 'ah', ',', 'who', 'did', ',', 'who', 'did', 'not', 'umm', ',', 'yell', 'at', 'you', 'and', 'storm', 'out', ',', 'and', 'I', 'think', 'that', \"'s\", 'a', 'big', 'mistake', 'and', 'here', \"'s\", 'why', '.', 'I', 'made', 'a', 'huge', 'fool', 'of', 'myself', 'and', 'I', 'came', 'back', ',', 'that', 'shows', 'courage', '.', 'When', 'I', 'thought', 'you', 'wanted', 'sex', 'in', 'exchange', 'for', 'this', 'job', ',', 'I', 'said', 'no', '.', 'That', 'shows', 'integrity', '.', 'And', ',', 'I', 'was', 'not', 'afraid', 'to', 'stand', 'up', 'for', 'myself', 'and', 'that', 'shows', 'courage', '.', 'Okay', 'umm', ',', 'now', 'I', 'know', 'I', 'already', 'said', 'courage', ',', 'but', \"y'know\", 'you', 'got', 'ta', 'have', 'courage', '.', 'And', 'umm', ',', 'and', 'finally', 'when', 'I', 'thought', 'you', 'were', 'making', 'sexual', 'advances', 'in', 'the', 'workplace', ',', 'I', 'said', 'no', 'and', 'I', 'was', 'not', 'litigious', '.', 'So', 'there', 'you', 'go', ',', 'you', 'got', ',', 'you', 'got', 'courage', ',', 'you', 'got', 'integrity', ',', 'you', 'got', 'courage', 'again', ',', 'and', 'not', 'litigious', '.', 'Look', 'Mr', '...', 'Zelner', '!', 'Right', '!', 'I', 'knew', 'that', '!', 'I', 'really', ',', 'really', 'want', 'this', 'job', 'and', 'I', 'think', ',', 'I', 'think', 'I', 'would', 'be', 'really', 'good', 'at', 'it', '.', 'Oh', '!', 'You', 'are', '?', 'Really', '?', 'Oh', 'thank', 'you', '!', 'Oh', '...', 'Oh', ',', 'would', 'it', 'be', 'completely', 'inappropriate', 'to', 'give', 'you', 'a', 'hug', '?', 'Okay', ',', 'well', 'then', 'how', 'about', 'a', 'handshake', '?', 'Oh', 'God', 'I', \"'m\", 'sorry', '!', 'Oh', 'God', ',', 'I', \"'m\", 'sorry', '!', 'I', 'did', 'not', 'mean', 'to', 'touch', 'that', '...', 'I', 'mean', 'you', 'there', '.', 'There', '.', 'Uhh', ',', 'okay', ',', 'so', 'thank-thank', 'you', ',', 'I', \"'m\", 'going', 'to', 'leave', 'now', 'thank', 'you', 'very', 'much', 'uh-huh', ',', 'thank', 'you', 'so', '...', 'Hey', '!', 'I', \"'ll\", 'see', 'you', 'Monday', '!', 'I', 'can', 'not', 'believe', 'Ross', 'is', 'buying', 'this', '!', 'Yeah', '!', 'Oh', 'by', 'the', 'way', ',', 'thank', 'you', 'for', 'loaning', 'us', 'Pamela', 'and', 'Yasmine', '.', 'Okay', ',', 'got', 'ta', 'go', '!', 'Wish', 'me', 'luck', '!', 'Uh', 'well', ',', \"y'know\", 'what', '?', 'I', 'do', \"n't\", 'think', 'if', 'I', 'feel', 'comfortable', 'stealing', 'on', 'my', 'very', 'first', 'day', '...', 'Okay', 'guys', ',', 'way', 'to', 'wish', 'me', 'luck', '!', 'Well', 'umm', ',', 'that', 'one', 'is', 'pretty', 'but', 'uh', ',', 'I', 'just', ',', 'I', 'just', 'love', 'this', 'fabric', 'Sorry', '.', 'Oh', ',', 'what', 'a', 'fun', 'office', '.', 'Oh', 'no', ',', 'my', 'dad', \"'s\", 'a', 'doctor', 'and', 'he', 'would', 'always', 'tell', 'me', 'just', 'horror', 'stories', '...', '...', 'about', 'ghosts', 'and', 'goblins', 'who', 'totally', 'supported', 'the', 'princess', \"'s\", 'right', 'to', 'smoke', '.', '...', 'and', 'then', 'they', 'came', 'back', 'from', 'smoking', 'and', 'they', 'had', 'made', 'all', 'of', 'the', 'decisions', 'without', 'me', '!', 'I', 'know', '!', 'It', \"'s\", 'like', 'I', \"'m\", 'being', 'punished', 'for', 'not', 'having', 'this', 'disgusting', ',', 'poisoning', 'habit', '!', 'I', 'mean', 'what', 'if', 'this', 'keeps', 'happening', '?', \"Y'know\", ',', \"they'll-they\", \"'ll\", 'be', 'outside', 'smoking', ',', 'making', 'all', 'the', 'decisions', 'and', 'I', \"'ll\", 'just', 'be', 'up', 'in', 'my', 'office', 'breathing', 'my', 'stupid', 'clean', 'air', ',', \"y'know\", '?', 'And', 'then', 'when', 'the', 'day', 'comes', 'when', 'Kim', 'wants', 'to', 'promote', 'one', 'of', 'us', ',', 'who', 'do', 'you', 'think', 'she', \"'s\", 'gon', 'na', 'pick', '?', 'Me', 'or', 'Smokey', 'Smokerson', '?', 'Yeah', ',', 'I', 'can', 'do', 'that', '.', 'I', 'would', 'love', 'to', '!', 'Oh', 'well', ',', 'it', \"'s\", 'kinda', 'lonely', 'up', 'there', ',', 'so', 'I', 'just', 'thought', 'I', 'would', 'come', 'out', 'here', 'and', 'get', 'some', 'fresh', 'air', '.', 'Oh', 'great', '!', 'Oh', 'that', \"'s\", 'okay', '.', 'Excuse', 'me', ',', 'can', 'I', ',', 'can', 'I', 'bum', 'one', 'of', 'those', '?', \"Y'know\", 'what', ',', 'actually', '...', 'Okay', ',', 'okay', ',', 'okay', ',', 'what', \"'s\", 'so', 'funny', 'over', 'here', '?', 'Oh', ',', 'I', 'thought', 'you', 'guys', 'meant', 'marijuana', 'cigarettes', ',', \"y'know\", '?', \"Y'know\", 'what', 'I', 'mean', ',', 'like', 'dubbies', '?', 'And', 'I', 'actually', ',', 'I', 'thought', 'to', 'myself', ',', '``', 'Wow', ',', 'those', 'guys', 'are', 'crazy', '!', \"''\", 'But', 'no', ',', 'I', 'actually', 'smoke', 'the', 'regular', 'ones', 'all', ',', 'all', 'the', 'time', '.', 'Oh', ',', 'me', 'too', '.', 'Oh', ',', 'me', 'too', '.', 'Oh', 'it', 'was', 'great', '!', 'It', 'was', 'great', '!', 'I', 'went', 'down', 'there', 'just', 'like', 'you', 'said', ',', \"y'know\", '?', 'And', 'we', 'talked', 'business', '.', 'Kim', 'totally', 'took', 'my', 'opinions', '.', 'Thanks', '!', 'Well-well', 'that', \"'s\", \"'cause\", 'I', 'went', 'down', 'there', 'and', 'they', 'were', 'all', 'smoking', '.', 'This', 'is', 'actually', 'the', 'smell', 'of', 'success', '.', 'I', 'did', 'not', '!', 'All', 'right', ',', 'fine', '!', 'But', 'I', 'had', 'too', '!', 'I', 'had', 'to', 'do', 'it', 'for', 'my', 'career', '!', 'No', 'well', ',', 'no', 'it', \"'s\", 'not', 'that', 'bad', ',', \"y'know\", '?', 'I', 'mean', 'yeah', ',', 'my', 'tongue', 'feels', 'a', 'little', 'fuzzy', 'and', 'these', 'fingers', 'sort', 'of', 'smell', ',', 'I', 'actually', 'feel', 'like', 'I', 'can', 'throw', 'up', '.', 'I', 'am', 'so', 'on', 'board', '!', 'Yeah', ',', 'I', 'did', ',', 'but', \"y'know\", 'what', '?', 'I', 'am', 'really', ',', 'really', 'trying', 'to', 'cut', 'back', ',', \"y'know\", '?', 'Good', 'luck', ',', 'Rach', '.', 'Well', 'then', 'let', \"'s\", 'just', 'quit', '!', 'We', \"'ll\", 'just', 'quit', '!', 'Let', \"'s\", 'all', 'quit', '!', 'Oh', 'but', 'you', 'could', '.', 'You', 'can', '.', 'Absolutely', '!', 'We', 'can', 'help', 'each', 'other', 'out', '!', 'We', 'can', 'get', '--', 'what', 'are', 'those', '--', 'those', 'patches', '!', 'We', 'could', 'be', 'like', 'the', 'Patch', 'Sisters', '!', 'Yes', '!', 'Great', '!', 'Give', 'me', 'those', 'cigs', '!', 'Give', 'it', '!', 'Give', 'it', '!', 'Okay', 'then', '!', 'Hey', '!', 'Hey-hey-hey', '!', '!', 'Come', 'on', 'you', 'guys', '!', 'What', 'are', 'doing', '?', '!', 'I', 'thought', 'we', 'were', 'the', 'patch', 'sisters', '!', 'Well', \"y'know\", 'if', 'you', ',', 'if', 'you', 'started', 'smoking', 'again', 'you', 'could', \"'ve\", 'at', 'least', 'told', 'me', '!', 'Come', 'on', ',', 'give', 'me', 'one', 'of', 'those', '!', 'What', 'are', 'we', 'talking', 'about', '?', 'Oh', 'wait', ',', 'no-no-no', '!', 'Drag', 'me', 'down', '.', 'Drag-drag', 'me', 'down', '.', 'Okay', '.', 'Oh', 'man', '!', 'What', '?', '!', 'What', '?', '!', 'My', 'birthday', \"'s\", 'not', 'for', 'another', 'month', '!', 'Oh', 'my', 'God', '!', 'You', 'guys', 'this', 'is', 'so', 'great', '!', 'I', 'mean', 'it', \"'s\", 'so', 'unexpected', '!', 'I', 'mean', 'Chandler', \"'s\", 'birthday', 'is', 'even', 'before', 'mine', '!', 'Wow', '!', 'This', 'is', 'great', '!', 'Look', 'at', 'all', 'these', 'cups', '!', 'This', 'is', 'so', 'weird', '.', 'Oh', ',', 'okay', ',', 'not', 'so', 'weird', '.', 'I', 'am', 'so', 'proud', 'of', 'Joey', ',', 'I', 'ca', \"n't\", 'believe', 'he', \"'s\", 'going', 'to', 'be', 'on', 'Law', '&', 'amp', ';', 'Order', '!', 'No', 'because', 'first', 'they', 'arrest', 'the', 'guy', 'and', 'then', 'they', 'try', 'him', '.', 'What', \"'s\", 'going', 'on', '?', 'Ross', '!', 'We', 'broke', 'up', 'two', 'years', 'ago', ';', 'you', \"'ve\", 'been', 'married', 'since', 'then', '.', 'I', 'think', 'it', \"'s\", 'okay', 'that', 'we', 'see', 'other', 'people', '.', 'Hm-mmm', '.', 'Okay', ',', \"y'know\", 'what', '?', 'We', 'do', \"n't\", 'need', 'her', 'measurements', '.', 'Big', 'night', '!', 'Oh', ',', 'umm', ',', 'okay', ',', 'yeah', ',', 'I', \"'ll\", 'be', ',', 'yeah', 'I', \"'ll\", 'be', 'right', 'back', '.', 'Here', 'you', 'go', '.', 'Thank', 'you', '!', 'Oh', 'what', ',', 'you-you', 'want', 'both', 'of', 'them', '?', 'Okay', ',', 'okay', ',', 'okay', ',', 'look', ',', 'just', 'do', \"n't\", 'freak', 'out', ',', 'but', 'I', 'kinda', 'lost', 'it', '.', 'I', 'know', 'it', \"'s\", 'in', 'the', 'apartment', ',', 'but', 'I', 'definitely', 'lost', 'it', '.', 'Tell', 'her', 'to', 'wear', 'her', 'own', 'earrings', '.', 'Nooo', '!', 'Nooooo', '!', 'You', 'lent', 'me', 'Monica', \"'s\", 'earrings', '?', '!', 'I', \"'m\", 'not', 'allowed', 'to', 'borrow', 'her', 'stuff', '!', 'Because', 'I', 'lose', 'her', 'stuff', '!', 'Oh', 'boy', ',', 'I', 'just', 'ca', \"n't\", 'watch', '.', 'It', \"'s\", 'too', 'scary', '!', 'Oh', 'yeah', 'well', ',', 'you', 'know', 'me', ',', 'babies', ',', 'responsibilities', ',', 'ahhh', '!', '!', '!', 'Uhh', ',', 'no', ',', 'no', ',', 'it', 'bothered', 'me', 'when', 'he', 'slept', 'with', 'other', 'women', '.', 'But', \"y'know\", ',', 'I', 'never', 'really', 'had', 'anything', 'to', 'worry', 'about', '.', 'Ross', 'was', 'never', 'very', 'good', 'at', 'the', 'flirting', 'thing', '.', 'Oh', '!', \"Y'know\", 'what', '?', 'You', \"'re\", 'right', '!', 'We', 'meet', ',', 'you', 'flirted', 'and', 'then', 'bamn', 'nine', 'years', 'later', 'you', 'had', 'me', '!', 'Ohh', '!', 'Thank', 'God', '!', 'Where', 'was', 'it', '?', 'Okay', 'that', 'is', 'the', 'one', 'we', 'already', 'have', '!', 'What', '?', '!', 'Yeah', '.', 'Joey', ',', 'why', 'do', \"n't\", 'you', 'just', 'tell', 'her', 'what', 'happened', '?', 'It', \"'s\", 'not', 'your', 'fault', '.', 'It', \"'s\", 'not', 'here', 'Pheebs', ',', 'it', \"'s\", 'not', 'here', '.', 'Ohh', ',', 'I', 'went', 'to', 'Joey', 'and', 'Chandler', \"'s\", 'last', 'night', '!', 'Okay', '!', 'Wait', 'a', 'minute', '.', 'Chandler', 'has', 'a', 'jewelery', 'box', '?', 'Hey', '!', 'The', 'earring', '?', 'No', '.', 'But', 'look', ',', 'I', 'found', 'my', 'sunglasses', 'under', 'the', 'couch', '!', 'I', \"'ve\", 'been', 'looking', 'for', 'these', 'since', 'like', 'last', 'summer', '.', 'Okay', ',', 'calm', 'down', ',', 'here', 'they', 'are', '.', 'I', 'do', \"n't\", 'know', ',', 'I', 'do', \"n't\", 'know', '.', 'Oh', 'gosh', ',', 'she', \"'s\", 'going', 'to', 'kill', 'me', '.', 'Ohh', 'that', \"'d\", 'be', 'great', '!', 'Okay', ',', 'wait', 'a', 'minute', '.', 'Wait', 'a', 'minute', ',', 'I-I-I', ',', 'I', 'ca', \"n't\", 'do', 'this', '.', 'Listen', 'honey', ',', 'this', 'is', ',', 'it', \"'s\", 'not', 'Phoebe', \"'s\", 'fault', '.', 'She', 'lent', 'me', 'the', 'earrings', ',', 'and', 'I', 'lost', 'it', '.', 'I', \"'m\", 'so', 'sorry', '.', 'Honey', ',', 'I', 'feel', 'terrible', 'too', '.', 'Your', 'sunglasses', '?', '!', 'Honey', ',', 'you', 'have', 'nothing', 'to', 'prove', '.', 'And', 'if', 'you', 'really', 'like', 'this', 'girl', ',', 'I', 'do', \"n't\", 'flirting', 'is', 'the', 'right', 'thing', 'to', '...', 'I', \"'m\", 'sorry', '.', 'Okay', ',', 'well', ',', 'I', \"'m\", 'gon', 'na', 'clear', 'out', 'some', 'of', 'these', 'boxes', '.', 'Hey', '!', 'Hey', '!', 'Hi', '!', 'Hey-hey-hey', ',', 'I', \"'m\", 'Rachel', '!', 'From', 'upstairs', '?', 'The', 'ones', 'with', 'all', 'the', 'pizza', '?', 'No', '.', 'No', '.', 'Every', 'thing', \"'s\", '--', 'they', \"'re\", 'fine', '.', 'Great', 'pizza', '.', 'But', 'it', \"'s\", 'uh', ',', 'actually', 'umm', 'my', 'friend', 'Ross', '.', 'He', 'uh', ',', 'just', 'gets', 'really', 'nervous', 'when', 'he', \"'s\", 'flirting', '.', 'Yeah', '.', 'I', 'know', ',', 'I', 'know', ',', 'but', 'uh', 'just', ',', 'I', \"'m\", 'telling', 'you', ',', 'once', ',', 'once', 'you', 'get', 'past', 'that', 'part', ',', 'that', 'where', 'it-it', 'just', 'feels', 'like', 'you', 'wan', 'na', 'die', ',', \"he's-he\", \"'s\", 'really', 'a', 'good', 'person', '.', 'Yeah', '.', \"I'm-I\", \"'m\", 'telling', 'you', 'he', \"'s\", 'really', 'sweet', 'and', 'he', \"'s\", 'really', 'funny', 'and', 'he', \"'s\", 'just', 'ugh', ',', 'got', 'a', 'good', 'heart', '.', 'And', 'besides', ',', 'I', \"y'know\", ',', 'I', 'think', 'he', 'really', 'likes', 'you', '.', 'Well', \"y'know\", ',', 'we', 'have', '7', 'people', 'and', 'like', '10', 'pizzas', ',', 'what', 'do', 'you', 'think', '?', 'Hey', 'Ross', '?', 'Umm', ',', 'I', 'just', 'ran', 'into', 'Caitlin', 'in', 'the', 'hallway', 'and-and', 'uh', ',', 'you', 'must', 'be', 'getting', 'better', 'at', 'this', 'flirting', 'stuff', 'than', 'I', 'thought', '.', 'Well', ',', 'I', 'do', \"n't\", 'get', 'it', ',', 'but', 'she', 'wanted', 'me', 'to', 'give', 'you', 'her', 'phone', 'number', '.', 'Yeah', '!', 'I-I-I', 'did', \"n't\", '!', 'I', 'did', \"n't\", '!', 'She', 'thought', 'you', 'were', 'cute', '.', 'Yay', '!', 'Hey', '!', 'Ohh', ',', 'thank', 'God', '!', 'Finally', '!', 'Ohh', ',', 'it', \"'s\", 'me', 'and', 'La', 'Poo', '!', 'Wow', '!', 'I', 'miss', 'that', 'dog', '.', 'Great', '!', 'Thanks', '!', 'Okay', '.', 'Oops', '.', 'Sorry', '!', 'Well', ',', 'good', 'thing', 'you', 'number', 'all', 'of', 'them', ',', 'huh', '?', 'Ohhhh', '.', 'Honey', ',', 'honey', ',', 'honey', ',', 'it', \"'s\", 'okay', ',', 'it', \"'s\", 'okay', 'honey', '.', 'I', \"'m\", 'gon', 'na', 'fix', 'you', 'a', 'drink', ',', 'huh', '?', 'Maybe', 'a', 'margarita', '?', 'No', 'honey', ',', 'it', \"'s\", 'okay', '!', 'Listen', ',', 'I', \"'ll\", 'got', 'to', 'Ross', \"'s\", 'and', 'get', 'the', 'blender', ',', 'you', 'get', 'all', 'the', 'margarita', 'stuff', 'ready', '.', 'Okay', ',', 'you', 'want', 'me', 'to', 'stop', 'at', 'the', 'ATM', '?', 'What', '?', '!', 'Ohh', 'please', 'do', \"n't\", 'be', 'from', 'a', 'real', 'dinosaur', '!', 'Please', '!', 'Please', '!', 'Please', '!', 'Please', '!', 'Please', '!', 'Please', '!', 'Please', '!', 'Please', '!', 'Made', 'in', 'Mexico', '!', 'Yes', '!', '!', 'Ugh', ',', 'who', 'would', 'buy', 'this', '?', '!', 'Hey', '!', 'What', \"'s\", 'up', '?', '!', 'So', 'all', 'we', 'have', 'is', 'ice', '?', 'Okay', '.', 'Oh', '.', 'Oh', '!', 'I', 'know', '!', 'What', '?', '!', 'We', 'ca', \"n't\", 'do', 'that', '!', 'Noo', '!', 'Oh', 'no', '!', 'No', '!', 'God', 'no', '!', 'He', 'should', 'not', 'get', 'back', 'together', 'with', 'her', '.', 'I', 'know', 'that', '!', 'You', 'know', 'that', '!', 'Even', 'Ross', 'knows', 'that', '!', 'But', 'that', 'still', 'doesn�t', 'give', 'us', 'the', 'right', 'to', 'erase', 'his', 'message', '!', 'I', 'do', \"n't\", 'think', 'he', \"'s\", 'the', 'one', 'who', 'needs', 'help', '.', 'Ugh', '!', 'Okay', ',', 'you', 'are', 'crazy', '!', 'I', \"'m\", 'sorry', ',', 'but', 'she', 'sounded', 'generally', 'upset', '!', 'I', 'mean', ',', 'listen', '!', 'Noooooooo', '!', 'No', ',', 'wait', '.', 'Wait', '.', 'No', ',', 'Monica', '!', 'Monica', '!', 'We', 'have', 'to', 'fix', 'this', '!', 'Yeah', 'well', 'unless', 'we', 'tell', 'him', '.', 'Oh', ',', 'maybe', 'that', \"'s\", 'Emily', 'calling', 'back', 'to', 'leave', 'the', 'exact', 'same', 'message', '.', 'Right', '?', 'Hey', '!', 'Hi', '!', 'Hey', '!', \"Y'know\", 'what', '?', 'You', 'are', 'in', 'our', 'apartment', 'all', 'the', 'time', '!', 'Okay', '?', 'This', 'is', ',', 'this', 'is', 'just', 'a', 'drop', 'in', 'the', 'bucket', 'mister', '!', 'Okay', ',', 'just', 'a', 'little', 'scared', '.', 'What', \"'s\", 'going', 'on', 'Ross', '?', 'What', '?', '!', 'What', '?', 'What', 'happened', '?', '!', 'Yeah', '!', 'Really', '?', '!', 'Because', 'a', 'car', 'backfired', '?', 'Well', ',', 'I-I-I', 'do', \"n't\", 'know', 'how', 'this', 'fits', 'into', 'your', 'whole', '``', 'seizing', \"''\", 'thing', 'but', 'um', ',', 'Emily', 'called', 'you', 'today', '.', 'No', ',', 'she', 'left', 'a', 'message', '.', 'But', 'it-it', 'kinda', 'got', 'erased', '.', 'There', \"'s\", 'just', 'something', 'wrong', 'with', 'your', 'machine', '.', 'Well', ',', 'uh', 'something', 'about', 'having', 'second', 'thoughts', 'about', 'the', 'wedding', 'and', 'did', 'you', 'guys', 'make', 'a', 'mistake', 'breaking', 'up', 'and', 'uh', ',', 'she', 'wants', 'you', 'to', 'call', 'her', '.', 'Now', ',', 'that-that', 'was', 'a', 'good', 'thing', 'that', 'I', 'told', 'you', ',', 'right', '?', 'Okay', '.', 'Thank', 'you', '!', 'Thank', 'you', '!', 'Because', '...', 'I', \"'m\", 'sorry', ',', 'all', 'right', '.', 'Because', \"y'know\", 'what', '?', 'She', 'did', \"n't\", 'want', 'me', '...', 'not', 'important', '.', 'The', 'point', 'is', ',', 'I', 'was', 'right', '.', 'You', \"'re\", 'decision', '.', 'Okay', '?', 'I', 'was', 'right', '.', 'You', \"'re\", 'decision', '.', 'Okay', ',', 'no', ',', 'that', \"'s\", 'not', 'the', 'right', 'decision', '.', 'That', \"'s\", 'not', ',', 'that', \"'s\", 'not', 'right', ',', 'no', 'Ross-Ross', ',', 'come', 'on', '!', 'I', 'mean', ',', 'that', 'woman', 'made', 'you', 'miserable', '!', 'Okay', ',', 'Ross', ',', 'do', 'you', 'really', 'want', 'to', 'get', 'back', 'into', 'that', '?', 'Ugh', ',', 'Ross', '!', 'That', 'was', 'not', 'a', 'near', 'death', 'experience', '!', 'That', 'was', 'barely', 'an', 'experience', '!', 'Okay', ',', \"y'know\", 'what', '?', 'Maybe', ',', 'this', 'is', 'not', 'about', 'seizing', 'stuff', '.', 'Maybe', 'this', 'is', 'about', 'escaping', 'stuff', '.', 'I', 'mean', ',', 'look-look', 'today', 'you', 'escaped', 'death', ',', \"y'know\", '?', 'And', 'maybe', 'this', 'is', 'a', 'chance', 'for', 'you', 'to', 'escape', 'getting', 'back', 'together', 'with', 'Emily', '?', 'Well', ',', 'there', 'you', 'go', '!', 'Close', 'call', 'day', '.', 'Ohh', ',', 'honey', 'no', 'problem', '.', 'Okay', '.', 'Oh', '?', 'No', '.', 'Yeah', '.', 'Yeah', ',', 'uh', 'you-you', 'probably', 'need', 'that', 'for', 'stamps', ',', 'right', '?', 'Hey', ',', 'you', 'guys', '...', 'Is', 'Monica', 'here', '?', 'All', 'right', 'listen', 'umm', ',', 'I', 'just', 'bought', 'something', 'I', \"'m\", 'not', 'sure', 'she', \"'s\", 'gon', 'na', 'like', 'it', ',', 'and', 'it', \"'s\", 'gon', 'na', 'seem', 'a', 'little', 'crazy', ',', 'but', 'this', 'is', 'something', 'that', 'I', 'wanted', 'since', 'I', 'was', 'a', 'little', 'girl', '.', 'Noo', '!', 'I', 'wish', '!', 'Okay', ',', 'you', 'ready', '?', 'Okay', '!', 'Check', 'it', 'out', '!', 'It', \"'s\", 'a', ',', 'it', \"'s\", 'a', 'cat', '!', 'Yes', 'it', 'is', '!', 'Excuse', 'me', '!', 'But', 'this', 'is', 'a', 'purebred', ',', 'show-quality', 'Sphinx', 'cat', '!', 'Well', ',', 'it', 'was', 'a', 'little', 'extravagant', ',', 'but', 'I', 'a', 'pretty', 'good', 'deal', '.', 'A', 'thousand', 'bucks', '.', 'All', 'right', 'listen', 'ball', 'boys', '!', 'My', 'grandmother', 'had', 'one', 'of', 'these', 'when', 'I', 'was', 'a', 'little', 'girl', 'and', 'it', 'was', 'the', 'sweetest', 'thing', '!', 'I', 'mean', 'it', 'was', 'so', 'cute', ',', 'it', 'would', 'sit', 'in', 'my', 'lap', 'and', 'purr', 'all', 'day', 'long', ',', 'and', 'I', 'would', 'drag', 'a', 'shoestring', 'on', 'the', 'ground', 'and', 'he', 'would', 'chase', 'it', '!', 'Ugh', '!', 'Look', 'you', 'guys', ',', 'I', \"'m\", 'really', 'excited', 'about', 'this', '!', 'Okay', '?', 'I', 'do', \"n't\", 'care', 'what', 'you', 'think', '!', 'I', \"'m\", 'gon', 'na', 'go', 'set', 'up', 'a', 'little', 'litter', 'box', 'for', 'Mrs.', 'Whiskerson', '.', 'Well', ',', 'what', 'am', 'I', 'gon', 'na', 'call', 'her', '?', 'Fluffy', '?', '!', 'Hey', '.', 'Oh', ',', 'wow', '!', 'Congratulations', ',', 'that', \"'s\", 'quite', 'a', 'waste', 'of', 'time', '.', 'Yeah', '?', 'Well', ',', 'it', \"'s\", 'my', 'cat', '.', 'Oh', 'yeah', ',', 'I', 'got', 'a', 'cat', '.', 'You', 'guys', 'this', 'cat', 'is', 'nothing', 'like', 'my', 'grandmother', \"'s\", 'cat', '.', 'I', 'mean', ',', 'it', \"'s\", 'not', 'sweet', ',', 'it', \"'s\", 'not', 'cute', ',', 'I', 'even', 'dragged', 'that', 'little', 'string', 'on', 'the', 'ground', ',', 'and', 'it', 'just', 'flipped', 'out', 'and', 'scratched', 'the', 'hell', 'out', 'of', 'me', '.', 'And', 'I', 'swear', ',', 'I', 'know', 'this', 'sounds', 'crazy', ',', 'but', 'every', 'time', 'this', 'cat', 'hisses', 'at', 'me', 'I', 'know', 'it', \"'s\", 'saying', ',', '``', 'Rachel', '!', \"''\", 'Well', ',', 'I', 'was', 'gon', 'na', 'let', 'you', 'play', 'with', 'it', '.', 'I', 'give', 'up', 'you', 'guys', ',', 'I', 'do', \"n't\", 'know', 'what', 'I', \"'m\", 'going', 'to', 'do', 'with', 'this', 'thing', '!', 'I', 'tried', '!', 'They', 'wo', \"n't\", 'take', 'her', 'back', '.', 'Well', ',', 'they', 'said', 'would', 'but', 'they', 'would', 'only', 'give', 'me', 'store', 'credit', '.', 'I', 'mean', ',', 'what', 'am', 'I', 'going', 'to', 'do', ',', 'get', 'a', 'thousand', 'regular', 'cats', '?', 'No', 'Mon', 'that', \"'s\", 'not', 'the', 'point', '.', 'I', \"'m\", 'out', 'a', 'thousand', 'dollars', ',', 'I', \"'m\", 'all', 'scratched', 'up', ',', 'and', 'I', \"'m\", 'stuck', 'with', 'this', 'stupid', 'cat', 'that', 'looks', 'like', 'a', 'hand', '!', 'Show', 'cat', '!', 'Quality', 'show', 'cat', '!', 'Show', 'cat', '!', 'It', \"'s\", 'not', 'a', 'baby', '!', 'It', \"'s\", 'a', 'cat', '!', 'Oh', 'no', '!', 'No', '!', 'It', \"'s\", 'actually', '...', 'it', \"'s\", 'very', 'sweet', '.', 'It', \"'s\", 'very', 'sweet', '.', 'Look', '!', 'Yeah', ',', 'do', 'you', 'want', 'it', '?', 'Well', ',', 'so', 'then', 'what', 'are', 'you', 'doing', 'to', 'me', '?', 'Okay', '?', 'Just', 'get', 'out', 'of', 'here', '!', 'All', 'right', '?', 'Move', 'on', '!', 'Yes', '!', 'Thank', 'you', '!', 'Exactly', '!', 'You', 'want', 'it', '?', 'Oh', ',', 'terrific', '!', 'That', \"'ll\", 'be', '$', '2,000', '.', 'Okay', ',', 'a', 'thousand', '.', 'Well', ',', 'I', 'do', ',', 'but', 'you', \"'re\", 'just', 'gon', 'na', 'have', 'to', 'actually', 'look', 'at', 'this', 'as', 'more', 'of', 'an', 'investment', 'than', 'a', 'cat', '.', 'Obviously', 'you', 'know', 'how', 'to', 'haggle', ',', 'so', 'I', \"'m\", 'not', 'gon', 'na', 'try', 'and', 'take', 'you', 'on', '.', 'Okay', '?', 'So', '$', '800', 'and', 'I', 'do', \"n't\", 'call', 'the', 'cops', 'because', 'you', \"'re\", 'robbing', 'me', 'blind', '!', 'Blind', '!', 'Just', 'take', 'cat', ',', 'leave', 'the', 'money', ',', 'and', 'run', 'away', '!', 'Run', 'away', '!', 'Damnit', '!', 'Cat', ',', 'ca', \"n't\", 'you', 'at', 'least', 'smile', 'or', 'something', '?', '!', 'Okay', ',', 'did', 'anybody', 'just', 'hear', 'that', '?', 'Anybody', '?', 'It', \"'s\", 'not', '!', 'I', \"'m\", 'defrosting', 'a', 'chicken', '.', 'Oh', ',', 'I', 'uh', 'sold', 'Mrs.', 'Whiskerson', '.', 'Yeah', ',', '15', 'hundred', 'dollars', '.', 'Oh', 'yeah', ',', 'there', 'you', 'go', '.', 'Oh', 'good', ',', 'great', '!', \"I'll-I\", \"'ll\", 'keep', 'that', 'in', 'mind', '.', 'Phoebe', '!', 'It', \"'s\", '6', \"o'clock\", 'in', 'the', 'morning', '!', 'Why', 'are', \"n't\", 'you', 'at', 'Gary', \"'s\", '?', 'Phoebe', ',', 'are', 'you', 'okay', '?', 'Phoebe', ',', 'honey', ',', 'wan', 'na', 'get', 'some', 'breakfast', '?', 'Yeah', ',', 'it', 'is', 'amazing', 'it', 'lasted', 'that', 'long', '.', 'No', ',', 'I', 'meant', 'with', 'the', 'dropper', 'over', 'here', '.', 'Well', ',', 'my', 'eye', 'is', 'a', 'little', 'itchy', '.', 'Richard', '?', 'I', \"'m\", 'not', 'gon', 'na', 'go', 'see', 'your', 'ex-boyfriend', '!', 'Well', ',', 'I', \"'m\", 'sorry', 'I', \"'m\", 'not', 'going', 'to', 'an', 'eye', 'doctor', '!', 'Ross', '!', 'Come', 'on', '!', 'That', \"'s\", 'all', 'right', '!', 'Fine', '--', 'Okay', ',', 'I', 'have', 'a', 'weird', 'thing', 'about', 'my', 'eye', '.', 'Can', 'we', 'not', 'talk', 'about', 'it', 'please', '?', 'Monica', '!', 'Come', 'on', '!', 'Ross', '!', 'Stop', 'it', '!', 'Come', 'on', '!', 'Chandler', '!', 'Just', 'stop', 'it', '!', 'Come', 'on', '!', 'All', 'right', '!', 'Let', \"'s\", 'get', 'this', 'over', 'with', '!', 'Ugh', '!', 'Ohhh', '!', 'No', '!', 'Look', 'what', 'I', 'did', '!', 'Oh', ',', 'I', 'mean', ',', 'look', 'at', 'this', 'mess', '!', 'I', 'mean', ',', 'we', \"'re\", 'probably', 'gon', 'na', 'have', 'to', 'clean', 'this', 'up', '!', \"Y'know\", '?', 'We', \"'re\", 'gon', 'na', 'have', 'to', 'reschedule', '!', 'Oh', 'my', 'God', '!', 'What', 'does', 'that', 'thing', 'do', '?', 'All', 'right', ',', 'I', \"'m\", 'outta', 'here', '!', 'Hey', '!', 'So', 'were', 'done', 'then', '!', 'Okay', '.', 'Uh-huh', '.', 'Okay', '.', 'What', '?', '!', 'All', 'right', '.', 'I', \"'m\", 'sorry', '.', 'All', 'right', ',', 'I', \"'ll\", 'just', 'stay', 'in', 'here', 'this', 'time', '.', 'Okay', '.', 'Uh-huh', '.', 'Okay', '.', 'Okay', '.', 'Okay', '!', 'Great', '!', '!', 'It', 'was', 'very', ',', 'very', 'nice', 'to', 'meet', 'you', 'sir', '--', 'Ow', '!', 'Hey', '!', 'What', 'are', 'you', 'doing', '?', '!', 'Are', 'you', 'crazy', '!', 'Yeah', ',', 'no', ',', 'I', \"don't-I\", 'do', \"n't\", 'put', 'things', 'in', 'my', 'eye', '.', 'Great', '!', 'Okay', ',', 'just', 'give', 'me', 'the', 'damn', 'drops', '!', \"Y'know\", ',', 'I-I', 'got', 'ta', 'tell', 'ya', ',', 'those', 'eye', 'drops', 'are', 'a', 'miracle', '.', 'My', 'eye', 'is', 'a', '100', '%', 'better', '.', 'Damn', '!', 'Bye', 'you', 'guys', '!', 'Oh', 'honey', ',', 'I', \"'ll\", 'say', 'good-bye', 'to', 'you', 'at', 'the', 'car', 'if', 'you', 'do', \"n't\", 'mind', 'the', 'puss', '.', 'Well', ',', 'wait', 'a', 'minute', '!', 'The', 'puss', 'is', 'good', '!', 'It', 'means', 'it', \"'s\", 'healing', '!', 'Oh', ',', 'did', 'you', 'beat', 'him', 'at', 'a', 'board', 'game', '?', 'He', 'turns', 'into', 'such', 'a', 'baby', 'when', 'he', 'starts', 'to', 'lose', '.', 'Eh', '!', 'Stop', 'it', '!', 'Okay', '.', 'Okay', ',', 'then', \"y'know\", 'what', '?', 'Help', 'me', '!', 'I', 'need', 'help', '!', 'I', 'ca', \"n't\", 'do', 'this', '!', 'All', 'right', '!', 'All', 'right', '.', 'Yes', '!', 'Okay', '.', 'Okay', ',', 'they', 'are', '.', 'Four', '.', 'Really', '?', '!', 'Okay', '!', 'Great', '!', 'Okay', '.', 'Well', ',', 'well', ',', 'you', 'said', 'it', 'was', 'practice', '!', 'Because', 'I', 'knew', 'you', 'were', 'lying', '!', 'What', 'are', 'you', '?', 'Monica', '!', '!', 'Stop', 'it', '!', '!', 'Oh', 'my', 'God', '!', 'Stop', 'it', '!', 'Oh', 'my', 'God', '!', 'You', 'really', 'are', 'freakishly', 'strong', '!', 'Monica', '!', 'Stop', 'it', '!', 'Wow', ',', \"y'know\", 'if', 'Joey', 'and', 'Chandler', 'walked', 'in', 'right', 'now', ',', 'we', 'could', 'make', 'a', 'fortune', '!', 'Yep', '!', 'What', '?', '!', '!', 'Stop', 'it', '!', 'Stop', 'it', '!', 'Oh', 'my', 'God', '!', 'Oh', '!', 'Pheebs', '?', 'Could', 'you', 'get', 'that', '?', 'Please', '?', 'No', '!', 'No', '!', 'It', \"'s\", 'just', 'that', 'all', 'the', 'people', 'in', 'the', 'entire', 'world', 'that', 'I', 'want', 'to', 'talk', 'to', 'are', 'right', 'here', '.', 'Sucker', '!', 'Hi', '!', 'Well', ',', 'I', 'guess', 'I', 'could', 'take', 'a', 'couple', 'days', 'off', 'work', '.', 'Oh', 'no', ',', 'wait', 'a', 'minute', ',', 'wait', ',', 'I', \"'ve\", 'got', 'a', 'presentation', 'tomorrow', '.', 'I', 'ca', \"n't\", 'miss', 'that', '.', 'That', 'sounds', 'great', '.', 'Okay', '.', 'Yeah', ',', 'that', 'would', 'be', 'nice', 'actually', ',', 'to', 'have', 'the', 'apartment', 'to', 'myself', 'for', 'a', 'night', '.', 'No', '!', 'So', 'I', 'can', 'be', 'by', 'myself', '.', \"Y'know\", '?', 'Have', 'a', 'little', 'alone', 'time', '.', 'No', '!', 'Phoebe', 'just', 'because', 'I', \"'m\", 'alone', 'doesn�t', 'mean', 'I', 'wan', 'na', 'walk', 'around', 'naked', '.', 'I', 'mean', ',', 'you', 'live', 'alone', ',', 'you', 'do', \"n't\", 'walk', 'around', 'naked', '.', 'Oh', '!', 'Look', 'what', 'happened', '!', 'Huh', ',', 'check', 'me', 'out', '!', 'I', \"'m\", 'in', 'my', 'kitchen', '...', 'naked', '!', 'I', \"'m\", 'picking', 'up', 'an', 'orange', '.', 'I', \"'m\", 'naked', '!', 'Lighting', 'the', 'candles', ',', 'naked', ',', 'and', 'carefully', '.', 'Love', 'to', 'love', 'ya', 'baby', '!', 'Ow', '!', 'Love', 'to', 'love', 'ya', 'baby', '!', 'Ow', '!', 'Love', 'to', 'love', 'ya', ',', 'baby', '!', 'Darnit', '!', 'Ugh', '.', 'Uh', ',', 'yeah', ',', 'if', 'you', 'want', 'too', '.', 'Yeah', ',', 'sure', '?', 'And', 'um', ',', 'what-what', 'is', 'that', 'Ross', '?', 'What', '?', '!', 'Are', 'you', 'crazy', '?', 'Oh', 'God', ',', 'you', 'saw', 'me', '?', '!', 'Oh', '!', 'Noo', '!', '!', 'No', '!', 'You', 'thought', ',', 'you', 'actually', 'thought', 'I', 'wanted', 'to', 'have', 'sex', 'with', 'you', '?', '!', 'Ohh', 'wow', '!', 'I�m', 'sorry', ',', 'but', 'Ross', 'you', 'kicked', 'off', 'your', 'shoes', '!', 'Yes', 'of', 'course', ',', 'absolutely', '!', 'You', \"'re\", 'right', '.', 'I', \"'m\", 'sorry', '.', 'Yes', '.', 'Okay', '.', 'Oh', 'wait', '!', 'One', 'more', 'thing', 'umm', ',', 'do-do', 'we', 'still', 'need', 'to', 'uh', 'settle', 'the', 'question', 'of', '``', 'us', '?', \"''\", 'Okay', 'umm', ',', 'Ross', '?', \"I'm-I\", \"'m\", 'really', 'warm', ',', 'so', 'I', \"'m\", 'going', 'to', 'be', 'taking', 'off', 'my', 'sweater', '.', 'Now', ',', 'I', \"'m\", 'just', 'letting', 'you', 'know', 'that', 'this', 'is', 'not', 'an', 'invitation', 'to', 'the', 'physical', 'act', 'of', 'love', '.', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'done', '.', 'I', \"'m\", 'done', '.', 'No', ',', 'not', 'really', '.', 'I', 'mean', 'you', \"'ve\", 'seen', 'me', 'naked', 'hundreds', 'of', 'times', '.', 'Okay', '.', 'All', 'right', ',', 'that', \"'s\", 'true', '!', 'But', \"y'know\", 'I', 'just', 'do', \"n't\", 'embarrass', 'that', 'easily', '.', 'No', ',', 'I', 'do', \"n't\", '!', 'Ross', ',', 'I', 'think', 'I', \"'m\", 'just', 'a', 'more', 'secure', 'person', 'than', 'you', 'are', '.', 'Yeah', '.', 'Yeah', ',', 'all', 'right', '.', 'All', 'right', '!', 'Just', 'keep', 'walkin', \"'\", '!', 'All', 'right', '?', 'Ross', '!', 'What', 'are', 'you', '...', 'I', \"'m\", 'sorry', 'sir', '.', 'I', 'just', ',', 'I', 'think', 'he', 'just', 'really', 'likes', 'you', '.', 'Hi', '!', 'Yes', ',', 'I', \"'m\", 'sorry', '.', 'Do', 'you', 'have', 'any', 'extra', 'pants', '?', 'Umm', ',', 'my', 'friend', 'seems', 'to', 'have', 'had', 'a', 'little', 'accident', '.', 'Yes', ',', 'I', 'did', '.', 'Thank', 'you', 'very', 'much', ',', 'it', 'was', 'excellent', '.', 'Ahh', '.', 'Hello', '!', 'Ohh', ',', 'kids', 'love', 'me', '.', 'Hi', '!', 'Pancho', 'Vila', '?', 'What', 'are', 'you', 'talking', 'about', 'Pheebs', '?', 'I', 'do', \"n't\", '...', 'Oh', 'my', 'God', ',', 'you', 'drew', 'on', 'me', '?', '!', 'Ross', ',', 'I', 'have', 'been', 'walking', 'around', 'like', 'this', 'since', 'the', 'plane', '!', 'I', 'can', '...', 'you', 'have', 'so', 'crossed', 'a', 'line', '.', 'All', 'right', ',', 'it', 'wo', \"n't\", 'come', 'off', '!', 'It', 'wo', \"n't\", 'come', 'off', '!', 'No', ',', 'actually', 'I', 'took', 'it', 'off', 'then', 'I', 'drew', 'it', 'back', 'on', '.', 'Hi', '!', '!', 'Hi', '.', 'What', '?', '!', 'What', 'else', 'did', 'he', 'say', '?', 'Ross', ',', 'no', '!', 'There', 'is', 'no', 'way', 'I', 'am', 'leaving', 'this', 'room', 'looking', 'like', 'this', '!', 'Ross', ',', 'I', 'am', 'a', 'human', 'doodle', '!', '!', 'Okay', ',', 'I', 'need', 'a', ',', 'I', 'need', 'a', 'drink', '!', 'Macadamia', 'nut', '?', 'Hm-mmm', '!', 'Nope', '!', 'Oh', 'my', 'God', ',', 'I', \"'m\", 'starting', 'to', 'look', 'like', 'my', 'great', 'aunt', ',', 'Muriel', '.', 'Hit', 'me', '!', 'I', 'bet', '20', '.', 'Hit', 'me', '.', 'Hit', 'me', '.', 'Hit', 'me', '.', 'Hit', 'me', '.', 'Hit', 'me', '.', 'Hit', 'me', '.', 'Hit', 'me', '.', 'Yeah', ',', 'and', 'also', 'we', 'need', 'more', 'umm', ',', 'drinks', '.', 'Hold', 'on', 'a', 'second', '.', 'Whup', ',', 'okay', '.', 'Hello', '!', 'Vegas', '?', 'Yeah', ',', 'we', 'would', 'like', 'some', 'more', 'alcohol', ',', 'and', \"y'know\", 'what', 'else', '?', 'We', 'would', 'like', 'some', 'more', 'beers', '.', 'Hello', '?', 'Ohh', ',', 'I', 'forgot', 'to', 'dial', '!', 'Ohh', ',', 'I', 'love', 'Joey', '!', 'Joey', 'lives', 'with', 'a', 'duck', '!', 'Hey', '!', 'I', \"'m\", 'doin', \"'\", 'good', ',', 'baby', '.', 'How', 'you', 'doin', \"'\", '?', 'Ohhh', '!', '!', 'Oops', '!', 'All', 'right', ',', 'so', 'what', 'do', 'you', 'want', 'to', 'do', 'now', '?', 'Okay', ',', \"y'know\", 'what', '?', 'There', \"'s\", 'only', 'one', 'way', 'I', \"'m\", 'leaving', 'this', 'hotel', 'room', '.', 'Good', 'luck', 'to', 'ya', '!', 'Wow', '!', 'Hello', '!', 'Well', ',', 'hello', ',', 'Mr.', 'Rachel', '!', 'Wait', '!', 'Okay', '!', 'Well', ',', 'hello', ',', 'Mr.', 'Rachel', '!', 'Wait', '!', 'Okay', '!', 'Ohhh', '!', 'I', 'don�t', 'know', '.', 'Do-do', 'you', 'have', 'any', 'clothes', 'on', '?', 'Really', '?', '!', 'Oh', '!', 'I', 'remember', 'laughing', '!', 'I', 'laughed', 'a', 'lot', '.', 'Ohh', ',', 'I', 'mean', ',', 'we', 'were', 'really', 'drunk', '.', 'I�m', 'just', 'glad', 'we', 'didn�t', 'do', 'anything', 'stupid', '.', 'I', 'don�t', 'know', '.', 'What', 'do', 'you', 'mean', 'last', 'night', '?', 'Nothing', ',', 'nothing', 'uh', ',', 'happened', 'last', 'night', '.', 'Who', 'got', 'married', '?', '!', 'No', ',', 'we', 'didn�t', 'get', 'married', '!', 'That�s', 'ridiculous', '!', 'Oh', 'my', 'God', '.', 'No', '!', 'Well', ',', 'I', 'guess', 'we', 'just', 'find', 'a', 'divorce', 'lawyer', '?', 'Hey', ',', 'hubby', '!', 'Uh-huh', '.', 'Okay', '!', 'So', ',', 'we�ll', 'just', 'stay', 'married', '.', 'And', 'I', 'will', 'make', 'everyone', 'call', 'me', 'Mrs.', 'Geller', '!', 'Okay', ',', 'see', 'now', 'I�m', 'scared', 'because', 'I', 'don�t', 'actually', 'think', 'you�re', 'kidding', '.', 'What-wh-what', 'so', 'we�ll', 'just', 'stay', 'married', 'forever', '?', '!', 'Ohh', ',', 'okay', ',', 'I�m', 'sorry', '.', 'You�re', 'right', '.', 'Y�know', 'what', '?', 'We', 'absolutely', 'can', 'stay', 'married', ',', 'because', 'I', 'was', 'under', 'the', 'impression', 'that', 'the', 'boxes', 'were', 'far', 'away', 'from', 'each', 'other', '.', 'All', 'right', ',', 'look', ',', 'just', 'please', ',', 'take', 'a', 'moment', 'here', 'and', 'think', 'about', 'what', 'you�re', 'asking', 'of', 'me', '.', 'You', 'are', 'asking', 'me', 'to', 'be', 'your', 'wife', '!', 'Hey', '!', 'No', '!', 'Ross', ',', 'come', 'on', '!', 'No', '!', 'Listen', ',', 'look', 'I', 'thought', 'a', 'lot', 'about', 'how', 'to', 'tell', 'you', 'this', 'and', 'the', 'bottom', 'line', ',', 'Ross', ',', 'is', 'we', 'can', 'not', 'stay', 'married', '.', 'Oh', 'b-b-but', 'it', 'is', '!', 'Oh', 'Ross', ',', 'come', 'on', '!', 'This', 'is', 'not', ',', 'this', 'is', 'not', 'a', 'marriage', '!', '!', 'This', 'is', 'the', 'world�s', 'worst', 'hangover', '!', 'Ross', ',', 'listen', ',', 'if', 'you', 'do', 'not', 'get', 'this', 'annulment', ',', 'I', 'will', '!', 'Thank', 'you', '.', 'Hey-hey', 'umm', ',', 'uh', ',', 'is', 'there', ',', 'is', 'there', 'any', 'such', 'thing', 'as', 'an', 'annulment', 'shower', '?', 'Huh', ',', 'that�s', 'funny', '.', 'You', 'look', 'like', 'you�re', 'gon', 'na', 'be', 'the', '...', 'All', 'right', '.', 'Okay', 'Chandler', ',', 'enjoy', 'your', 'handful', '.', 'Hey', ',', 'so', 'did', 'everything', 'go', 'all', 'right', 'with', 'the', 'annulment', '?', 'Ross', ',', 'thank', 'you', '.', 'Hey', ',', 'do', 'you', 'guys', 'wan', 'na', 'go', 'see', 'a', 'movie', '?', 'Pheebs', '?', 'Okay', ',', 'umm', ',', 'I�m', 'gon', 'na', 'get', 'my', 'sweater', '.', 'Hey', ',', 'so', 'did', 'everything', 'go', 'okay', 'with', 'the', 'annulment', '?', 'Ross', ',', 'thank', 'you', '.', 'Hey', ',', 'do', 'you', 'guys', 'wan', 'na', 'go', 'see', 'a', 'movie', '?', 'Okay', ',', 'umm', ',', 'I�m', 'gon', 'na', 'get', 'my', 'sweater', '.', 'Oh', '?', 'Yeah', '!', 'Sure', '!', 'Oh', 'but', 'Phoebe', ',', 'we�re', 'gon', 'na', 'be', 'late', 'for', 'the', 'movie', '.', 'Yeah', ',', 'we�re', ',', 'we�re', 'actually', 'just', 'gon', 'na', 'walk', '�cause', 'it�s', 'right', 'up', 'there', 'at', 'the', 'Angelica', '.', 'Okay', ',', 'stop-stop', '!', 'Phoebe', '?', '!', 'What', 'was', 'that', '?', '!', 'I', 'haven�t', 'seen', 'it', 'yet', '!', 'Noooooooo', '!', '!', 'Hey', '!', 'Ugh', ',', 'the', 'worse', 'day', '!', 'Y�know', ',', 'you', 'think', 'you�re', 'making', 'progress', 'at', 'work', 'and', 'then', 'your', 'boss', 'calls', 'you', 'Raquel', '.', 'I', 'believe', 'you', '.', 'So', ',', 'it', 'was', 'right', 'in', 'the', 'middle', 'of', 'a', 'staff', 'meeting', 'so', 'of', 'course', 'no', 'one', 'else', 'wants', 'to', 'correct', 'her', 'so', 'everyone', 'else', 'is', 'calling', 'me', 'Raquel', '!', 'By', 'the', 'end', 'of', 'the', 'day', ',', 'the', 'mailroom', 'guys', 'were', 'calling', 'me', 'Rocky', '!', 'What', '?', 'Oh', 'my', 'God', '!', 'That�s', 'so', 'great', '!', 'I�m', 'so', 'happy', 'for', 'you', 'guys', '!', 'And', 'that', 'was', 'so', 'sweet', 'of', 'you', 'to', 'ask', '!', 'Oh', 'my', 'God', ',', 'the', 'three', 'of', 'us', 'are', 'gon', 'na', 'have', 'such', 'a', 'good', 'time', 'living', 'together', '!', 'And', 'Chandler', ',', 'you�re', 'gon', 'na', 'have', 'to', 'watch', 'those', 'long', 'showers', 'you', 'take', 'in', 'the', 'morning', 'because', 'you', 'know', 'Raquel', 'can�t', 'be', 'late', '.', 'Ohh', '!', 'This', 'is', 'so', 'exciting', '!', 'Oh', 'God', '!', 'Come', 'and', 'knock', 'on', 'my', 'door', '....', 'Hey', 'roomie', '!', 'Are', 'you', 'pregnant', '?', '!', 'Um-hmm', '.', 'Oh', 'my', 'God', '!', 'Oh', ',', 'that�s', 'funny', ',', 'I', 'can�t', 'believe', 'I', 'did', 'that', '.', 'Okay', '.', 'Sure', '?', 'Thanks', '.', 'Monica', ',', 'where', 'did', 'you', 'get', 'these', '?', '!', 'Ooh', ',', 'good', 'God', ',', 'they�re', 'so', 'yummy', '!', 'Hey', '!', 'Okay', '!', 'Okay', '.', 'What', 'the', 'hell', 'is', 'that', '?', 'Wow', '!', 'Mon', ',', 'thanks', '!', 'I', 'love', 'this', 'plate', '!', 'Mon', ',', 'honey', 'you�re', 'not', 'dying', '.', 'I�m', 'just', 'moving', 'out', '.', 'Y�know', ',', 'I', 'mean', 'we�re', 'gon', 'na', 'see', 'each', 'other', 'all', 'the', 'time', '.', 'Are', 'you', 'okay', '?', 'You�re', 'not', 'blinking', '.', 'Oh', ',', 'all', 'right', '.', 'But', 'y�know', 'I', 'got', 'ta', 'say', ',', 'I', 'don�t', ',', 'I', 'don�t', 'think', 'six', 'years', 'counts', 'as', 'an', 'era', '.', 'What', 'is', 'the', 'matter', 'with', 'you', '?', '!', 'All', 'right', ',', 'fine', ',', 'but', 'don�t', 'get', 'mad', 'at', 'me', '.', 'It�s-it�s', 'just', 'a', 'little', 'hard', 'to', 'believe', '.', 'Well', 'y�know', ',', 'it�s', 'you', 'guys', '.', 'You-you', 'do', 'this', 'kind', 'of', 'stuff', '!', 'Y�know', '?', 'I', 'mean', ',', 'you-you', 'were', 'gon', 'na', 'get', 'married', 'in', 'Vegas', 'and', 'then', 'you', 'backed', 'out', '!', 'I', 'guess', 'I�m', 'not', 'upset', 'because', 'I', 'don�t', 'see', 'you', 'guys', 'going', 'through', 'with', 'it', '.', 'I�m', 'sorry', '.', 'But', 'I', '...', 'It', 'is', '?', 'Really', '?', 'I', 'mean', 'we�re', 'not', ',', 'we�re', 'not', 'gon', 'na', 'live', 'together', 'anymore', '?', 'What', '?', 'Oh', 'my', 'God', '!', 'I�m', 'gon', 'na', 'miss', 'you', 'so', 'much', '!', 'I', 'mean', 'it�s', 'the', 'end', 'of', 'an', 'era', '!', 'Monica', 'and', 'Chandler', 'are', 'really', 'moving', 'in', 'here', 'and', 'I', 'have', 'to', 'move', 'out', 'and', 'everything', 'is', 'changing', '.', 'Thank', 'you', '.', 'Pheebs', ',', 'I', 'wan', 'na', 'ask', 'you', 'something', '.', 'Well', 'since', 'I�m', 'movin�', 'out', 'and-and', 'you�re', 'so', 'beautiful', '...', '...', 'how', 'about', 'I', 'move', 'in', 'with', 'you', '?', 'You', 'have', 'a', 'roommate', '?', '!', 'Oh', ',', 'that�s', 'true', '.', 'Yeah', ',', 'yeah', 'I', 'think', 'I�m', 'gon', 'na', 'find', 'my', 'own', 'place', '.', 'Pheebs', ',', 'I', 'have', 'to', 'ask', 'you', '...', 'You�re', 'just', 'staring', 'into', 'space', '.', 'This', 'one', '?', 'Pheebs', ',', 'this', 'whole', 'apartment', 'thing', 'is', 'just', 'a', 'nightmare', '!', 'Every', 'place', 'I', 'can', 'afford', 'comes', 'with', 'a', 'roommate', 'who', 'is', 'a', 'freak', '.', 'I', 'mean', ',', 'look', 'at', 'this', ';', '``', 'Wanted', '.', 'Female', 'roommate', ',', 'non-smoker', ',', 'non-ugly', '.', \"''\", 'It�s', 'just', ',', 'there', 'is', 'nothing', '!', 'The', 'city�s', 'full', '!', 'Hey', '.', 'Yeah', '!', 'Why', '?', 'That', 'sounds', 'great', '!', 'I�d', 'love', 'to', 'live', 'at', 'Warren�s', '!', '!', 'I', 'love', 'Warren', '!', 'Thank', 'you', '!', 'Oh', ',', 'this', 'is', 'great', '!', 'I', 'am', 'gon', 'na', 'call', 'him', 'right', 'now', '!', 'Oh', ',', 'thank', 'you', '!', 'Ugh', '!', '!', '!', 'Well', ',', 'the', 'apartment', 'is', 'already', 'subletted', '!', 'I', 'mean', ',', 'this', 'is', 'just', 'hopeless', '.', 'I�m', 'never', 'gon', 'na', 'find', 'anything', '.', 'What', '?', '!', 'Oh', 'my', 'God', '!', 'Are', 'you', 'serious', '?', '!', 'I', 'would', 'love', 'to', 'live', 'with', 'you', 'Ross', ';', 'that�s-that�s', 'great', '!', 'Thank', 'you', '!', 'Ross-Ross', ',', 'you', 'have', 'no', 'idea', 'what', 'this', 'means', 'to', 'me', '!', 'I', 'mean', ',', 'I', 'mean', 'I', 'was', 'gon', 'na', 'be', 'homeless', '.', 'You', 'just', 'saved', 'me', '!', 'You�re', 'my', 'hero', '!', 'Oh', ',', 'I', 'have', 'to', 'go', 'tell', 'Monica', 'what', 'a', 'wonderful', 'brother', 'she', 'has', '!', 'Hey', '!', 'Oh', 'thanks', ',', 'but', 'listen', ',', 'I', 'was', 'just', 'at', 'Monica�s', 'and', 'she', 'and', 'Chandler', 'had', 'a', 'big', 'fight', 'and', 'they�re', 'not', 'moving', 'in', '.', 'No-no', ',', 'they', 'just', 'had', 'a', 'big', 'blowout', 'over', 'what', 'to', 'do', 'with', 'my', 'room', '.', 'Yeah', ',', 'I', 'feel', 'kinda', 'bad', 'for', 'them', ',', 'but', 'I�m', 'also', 'really', 'psyched', '�cause', 'I', 'don�t', 'have', 'to', 'move', 'in', 'here', '!', 'No-no', ',', 'I�m', 'staying', 'put', '.', 'Why', ',', 'where', 'are', 'you', 'going', '?', 'Hi', '!', 'Oh', 'wow', '.', 'Yeah', '.', 'Y�know', 'umm', ',', 'uh', ',', 'umm', ',', 'about', 'that', ',', 'umm', ',', 'Ross', 'I', 'really', 'appreciate', 'your', 'offer', 'to', 'let', 'me', 'move', 'in', 'and', 'everything', ',', 'but', 'don�t', 'you', 'think', 'it�s', 'gon', 'na', 'be', 'weird', '?', 'Well', ',', 'because', 'of', 'us', '!', 'Because', 'of', 'our', 'history', '.', 'No', '?', 'No', '!', 'Not', 'at', 'all', '!', 'Okay', ',', 'but', 'Ross', ',', 'eventually', 'you', 'and', 'I', 'are', 'gon', 'na', 'be', 'dating', '.', 'Yeah', '!', 'I�m', 'gon', 'na', 'have', 'a', 'boyfriend', ',', 'you�re', 'gon', 'na', 'have', 'a', 'girlfriend', '.', 'But', 'y�know', 'what', ',', 'if', 'you', 'think', 'it�s', 'gon', 'na', 'be', 'okay', 'we�ll', 'just', 'work', 'out', 'a', 'system', '.', 'Y�know', ',', 'it�ll', 'be', 'like', 'college', ',', 'I�ll', 'hang', 'a', 'hanger', 'on', 'the', 'door', 'and', 'put', 'a', 'sign', ',', '``', 'Come', 'back', 'later', ',', 'I�m', 'gettin�', 'lucky', '.', \"''\", 'Umm', ',', 'well', 'let�s', 'see', 'Monica', 'and', 'Chandler', 'are', 'occupied', '.', 'No', ',', 'the', 'other', 'thing', '.', 'I', 'really', 'think', 'it�s', 'great', 'they', 'work', 'things', 'out', '.', 'Hey', ',', 'can', 'I', 'borrow', 'the', 'key', 'to', 'your', 'house', 'so', 'I', 'can', 'run', 'across', 'the', 'street', 'and', 'make', 'a', 'copy', '?', 'Thank', 'you', '.', 'Now', 'are', 'you', 'sure', '?', 'Because', 'once', 'I', 'make', 'a', 'copy', ',', 'there�s', 'no', 'turning', 'back', '.', 'All', 'right', ',', 'well', 'the', 'place', 'was', 'closed', '.', 'I�ll', 'just', 'copy', 'it', 'later', '.', 'Well', ',', 'it', 'would', 'be', 'easier', 'to', 'move', 'just', 'right', 'across', 'the', 'hall', '.', 'Wait', 'a', 'minute', ',', 'unless', 'you�re', 'thinking', 'about', 'Naked', 'Wednesday�s', '.', 'So', ',', 'which', 'of', 'this', 'kitchen', 'stuff', 'is', 'mine', '?', 'And', '?', 'Look', 'at', 'that', '!', 'What', '?', '!', 'No-no', ',', 'I', 'bought', 'those', '.', 'Yeah', '.', 'Well', ',', 'who', 'wouldn�t', '?', '!', 'And', 'Mrs.', '?', '!', 'What', '?', '!', '!', 'Ohh', '!', 'Oh', 'God', '!', 'Yeah', 'honey', 'you', 'don�t', 'believe', 'her', 'do', 'you', '?', 'Ross', ',', 'hey', 'you', 'know', 'what', 'might', 'make', 'it', 'less', 'boring', '?', 'Some', 'uh', ',', 'some', 'visual', 'aides', '.', 'Hey', 'Pheebs', ',', 'you�re', 'still', 'alive', '!', 'How', 'are', 'you', 'doing', '?', 'Pheebs', ',', 'what-what', 'are', 'you', 'doing', '?', 'Oh', 'yeah', ',', 'scared', 'the', 'hell', 'out', 'of', 'me', '.', 'I', 'thought', 'we�d', 'lost', 'you', 'forever', '.', 'Pheebs', ',', 'you', 'lie', 'down', '?', 'Monica', '!', 'Did-did', 'you', 'take', 'these', 'back', '?', 'Oh', 'yeah', ',', 'they�re', 'really', 'great', '!', 'Aren�t', 'they', '?', 'Yeah', '.', 'Nice', 'try', '!', 'Hey', '!', 'Wow', ',', 'that�s', 'great', 'Ross', ',', 'I�m', 'sorry', 'we', 'weren�t', 'more', 'supportive', 'before', '.', 'Well', ',', 'we�re', 'a', 'little', 'early', ',', 'the', 'lecture', 'doesn�t', 'end', 'for', '15', 'minutes', '.', 'Yeah', ',', 'we', 'could', '.', 'Oh', 'hey', 'look', '!', 'There�s', 'some', 'Kappa', 'Kappa', 'Deltas', '!', 'I', 'was', 'a', 'Kappa', '.', 'Hey', 'sisters', '!', 'Wow', ',', 'we', 'really', 'are', 'bitches', '.', 'Yeah', ',', 'and', 'not', 'a', 'very', 'good', 'one', '.', 'Yes', ',', 'yes', ',', 'Bombay', 'is', 'bery', ',', 'bery', 'nice', 'this', 'time', 'of', 'year', '.', 'No', '!', 'They', 'are', 'mine', '!', 'You', 'stole', 'them', 'from', 'me', '!', '!', 'Yeah', 'that', 'seems', 'fair', '.', 'We', 'never', 'use', 'them', '.', 'Well', '?', 'Yeah', ',', 'I', 'mean', ',', 'come', 'on', 'Ross', ',', 'no', 'one', 'will', 'even', 'notice', '.', 'I', 'mean', 'they�re', 'probably', 'not', 'even', 'listening', '!', 'Of', 'course', 'they�re', 'listening', 'to', 'you', '!', 'Everybody', 'listens', 'to', 'you', '.', 'Really', '?', 'Really', '?', '!', 'Okay', '!', '``', 'Hello', 'Ross', ',', 'this', 'is', 'Dr.', 'McNeeley', 'from', 'the', 'Fake', 'Accent', 'University', ',', 'we�d', 'like', 'you', 'to', 'come', 'on', 'board', 'with', 'us', 'full', 'time', '!', 'Hey', '!', 'Really', '?', '!', 'How', 'do', 'you', 'know', '?', 'Oh', ',', 'I�m', 'sorry', '.', 'Hello', '?', 'Uh', 'no', ',', 'he�s', 'not', '.', 'Can', 'I', 'take', 'a', 'message', '?', 'Ross', 'got', 'married', 'again', '?', 'Nooooooo', '!', '!', '!', '!', '!', '!', '!', '!', '!', 'Ross', '!', '!', 'Are', 'you', 'crazy', '?', '!', 'I', 'am', 'still', 'your', 'wife', '!', '!', 'What', ',', 'were', 'you', 'just', 'never', 'gon', 'na', 'tell', 'me', '?', '!', '!', 'What', 'the', 'hell', 'is', 'wrong', 'with', 'you', '?', '!', '!', '!', '!', 'Ugh', ',', 'I', 'could', 'just', 'kill', 'you', '!', '!', '!', '!', 'I', 'can', 'not', 'believe', 'that', 'you', 'didn�t', 'tell', 'me', 'that', 'we', 'are', 'still', 'married', '!', '!', 'When', '?', '!', 'After', 'the', 'birth', 'of', 'our', 'first', 'secret', 'child', '?', '!', 'Ross', 'didn�t', 'get', 'the', 'annulment', ';', 'we', 'are', 'still', 'married', '.', 'So', ',', 'I', 'still', 'have', 'boxes', 'here', '.', 'I', 'still', 'have', 'boxes', 'at', 'Ross�s', ',', 'and', 'I', 'have', 'nowhere', 'to', 'live', '!', 'Wow', '.', 'I', 'could', 'so', 'easily', 'freak', 'out', 'right', 'now', '.', 'Well', ',', 'maybe-maybe', 'I', 'could', 'be', 'your', 'roommate', 'Pheebs', '.', 'Well', 'there�s', 'an', 'idea', '!', '!', 'That', 'would', 'be', 'great', '!', 'Wait', ',', 'how', 'long', 'is', 'Denise', 'gone', 'for', '?', 'December', '26th', ',', 'huh', 'maybe', 'she�s', 'Santa', 'Clause', '.', 'Oh', 'look', 'who', 'it', 'is', ',', 'my', 'husband', '.', 'The', 'apple', 'of', 'my', 'eye', '.', 'Well', 'sure', ',', 'if', 'you', 'say', 'you�re', 'gon', 'na', 'take', 'care', 'of', 'everything', 'I', 'have', 'no', 'reason', 'to', 'doubt', 'you', '.', 'Give', 'me', 'those', 'forms', '!', 'All', 'right', ',', 'now', 'I�m', 'gon', 'na', 'do', 'this', 'my', 'way', 'and', 'I', 'don�t', 'want', 'to', 'hear', 'a', 'peep', 'out', 'of', 'you', '!', 'Op', '!', 'You�re', 'peeping', '!', 'Ross', '!', 'Y�know', 'what', ',', 'I', 'just', 'got', ',', 'why', '?', 'Why', 'did', 'you', 'do', 'this', '?', '!', 'I', 'don�t', 'wan', 'na', 'hear', '``', 'Three', 'failed', 'marriages', '!', \"''\", 'Well', ',', 'y�know', 'what', '?', 'Thanks', 'to', 'you', 'I�m', 'half', 'way', 'there', '!', 'Ugh', '!', 'Oh', '!', 'I', 'am', 'so', 'mad', '!', 'Ross', ',', 'I', 'don�t', 'think', 'I', 'have', 'ever', 'been', 'this', 'angry', '!', 'Ugh', '!', 'Yes', 'your', 'honor', ',', 'and', 'here', 'are', ',', 'are', 'forms', ',', 'all', 'filled', 'out', '.', 'Uh', 'yes', ',', 'heroin', 'and', 'crack', '.', 'Well', ',', 'you', 'would', 'know', '.', 'Ross', ',', 'please', ',', 'I', 'found', 'the', 'magazines', '!', 'Ugh', '!', 'Ross', '!', 'Your', 'honor', ',', 'rest', 'assured', 'relationship', 'ended', 'like', 'two', 'years', 'ago', '!', 'And', 'could', 'you', 'strike', '``', 'Consummated', 'like', 'bunnies', \"''\", 'from', 'the', 'record', '?', 'Well', ',', 'yes', ',', 'we', 'got', 'married', 'in', 'Vegas', 'and', 'uh', ',', 'and', 'the', 'names', 'I', 'think', '.', 'What', '?', '!', 'Me', '?', '!', 'What', 'about', 'you', 'and', 'your', 'consummated', 'like', 'bunnies', 'nonsense', '!', 'Okay', ',', 'do', 'you', 'see', ',', 'do', 'you', 'see', 'what', 'you�re', 'keeping', 'me', 'married', 'too', '?', '!', 'All', 'right', 'look', 'lady', 'here', 'is', 'the', 'deal', ',', 'I', 'came', 'here', 'for', 'an', 'annulment', 'and', 'I', 'am', 'not', 'leaving', 'here', 'until', 'I', 'get', 'one', '!', 'And', 'thank', 'you', 'for', 'your', 'time', '.', 'This', 'is', 'totally', 'your', 'fault', '!', 'Well', ',', 'you', 'ripped', 'the', 'paper', 'out', 'of', 'the', 'court', 'reporter�s', 'machine', '!', '!', 'Don�t', 'call', 'us', 'that', '!', 'Oh', 'honey', 'thank', 'God', 'you�re', 'home', ',', 'I', 'was', 'getting', 'worried', '.', 'Oh', ',', 'little', '�X�s', '!', 'Great', '!', 'That', 'makes', 'up', 'for', 'everything', '!', 'Oh', ',', 'name', 'one', 'stupid', 'thing', 'that', 'is', 'as', 'stupid', 'as', 'this', 'one', '!', 'Hey', '!', 'Wait', 'a', 'minute', '!', 'That', 'was', 'different', '!', 'I', 'did', 'those', 'things', 'because', 'I', 'was', 'in', 'love', 'with', 'you', '!', 'Nothing', '.', 'Uh-hmm', '.', 'Okay', 'Ross', ',', 'we�re', ',', 'wait', 'a', 'minute', '.', 'Umm', ',', 'I', 'uh', ',', 'I', 'kinda', 'have', 'a', 'little', 'confession', '.', 'Well', ',', 'y�know', 'this', 'whole', 'marriage', 'thing', ',', 'kinda', 'my', 'idea', '.', 'Well', ',', 'remember', 'how', 'we', 'were', 'too', 'drunk', 'to', 'remember', 'anything', 'the', 'night', 'we', 'were', 'married', '?', 'And', 'uh', ',', 'yeah', ',', 'I', 'didn�t', 'really', ',', 'I', 'didn�t', 'want', 'to', 'say', 'anything', ',', 'but', 'it', 'kinda', 'it', 'just', ',', 'it', 'kinda', 'kept', 'coming', 'back', 'to', 'me', ',', 'and', 'umm', ',', 'remember', 'we', 'were', 'in', 'the', 'casino', 'and', 'for', 'some', 'reason', 'thought', 'it', 'would', 'be', 'funny', 'to', 'eat', 'a', 'lot', 'of', 'grapes', '.', 'And', 'uh', ',', 'and', 'I', 'thought', 'it', 'would', 'be', 'funnier', 'if', 'we', 'got', 'married', '.', 'So', 'as', 'a', ',', 'as', 'a', 'compromise', 'we', 'decided', 'first', 'to', 'get', 'married', ',', 'and', 'then', 'to', 'eat', 'a', 'lot', 'of', 'grapes', '.', 'So', 'umm', ',', 'sorry', 'I', 'got', 'us', 'into', 'this', 'mess', '.', 'Yeah', ',', 'don�t', 'push', 'it', 'though', '.', 'I', 'know', '.', 'I', 'always', 'thought', 'if', 'you', 'and', 'I', 'got', 'married', ',', 'it', 'would', 'be', 'the', 'one', 'that', 'stuck', '.', 'And', 'it', 'wouldn�t', 'be', 'a', 'secret', ',', 'and', 'we', 'wouldn�t', 'have', 'our', 'wedding', 'dinner', 'at', 'Pizza', 'Hut', '.', 'No', ',', 'it', 'was', 'on', 'the', 'house', ',', 'it', 'was', ',', 'it', 'was', 'a', 'newlywed', 'special', '.', 'Hey', ',', 'thanks', 'Ross', ',', 'for', 'taking', 'care', 'of', 'all', 'of', 'this', '.', 'I�m', 'gon', 'na', 'need', 'a', 'copy', 'of', 'those', '.', 'Pheebs', ',', 'I', 'was', 'wondering', '...', 'Well', 'and', 'clearly', 'not', 'a', 'minute', 'sooner', '.', 'Of', 'course', 'I', 'packed', '!', 'Monica', 'relax', '!', 'I', 'just', 'wanted', 'to', 'ask', 'Phoebe', 'her', 'opinion', 'on', 'what', 'I', 'should', 'wear', 'tonight', '.', 'Yeah', ',', 'yeah', ',', 'I', 'know', '.', 'Surprise', '!', '!', 'No', ',', 'no', 'don�t', 'get', 'mad', 'because', 'look', '...', 'this', 'is', 'what', 'happened', '.', 'So', 'I-I', 'started', 'packing', ',', 'then', 'I', 'realized', ',', '``', 'What', 'am', 'I', 'doing', '?', 'I', 'am', 'lousy', 'at', 'packing', '!', \"''\", 'Right', '?', 'But', 'you', 'love', 'packing', '!', 'So', ',', 'as', 'a', 'gift', 'to', 'you', ',', 'on', 'our', 'last', 'night', ',', 'ta-da', '!', 'Ohhhhhh', ',', 'look', 'it�s', 'the', 'roller', 'blades', '.', 'You', 'remember', 'when', 'we', 'got', 'these', '?', 'I', 'guess', 'you', 'weren�t', 'there', '.', 'I�m', 'sorry', 'Pheebs', ',', 'I', 'guess', 'I�m', 'just', 'really', 'said', 'that', 'I�m', 'leaving', '.', 'I', 'have', 'one', '.', 'Uh', 'well', ',', 'I', 'guess', 'I�m', 'not', 'gon', 'na', 'miss', 'the', 'fact', 'that', 'you�re', 'never', 'allowed', 'to', 'move', 'the', 'phone', 'pen', '.', 'You', 'get', 'your', 'messages', '!', 'So-so', ',', 'you', 'missed', 'a', 'message', 'from', 'who', '?', 'Chandler', 'or', 'your', 'mom', '?', 'Or', 'Chandler', '?', 'Or', 'your', 'mom', '?', 'Ooh', ',', 'your', 'brother', '.', 'Score', '!', 'You', 'know', 'what', 'else', 'I�m', 'not', 'gon', 'na', 'miss', '?', '``', 'I�m', 'Monica', '.', 'I', 'wash', 'the', 'toilet', '17', 'times', 'a', 'day', '.', 'Even', 'if', 'people', 'are', 'on', 'it', '!', \"''\", '``', 'I�m', 'Monica', ',', 'I', 'don�t', 'get', 'phone', 'messages', 'from', 'interesting', 'people', '.', 'Ever', '!', \"''\", '``', 'Oh', 'my', 'God', ',', 'I', 'can�t', 'find', 'a', 'boyfriend', '!', 'So', 'I', 'guess', 'I�ll', 'just', 'stumble', 'across', 'the', 'hall', 'and', 'sleep', 'with', 'the', 'first', 'guy', 'I', 'find', 'in', 'there', '!', \"''\", 'I�m', 'unpacking', '!', 'I�m', 'not', 'moving', '!', 'Is', 'that', 'picture', 'straight', '?', 'Hey', ',', 'y�know', 'what', '?', 'You�re', 'the', 'one', 'who', 'wants', 'to', 'make', 'this', 'big', 'change', 'and', 'move', 'in', 'with', 'Chandler', '!', 'You', 'should', 'be', 'the', 'one', 'to', 'go', '!', 'Why', 'should', 'I', 'have', 'to', 'leave', '?', '!', 'Well', 'it�s', 'mine', 'too', '!', 'What', 'else', 'you', 'got', '?', '!', 'Look', '!', 'This', 'is', 'ridiculous', '.', 'We', 'should', 'be', 'packing', 'you', '!', '!', 'Great', '!', 'Monica�s', 'moving', '!', 'Oh', 'really', '?', '!', 'Then', 'how', 'come', 'all', 'your', 'stuff', 'is', 'in', 'this', 'box', '?', '!', 'Yeah', ',', 'I�m', 'just', 'mad', '!', 'Funny', ',', 'because', 'I', 'was', 'just', 'gon', 'na', 'go', 'across', 'the', 'hall', 'and', 'write', 'that', 'on', 'Chandler', '.', 'Well', ',', 'Phoebe', 'that�s', 'fine', 'because', 'I�m', 'not', 'moving', '.', 'Oh', 'really', '?', 'Like', 'what', 'Monica', '?', 'Oh', 'yeah', ',', 'good', 'start', 'Mon', '.', 'Yeah', 'and', 'you', 'stretch', '�em', 'out', 'with', 'your', 'big', 'old', 'clown', 'feet', '.', 'Yeah', ',', 'I', 'do', '.', 'I-I', 'do', ',', 'do', 'that', '.', 'Well', 'y�know', ',', 'I', 'don�t', 'want', 'you', 'to', 'be', 'cold', '.', 'Oh', ',', 'it�s', 'gon', 'na', 'be', 'fine', '.', 'But', 'honey', ',', 'I', 'think', 'she�s', 'moving', 'in', 'with', 'Chandler', '.', 'Okay', '.', 'Oh', '!', 'I', 'have', 'your', 'key', '.', 'Here', 'you', 'go', '.', 'Yeah', '.', 'Oh', 'God', '!', 'This', 'is', 'silly', ',', 'I�m', 'gon', 'na', 'see', 'you', 'in', 'a', 'couple', 'of', 'hours', '!', 'Bye', 'house', '!', 'Bye', 'Mon', '.', 'Yeah', '.', 'Hi', '...', 'Rachel', '...', 'Phoebe�s', '...', 'leave', '...', 'Wait', ',', 'I-I', 'just', 'said', '``', 'leave', '.', \"''\", 'Phoebe', ',', 'come', 'on', 'that', \"'s\", 'silly', '.', 'No', ',', 'I', 'have', 'all', 'of', 'the', 'good', 'words', '.', 'OK', ',', 'fine', ',', 'fine', ',', 'we', 'can', 'switch', '.', 'Okay', '.', 'Everybody', '...', 'Rachel', ',', 'Phoebe�s', 'What', '?', 'Phoebe', ',', 'come', 'on', 'can', 'we', 'finish', 'this', 'later', '?', 'Cause', 'I', 'wan', 'na', 'go', 'running', 'before', 'it', 'gets', 'dark', '.', 'Oh', '!', 'Why', 'do', \"n't\", 'you', 'come', 'with', 'me', '?', '!', 'Yeah', ',', 'it', \"'ll\", 'be', 'fun', '.', 'We', \"'ll\", 'run', 'in', 'the', 'park', '.', 'It', \"'ll\", 'be', 'like', 'our', 'first', 'y�know', 'roommate', 'bonding', 'thing', '.', 'Yeah', 'and', 'there', \"'s\", 'really', 'cute', 'guys', 'there', '.', 'OK', '!', 'Now', 'wait', 'a', 'minute', '.', 'You', 'just', 'took', 'all', 'the', 'words', '!', 'Okay', '.', 'You', 'guys', ',', 'I', \"'m\", 'telling', 'you', ',', 'when', 'she', 'runs', ',', 'she', 'looks', 'like', 'a', 'cross', 'between', 'Kermit', 'The', 'Frog', 'and', 'The', 'Six', 'Million', 'Dollar', 'Man', '.', 'Oh', '!', 'I', 'used', 'to', 'do', 'that', 'too', '!', 'Aw', ',', 'Mon', '...', 'Yeah', ',', 'yeah', 'and', 'you', 'know', 'what', ',', 'I', 'know', 'she', \"'s\", 'gon', 'na', 'wan', 'na', 'run', 'again', ',', 'I', 'just', 'do', \"n't\", 'know', 'how', 'to', 'get', 'out', 'of', 'it', ',', 'I', 'mean', ',', 'I', 'live', 'with', 'her', '.', 'You', \"'re\", 'right', ',', 'you', \"'re\", 'right', '.', 'I', 'should', 'just', 'tell', 'her', 'the', 'truth', '.', 'Pheebs', ',', 'Monica', 'tripped', 'me', ',', 'I', 'do', \"n't\", 'think', 'I', 'can', 'ever', 'run', 'again', ',', 'ever', '!', 'Ankle', '.', 'No', ',', 'no', 'Phoebe', 'no', ',', 'I', 'was', '...', 'no', '.', 'You', 'know', 'what', ',', 'I', 'was', ',', 'I', 'was', 'actually', 'just', 'checking', 'to', ',', 'see', ',', 'if', 'I', 'could', 'run', '.', 'And', 'I', 'can', '!', 'No', ',', 'wait', 'Phoebe', '.', 'Hey', 'Phoebe', ',', 'can', 'I', 'talk', 'to', 'you', 'for', 'a', 'second', '?', 'Okay', ',', 'um', ',', 'I', '...', 'All', 'right', 'Phoebe', 'look', ',', 'I', 'just', 'wanted', 'to', 'say', 'that', 'I', \"'m\", 'sorry', '.', 'OK', '?', 'I', 'handled', 'the', 'situation', 'horribly', 'and', 'I', 'should', 'not', 'have', 'lied', 'to', 'you', '.', 'Well', ',', 'I-I', 'should', \"'ve\", 'told', 'you', 'the', 'truth', '.', 'Well', ',', \"y'know\", ',', 'the', 'reason', 'I', 'did', \"n't\", 'wan', 'na', 'go', 'running', 'with', 'you', 'is', 'because', 'um', ',', 'well', \"y'know\", 'the', 'way', 'that', 'you', 'run', 'is', 'a', 'little', '...', 'Well', ',', 'it', \"'s\", 'embarrassing', '.', 'People', 'were', 'looking', 'at', 'us', 'like', 'we', 'were', 'crazy', '.', 'Because', 'they', \"'re\", 'people', '.', 'Yes', ',', 'but', 'still', '.', 'They', \"'re\", 'people', ',', 'with', 'eyes', '.', 'I-I', 'am', 'not', 'uptight', '...', 'Hey-hey-hey-oh-oh', '!', 'Listen', ',', 'I', 'am', 'not', 'uptight', ',', 'man', '.', 'Hey', '!', 'Oh', 'honey', ',', 'I', \"'m\", 'so', 'sorry', ',', 'you', 'were', 'right', ',', 'this', 'feels', 'great', '!', 'Gone', '!', 'I', 'mean', 'its', 'amazing', 'Pheebs', '.', 'I', 'feel', 'so', 'free', 'and', 'so', 'graceful', '.', 'Hey', '!', 'Look', 'out', 'for', 'the', 'horse', '!', 'Sorry', '!', 'Ohh', ',', 'are', 'you', 'setting', 'Ross', 'up', 'with', 'someone', '?', 'Does', 'she', 'have', 'a', 'wedding', 'dress', '?', 'Hey', '.', 'Yeah', '.', 'Well', ',', 'sure', ',', 'but', 'they', 'might', 'think', 'it�s', 'kinda', 'weird', 'considering', 'I', 'don�t', 'work', 'there', 'anymore', '.', 'I-I', ',', 'got', 'a', 'job', 'at', 'Ralph', 'Lauren', '.', 'Yeah', '.', 'A', 'year', 'ago', '..', 'But', ',', 'Pheebs', ',', 'you', 'can', 'still', 'use', 'the', 'copy', 'machine', 'where', 'I', 'actually', 'work', '.', 'But', ',', 'just', 'come', 'by', 'at', 'lunch', 'so', 'my', 'boss', 'doesn�t', 'see', 'you', '.', 'Cause', 'Kim', 'will', 'just', 'freak', 'out', 'and', 'she', 'already', 'doesn�t', 'like', 'me', 'very', 'much', '.', 'Sure', '.', 'Oh', 'my', 'God', '.', 'Did', 'you', 'talk', 'to', 'him', '?', 'What', '?', 'What', '!', '?', '!', 'You', 'kissed', 'him', '?', 'Phoebe', 'are', 'you', 'serious', '?', 'Phoebe', ',', 'I', 'mean', ',', 'you', 'do', 'know', 'he�s', 'married', '?', 'Phoebe', '...', 'Oh', ',', 'Kim', ',', 'Hi', '.', 'So', 'you', 'know', ',', 'I', '...', 'I', 'handed', 'in', 'that', 'marketing', 'report', 'and', 'I', 'never', 'got', 'to', 'hear', 'what', 'you', 'thought', '.', 'Ahh', '.', 'So', '.', 'Wow', '.', 'The', 'spring', 'line', ',', 'it�s', 'really', 'going', 'to', 'be', 'great', 'this', 'year', ',', 'huh', '?', 'So', 'I', 'hear', 'the', 'Ralph', 'Lauren', 'fooled', 'around', 'with', 'someone', 'in', 'the', 'copy', 'room', '.', 'Yeah', '.', 'Your', 'teeth', '?', 'Yes', ',', 'I', 'saw', 'them', 'from', 'outside', '.', 'You', 'guys', 'are', 'never', 'going', 'to', 'believe', 'this', '.', 'But', ',', 'Phoebe', 'made', 'out', 'with', 'Ralph', 'Lauren', '.', 'Yeah', 'I', 'know', '.', 'She', 'ran', 'into', 'him', 'at', 'my', 'office', 'and', 'they', 'just', 'made', 'out', '.', 'And', 'the', 'craziest', 'thing', 'is', ',', 'now', 'my', 'boss', 'likes', 'me', 'because', 'I', 'told', 'her', 'about', 'it', 'and', 'she', 'said', 'it', 'was', 'the', 'best', 'gossip', 'she�d', 'heard', 'all', 'year', '.', 'That-that', 'is', 'your', 'make', 'out', 'buddy', '.', 'Don�t', 'you', 'recognize', 'him', '?', 'Oh', 'wait', '.', 'Ohh', ',', 'Phoebe', 'I', 'love', 'you', '.', 'Kiss', 'me', 'please', '.', 'What', '?', 'Oh', 'My', 'God', ',', 'Phoebe', ',', 'that�s', 'not', 'Ralph', 'Lauren', '.', 'That�s', 'Kenny', 'the', 'copy', 'guy', '.', 'Oh', '..', 'Go', '..', 'Oh', '..', 'and', 'I', 'told', 'my', 'boss', 'that', 'someone', 'made', 'out', 'with', 'Ralph', 'Lauren', '.', 'If', 'she', 'finds', 'out', 'that', 'I', 'lied', 'to', 'her', ',', 'she', 'is', 'going', 'to', 'hate', 'me', 'even', 'more', '.', 'Phoebe', '!', '!', 'To', 'get', 'you', 'to', 'make', 'out', 'with', 'him', '!', '!', '!', 'Ohh', ',', 'hi', ',', 'Kim', '.', 'Yeah', ',', 'remember', 'that', 'thing', 'I', 'told', 'you', 'that', 'happened', 'yesterday', '?', 'Well', 'it', 'didn�t', 'happen', '.', 'Okay', ',', 'two', 'things', 'didn�t', 'happen', '.', 'Remember', 'I', 'told', 'you', 'that', 'someone', 'made', 'out', 'with', 'Ralph', 'Lauren', 'in', 'the', 'copy', 'room', '?', 'Well', ',', 'it', 'turns', 'out', 'that�s', 'not', 'true', '.', 'No', '.', 'Oh', 'no', ',', 'no', ',', 'no', '.', 'Oh', 'God', ',', 'you', 'think', 'I', 'made', 'out', 'with', 'him', '.', 'I-I', 'don�t', 'want', 'your', 'job', '.', 'I-I', 'don�t', '.', 'Ohh', 'this', 'is', 'such', 'a', 'mistake', '.', 'I', 'did', 'not', 'make', 'out', 'with', 'him', '.', 'Nobody', 'made', 'out', 'with', 'him', '.', 'I', 'did', 'not', 'use', 'my', 'keycard', 'yesterday', '.', 'I', 'don�t', 'even', 'know', 'how', 'to', 'use', 'my', 'keycard', '.', 'Now', ',', 'she', 'thinks', 'that', 'I', 'made', 'out', 'with', 'him', 'and', 'I', 'did', 'it', 'to', 'get', 'her', 'job', '.', 'I', 'did', 'but', 'she', 'doesn�t', 'think', 'anyone', 'would', 'be', 'stupid', 'enough', 'to', 'confuse', 'Kenny', 'the', 'copy', 'guy', 'with', 'Ralph', 'Lauren', '.', 'You', 'were', 'with', 'Kenny', 'today', ',', 'weren�t', 'you', '?', 'Ohh', ',', 'Phoebe', ',', 'what', 'am', 'I', 'going', 'to', 'do', '?', 'I�m', 'not', 'going', 'to', 'sleep', 'with', 'Ralph', 'Lauren', '.', 'I', 'mean', ',', 'I', 'could', ',', 'but', 'I', 'wouldn�t', '.', 'That', 'wouldn�t', 'help', 'me', '.', 'Kim', ',', 'hi', '.', 'Okay', '..', 'Okay', '..', 'Look', '.', 'I�m', 'sorry', 'that', 'I', 'lied', 'to', 'you', 'before', '.', 'You', 'were', 'right', '.', 'Ralph', 'and', 'I', 'were', 'an', 'item', 'but', 'were', 'not', 'anymore', '.', 'Yeah', ',', 'he', 'dumped', 'me', '.', 'He', 'said', ',', '``', 'Rachel', ',', 'I', 'can�t', 'do', 'this', '.', 'Even', 'though', 'you', 'are', 'a', 'very', ',', 'very', ',', 'very', 'beautiful', 'women', '.', 'I', 'can�t', 'do', 'this', '.', 'I�m', 'married', 'and', 'I�m', 'sorry', '.', \"''\", 'And', 'then', 'I', 'don�t', 'know', 'why', 'but', 'he', 'said', ',', '``', 'and', 'you', 'will', 'never', 'get', 'promoted', '.', 'Especially', 'not', 'above', 'Kim', ',', 'who', 'is', 'an', 'integral', 'cog', 'in', 'the', 'Ralph', 'Lauren', 'machine', '.', \"''\", 'Of', 'course', 'it�s', 'true', 'and', 'it', 'hurts', 'so', 'bad', '.', 'You', 'and', 'Ralph', '?', 'Hey', '!', 'Hey', ',', 'Pheebs', ',', 'check', 'it', 'out', '.', 'Yeah', ',', 'for', 'my', 'desert', ',', 'I', 'have', 'chosen', 'to', 'make', 'a', 'traditional', 'English', 'trifle', '!', 'Nothing', '?', 'So', ',', 'if-if', 'I', 'mess', 'this', 'up', ',', 'there�s', 'nothing', 'else', 'for', 'dessert', '?', 'Wow', ',', 'Monica', ',', 'I', 'love', 'that', ',', 'you', 'really', 'have', 'faith', 'in', 'me', '.', 'Thank', 'you', '.', 'Technical', 'question', ',', 'how', 'do', 'you', 'know', 'when', 'uh', ',', 'the', 'butter�s', 'done', '?', 'Her', 'dancer', 'friends', '?', 'Really', '?', '!', 'I', 'dunno', '.', 'Y�know', 'to', 'me', 'he�ll', 'always', 'be', 'Jack', 'Geller', ',', 'walks', 'in', 'while', 'you�re', 'changing', '.', 'Look', 'at', 'it', ',', 'isn�t', 'it', 'beautiful', '?', 'It�s', 'a', 'trifle', '.', 'It�s', 'got', 'all', 'of', 'these', 'layers', '.', 'First', 'there�s', 'a', 'layer', 'of', 'ladyfingers', ',', 'then', 'a', 'layer', 'of', 'jam', ',', 'then', 'custard', ',', 'which', 'I', 'made', 'from', 'scratch', ',', 'then', 'raspberries', ',', 'more', 'ladyfingers', ',', 'then', 'beef', 'sauteed', 'with', 'peas', 'and', 'onions', ',', 'then', 'a', 'little', 'more', 'custard', ',', 'and', 'then', 'bananas', ',', 'and', 'then', 'I', 'just', 'put', 'some', 'whipped', 'cream', 'on', 'top', '!', 'The', 'beef', '?', 'Yeah', ',', 'that', 'was', 'weird', 'to', 'me', ',', 'too', '.', 'But', 'then', ',', 'y�know', ',', 'I', 'thought', 'well', ',', 'there�s', 'mincemeat', 'pie', ',', 'I', 'mean', 'that�s', 'an', 'English', 'dessert', ',', 'these', 'people', 'just', 'put', 'very', 'strange', 'things', 'in', 'their', 'food', ',', 'y�know', '.', 'Oh', '!', 'by', 'the', 'way', ',', 'can', 'I', 'borrow', 'some', 'Rum', 'from', 'your', 'place', '?', 'And', 'while', 'I�m', 'gone', 'don�t', 'you', 'boys', 'sneak', 'a', 'taste', '.', 'Joey', ',', 'God', ',', 'your', 'apartment', 'is', 'like', 'a', 'hundred', 'degrees', '!', 'No', '!', 'Yeah', '?', 'No', ',', 'I', 'did', ',', 'but', 'tell', 'me', 'again', ',', 'because', 'it�s', 'so', 'romantic', '.', 'Joey', '!', 'Come', 'on', '!', 'I', 'don�t', 'wan', 'na', 'make', 'any', 'mistakes', ',', 'alright', '?', 'This', 'is', 'the', 'only', 'dessert', 'and', 'if', 'I', 'screw', 'it', 'up', 'everybody', \"'s\", 'gon', 'na', 'be', 'like', '.', 'Oh', ',', 'remember', 'that', 'Thanksgiving', 'when', 'Rachel', 'screwed', 'up', 'the', 'trifle', '?', 'So', 'why', 'don�t', 'you', 'just', 'let', 'me', 'worry', 'about', 'making', 'the', 'trifle', 'and', 'you', 'just', 'worry', 'about', 'eating', 'it', ',', 'alright', '?', 'Okay', '...', 'What�s', 'up', ',', 'Ross', '?', 'Yeah', '!', 'Oh', 'no', '.', 'No', 'Ross', ',', 'don�t', 'do', 'this', '.', 'I', 'just-', 'I', 'don�t', 'think', 'us', 'getting', 'back', 'together', 'is', 'a', 'good', 'idea', '.', 'I', 'thought', 'this', 'might', 'happen', 'today', '.', 'Ross', ',', 'I', 'know', 'the', 'holidays', 'can', 'be', 'rough', '.', 'Y�know', '?', 'And', 'it�s', 'probably', 'really', 'hard', 'for', 'you', 'to', 'be', 'alone', 'right', 'now', '.', 'No', ',', 'I-I', 'live', 'with', 'Phoebe', '.', 'I', 'mean', 'you�re', 'alone', ',', 'alone', '.', 'And', 'I', 'just-it�s', 'just', 'not', 'the', 'time', 'for', 'us', '.', 'I�m', 'sorry', '.', 'Joey', ',', 'you�re', 'gon', 'na', 'have', 'to', 'stop', 'rushing', 'me', ',', 'you', 'know', 'what', '?', 'You', 'don�t', 'get', 'any', 'dessert', '.', 'No', ',', 'I�m', 'just', 'kidding', 'I', 'would', 'never', 'do', 'that', 'to', 'you', '!', 'Okay', ',', 'everybody', ',', 'it�s', 'trifle', 'time', '!', 'It', 'sure', 'is', '.', 'Beef', '.', 'Alright', ',', 'Monica', ',', 'I', 'want', 'you', 'to', 'have', 'the', 'first', 'taste', '.', 'Oh', 'oh', 'oh', ',', 'wait', '!', 'You', 'only', 'got', 'whipped', 'cream', 'in', 'there', '!', 'Ya', 'got', 'ta', 'take', 'a', 'bite', 'with', 'all', 'the', 'layers', '!', 'Op', '!', 'Wait', ',', 'you', 'dropped', 'a', 'pea', '.', 'Well', '?', 'Really', '?', 'How', 'good', '?', 'Okay', ',', 'now', 'what', 'was', 'that', 'all', 'about', '?', 'Is', 'it-does', 'it', 'not', 'taste', 'good', '?', 'Let', 'me', 'try', 'it', '.', '...', 'So', 'a', 'bird', 'just', 'grabbed', 'it', ',', 'and', 'then', 'tried', 'to', 'fly', 'away', 'with', 'it', 'and', ',', 'and', 'then', 'just', 'dropped', 'it', 'on', 'the', 'street', '?', 'Oh', ',', 'Phoebe', ',', 'do', 'I', 'wan', 'na', 'hear', 'this', '?', 'Oh', 'my', 'God', ',', 'he', 'dream-cheated', 'on', 'you', '!', 'I', 'wasn�t', 'supposed', 'to', 'put', 'beef', 'in', 'the', 'trifle', '!', 'You', 'guys', '!', 'It', 'was', 'bananas', ',', 'cream', ',', 'and', 'beef', '!', 'I-I', 'just', 'can', 'not', 'believe', 'that', 'you', 'ate', 'that', 'so', 'that', 'I', 'wouldn�t', 'feel', 'bad', '!', 'That�s', 'a', 'good', 'story', ',', 'Grandpa', '.', 'So', ',', 'pretty', 'much', 'around', 'the', 'same', 'time', 'that', 'you', 'started', 'telling', 'this', 'story', '.', 'Well', ',', 'I', 'used', 'to', 'date', 'him', ',', 'but', 'you�re', 'still', 'going', 'out', 'with', 'her', '!', 'Yeah', ',', 'but', 'she', 'also', 'invited', 'you', 'and', 'Ross', '.', 'Yeah', ',', 'honey', ',', 'I�m', 'sorry', ',', 'but', 'I', 'don�t', 'think', 'that', 'was', 'a', 'romantic', 'thing', '.', 'Well', ',', 'that�s', 'a', 'lot', 'better', 'than', 'Ross', 'trying', 'to', 'kiss', 'me', 'in', 'High', 'School', ',', 'and', 'saying', 'that', 'he', 'did', 'it', 'because', 'he', 'needed', 'chapstick', '.', 'Okay', ',', 'you', 'look', 'in', 'the', 'kitchen', ',', 'I', 'will', 'look', 'in', 'the', 'back', 'closet', '.', 'We', 'are', 'looking', 'for', 'our', 'Christmas', 'presents', 'from', 'Monica', '.', 'Don�t', 'worry', ',', 'we�re', 'just', 'gon', 'na', 'search', 'here', 'for', 'an', 'hour', ',', 'them', 'we�re', 'gon', 'na', 'go', 'over', 'to', 'Joey�s', 'and', 'search', ',', 'OK', '?', 'Chandler', ',', 'aren�t', 'you', 'worried', 'about', 'what', 'to', 'get', 'Monica', 'for', 'Christmas', '?', 'Chandler', ',', 'that�s', 'not', 'enough', '.', 'I', 'mean', 'what', 'if', 'she', 'gets', 'you', 'a', 'great', 'present', ',', 'two', 'medium', 'presents', ',', 'and', 'a', 'bunch', 'of', 'little', 'presents', '?', 'And', 'you�ve', 'just', 'gotten', 'her', 'one', 'great', 'present', '?', 'I', 'mean', 'that�s', 'just', 'gon', 'na', 'make', 'her', 'feel', 'bad', '.', 'Why', 'would', 'you', 'do', 'that', 'to', 'her', 'Chandler', '?', 'Why', '?', 'Why', '?', 'That�s', 'right', '!', 'Oh', ',', 'it�s', 'a', 'Macy�s', 'bag', '!', 'Dear', 'losers', ',', 'do', 'you', 'really', 'think', 'I�d', 'hide', 'presents', 'under', 'the', 'couch', '?', 'P.S', '.', 'Chandler', ',', 'I', 'knew', 'they�d', 'break', 'you', '.', 'We', 'are', 'so', 'gon', 'na', 'find', 'them', 'this', 'year', '.', 'Yeah', '.', 'Yeah', ',', 'we', 'found', 'them', '.', 'There', 'were', 'in', 'the', 'guest', 'room', 'closet', 'behind', 'some', 'coats', '.', 'Well', 'Chandler', ',', 'what', 'is', 'this', 'very', 'weird', ',', 'metal', 'A', 'Z', 'thing', '?', 'Ha', '!', 'Yes', ',', 'okay', ',', 'oh', ',', 'by', 'the', 'way', ',', 'I', 'just', 'got', 'ta', 'say', ',', 'I', 'think', 'it', \"'s\", 'really', 'nice', 'of', 'you', 'that', 'even', 'after', 'you', \"'ve\", 'moved', ',', 'you', 'still', 'keep', 'storing', 'that', 'stuff', 'for', 'Joey', '!', 'Hey', ',', 'this', 'is', 'hollow', '.', 'This', 'bench', ',', 'it�s', 'hollow', '!', 'I', 'can�t', 'believe', 'I', 'never', 'knew', 'that', '!', 'Oh', ',', 'the', 'presents', '!', '!', '!', 'Oh', ',', 'this', 'one�s', 'for', 'me', '!', 'Ooh', ',', 'let�s', 'open', 'them', '!', 'Whatever', 'Linus', ',', 'I�m', 'opening', 'mine', '.', 'Uh', ',', 'wait', ',', 'so', 'you', 'guys', 'are', 'telling', 'me', 'you', 'actually', 'did', 'the', 'routine', 'from', 'eighth', 'grade', '?', '�Cos', 'I', 'was', 'gon', 'na', 'say', 'there�s', 'no', 'way', 'you', 'could�ve', 'done', 'the', 'end', 'the', 'way', 'you', 'guys', 'did', 'it', 'back', 'then', '!', 'Yeah', '.', 'Don', '’', 't', 'do', 'this', 'to', 'yourself', '.', 'I', 'know', '.', 'Oh-oh', ',', 'Pottery', 'Barn', '!', 'You', 'can', 'throw', 'the', 'rest', 'away', '.', 'Monica', 'look', '!', 'Look-look-look', '!', 'Here', 'is', 'that', 'table', 'that', 'I', 'ordered', '.', 'Yeah', '!', 'It', '’', 's', 'an', 'apothecary', 'table', '.', 'Does', 'anyone', 'even', 'know', 'what', 'an', 'apothecary', 'is', '?', 'Phoebe', 'hates', 'Pottery', 'Barn', '?', '!', 'Well', 'this', 'has', 'story', 'behind', 'it', '!', 'I', 'mean', 'they', 'had', 'to', 'ship', 'it', 'all', 'the', 'way', 'from', 'the', 'White', 'Plains', 'store', '.', 'Okay', 'fine', '!', 'I', '’', 'll-I', '’', 'll', 'just', 'tell', 'her', 'it', '’', 's', 'an', 'antique', 'apothecary', 'table', ',', 'she', 'doesn', '’', 't', 'have', 'to', 'know', 'where', 'it', 'came', 'from', '.', 'Oh', '!', 'Look', 'at', 'this', 'little', 'drawers', '!', 'Oh', 'look-look', 'it', 'says', 'that', 'it', 'holds', '300', 'CDs', '.', 'Hey', '!', 'Guess', '!', 'Ha', '!', 'See', ',', 'I', 'knew', ',', 'I', 'knew', 'you', '’', 'd', 'get', 'it', 'on', 'the', 'first', 'guess', '.', 'Isn', '’', 't', 'it', 'cool', '!', 'It', '’', 's', 'an', 'apothecary', 'table', '.', 'Ohh', ',', 'yes', '.', 'Almost', '.', 'It', 'was', 'only', '500', 'bucks', '.', 'Oh', ',', 'okay', 'see', 'I', 'thought', ',', 'I', 'thought', 'you', 'meant', 'how', 'much', 'was', 'it', 'when', 'it', 'was', 'new', ',', 'y', '’', 'know', 'like', 'back', 'then', '.', 'Yeah', 'no', ',', 'I', 'mean', 'it', 'was', 'at', 'a', 'flea', 'market', ',', 'so', 'it', 'was', 'y', '’', 'know', ',', 'it', 'was', 'like', 'a', 'dollar', '.', 'And', 'fifty', '.', 'So', 'it', 'was', 'like', 'one', 'and', 'fifty', 'dollars', '.', 'Yeah', '.', 'Uh', ',', 'it', '’', 's', 'from', 'yore', '.', 'Like', 'the', 'days', 'of', 'yore', '.', 'Y', '’', 'know', '?', 'Yes', '!', 'That', 'I', 'know', ',', 'this', 'is', 'from', 'White', 'Plains', '.', 'Hey', '!', 'We', '’', 're', 'here', '!', 'Ohh', '!', 'Oh', 'my', 'God', '!', 'Oh', 'no', '!', 'Ross', '!', 'Phoebe', '’', 's', 'gon', 'na', 'be', 'here', 'any', 'second', ',', 'she', 'can', 'not', 'see', 'this', '!', 'I', 'know', 'you', 'did', '!', 'I', 'bought', 'the', 'same', 'one', '!', 'And', 'if', 'she', 'sees', 'your', 'table', 'she', '’', 's', 'gon', 'na', 'know', 'that', 'I', 'lied', 'to', 'her', '.', 'I', 'told', 'her', 'ours', 'was', 'an', 'original', '.', 'Because', 'she', 'hates', 'Pottery', 'Barn', '.', 'I', 'know', '!', 'I', 'know', ',', 'she', 'says', 'it', '’', 's', 'all', 'mass-produced', ',', 'nothing', 'is', 'authentic', ',', 'and', 'everyone', 'winds', 'up', 'having', 'the', 'same', 'stuff', '.', 'So', 'come', 'on', ',', 'she', '’', 's', 'gon', 'na', 'be', 'here', 'any', 'second', '!', 'Can', 'we', 'please', 'just', 'cover', 'this', 'up', 'with', 'something', '?', '!', 'Please', '?', 'Ooo', '!', 'Oh', ',', 'I', 'forgot', 'they', 'made', 'sheets', '!', 'Ross', ',', 'get', 'over', 'it', '!', 'It', '’', 's', 'not', 'like', 'she', 'hates', 'you', '.', 'Ross', ',', 'she', '’', 's', 'not', 'weird', ',', 'she', 'just', 'wants', 'her', 'stuff', 'to', 'be', 'one', 'of', 'a', 'kind', '.', 'Hey', '!', 'Ooh', ',', 'Phoebe', '’', 's', 'here', '!', 'Okay', ',', 'let', '’', 's', 'turn', 'out', 'all', 'the', 'lights', 'and', 'we', '’', 'll', 'just', 'watch', 'the', 'movie', '!', 'He', 'got', 'it', 'a', 'flea', 'market', '!', 'That', '’', 's', 'funny', '.', 'Ohh', '!', '!', 'Noooooo', '!', '!', 'Oh', 'my', 'God', ',', 'Phoebe', ',', 'Pottery', 'Barn', 'has', 'ripped', 'off', 'the', 'design', 'of', 'our', 'antique', '!', 'Oh', 'yes', '.', '...', 'see', 'I', 'can', '’', 't', 'decide', 'whether', 'it', 'would', 'go', 'better', 'next', 'to', 'the', 'new', 'wicker', 'dining', 'chair', ',', 'the', 'Sahara', 'desk', ',', 'or', 'the', 'Parker', 'console', 'table', '.', 'I', 'know', ',', 'I', 'know', '.', 'I', 'went', 'a', 'little', 'crazy', '.', 'Hey', '.', 'Oh', 'it', 'does', ',', 'it', 'does', '!', 'It', 'is', 'a', 'room', 'separating', 'apparatus', 'from', 'Colonial', 'times', '.', 'Well', 'there', '’', 's', 'yore', '.', 'And', 'uh', ',', 'y', '’', 'know', ',', 'yesteryear', '.', 'Oh', 'honey', 'he', 'doesn', '’', 't', 'need', 'my', 'help', '.', 'Y', '’', 'know', 'what', '?', 'I', 'don', '’', 't', ',', 'I', 'don', '’', 't', 'think', 'Phoebe', 'really', 'wants', 'to', 'come', '.', 'Oh', ',', 'she', 'does', 'want', 'to', '.', 'Pheebs', ',', 'I', 'don', '’', 't', 'know', 'what', 'to', 'say', '.', 'I', 'guess', 'the', 'flea', 'market', 'was', 'just', 'better', 'last', 'time', '.', 'Yeah', '.', 'Yeah', ',', 'y', '’', 'know', 'what', '?', 'Don', '’', 't', 'look', 'at', 'it', '.', 'Seriously', ',', 'don', '’', 't', 'look', 'at', 'it', '.', 'Ugh', ',', 'those', 'bastards', '!', 'Let', '’', 's', 'go', '.', 'No', '!', 'No', '!', 'No', '!', 'No', 'it', '’', 's', 'not', '!', 'No', 'it', '’', 's', 'not', '!', 'Come', 'on', '!', 'Phoebe', ',', 'ours', 'is', 'totally', 'different', '!', 'I', 'mean', 'we', 'don', '’', 't', 'have', 'the', '...', 'We', 'don', '’', 't', 'have', 'the', '...', 'that', 'lamp', '!', 'And-and', 'that', 'screen', 'is', 'y', '’', 'know', ',', 'on', 'the', 'other', 'side', '.', 'Okay', '!', 'Okay-okay', 'look—no', 'I', 'did', ',', 'I', 'just', 'wanted', 'this', 'stuff', 'and', 'I', 'know', 'how', 'you', 'feel', 'about', 'Pottery', 'Barn', '.', 'Just', '...', 'Come', 'on', 'don', '’', 't', 'be', 'mad', '.', 'Well', 'then', 'honey', ',', 'buy', 'the', 'lamp', '!', 'Hey', ',', 'we', 'have', 'that', '60', 'bucks', 'from', 'Ross', '.', 'What', '?', '!', 'No', '!', 'I', '’', 'm', 'not', 'gon', 'na', 'move', 'out', '!', 'Oh', '.', 'Yes', '!', 'I', 'would', 'so', 'move', 'out', '!', 'That', '’', 's', 'right', '!', 'I�m', 'sorry', ',', 'I', 'was', 'just', 'reading', 'the', 'joke', 'below', 'it', '.', 'Man', ',', 'that', 'one', 'is', 'funny', '.', 'We', 'are', 'looking', 'at', 'a', 'Playboy', '.', 'Oh', ',', 'yeah', ',', 'sure', '.', 'I', 'mean', ',', 'like', 'in', 'the', 'case', 'of', 'this', 'young', 'woman', ',', 'she', 'has', 'lost', 'her', 'clothes', ',', 'so', 'she', 'rides', 'naked', 'on', 'the', 'horse', ',', 'she�s', 'crying', 'out', ',', '�Where', 'are', 'they', ',', 'where', 'are', 'they', '?', '�', 'You', 'see', ',', 'now', ',', 'I', 'would', 'date', 'this', 'girl', '.', 'She�s', 'cute', ',', 'she�s', 'outdoorsy', ',', 'you', 'know', ',', 'and', 'she', 'knows', 'how', 'to', 'build', 'a', 'fire', '.', 'I', 'mean', ',', 'that�s', 'got', 'to', 'come', 'in', 'handy', 'I', 'don�t', 'know', '.', 'Monica', ',', 'what', 'are', 'you', 'doing', '?', 'Well', ',', 'people', 'are', 'different', '.', 'What', '?', 'Wait', 'a', 'minute', '.', 'What', 'are', 'you', 'saying', ',', 'that', 'I�m', 'a', 'pushover', '?', 'I�m', 'not', 'a', 'pushover', '.', 'Oh', 'my', '...', 'you', 'think', 'I�m', 'a', 'pushover', '.', 'Well', 'wait', ',', 'watch', 'this', ',', 'you', 'know', 'what', '?', 'You�re', 'not', 'invited', 'to', 'lunch', '.', 'What', 'do', 'you', 'think', 'of', 'that', '?', 'I', 'think', 'that�s', 'pretty', 'strong', ',', 'that�s', 'what', 'I', 'think', '.', 'Come', 'on', ',', 'Monica', ',', 'let�s', 'go', 'to', 'lunch', '.', 'I', 'can', 'not', 'believe', 'her', '.', 'Oh', ',', 'oh', ',', 'I', 'love', 'that', 'Japanese', 'place', '.', 'All', 'right', ',', 'wherever', 'you', 'wan', 'na', 'go', 'is', 'cool', '.', 'No', '.', 'Joey', ',', 'honey', ',', 'I', 'don�t', 'think', 'you�re', 'supposed', 'to', 'go', 'back', 'there', '.', 'Come', 'on', ',', 'Joey', ',', 'I', 'did', 'it', 'and', 'it', 'was', 'fine', '.', 'Well', ',', 'you', 'know', 'what', '?', 'This', 'is', 'great', '.', 'Finally', ',', 'I', 'have', 'someone', 'I', 'can', 'pass', 'on', 'my', 'wisdom', 'too', '.', 'Let', 'me', 'tell', 'you', 'about', 'a', 'couple', 'of', 'things', 'I', 'learned', 'while', 'working', 'at', 'the', 'coffeehouse', '.', 'First', 'of', 'all', ',', 'the', 'customer', 'is', 'always', 'right', '.', 'A', 'smile', 'goes', 'a', 'long', 'way', '.', 'And', 'if', 'anyone', 'is', 'ever', 'rude', 'to', 'you', '?', 'Sneeze', 'muffin', '.', 'Phoebe', '.', 'We', 'would', 'like', 'to', 'talk', 'to', 'you', 'for', 'a', 'second', '.', 'Yes', ',', 'we', 'are', 'very', 'sorry', 'to', 'tell', 'you', 'this', ',', 'but', 'you', ',', 'Phoebe', ',', 'are', 'flaky', '.', 'So', ',', 'what', ',', 'you�re', 'just', ',', 'you�re', 'just', 'okay', 'with', 'being', 'flaky', '?', 'Yeah', ',', 'and', 'I', 'am', 'okay', 'with', 'being', 'a', 'pushover', '.', 'I', 'am', 'not', 'a', 'pushover', '!', 'Wow', ',', 'you', 'know', 'what', '?', 'That', 'is', 'the', 'best', 'fake', 'speech', 'I', 'think', 'I�ve', 'ever', 'heard', '.', 'How-how', 'did', 'you', 'lose', 'your', 'job', 'here', '?', 'He', 'left', 'work', 'in', 'the', 'middle', 'of', 'the', 'day', 'to', 'do', 'a', 'personal', 'errand', 'and', 'left', 'you', 'in', 'charge', 'when', 'you�ve', 'been', 'working', 'here', 'two', 'days', '?', 'That�s', 'not', ',', 'that�s', 'not', 'right', '.', 'Joey', ',', 'you', 'can�t', 'let', 'him', 'get', 'away', 'with', 'that', '.', 'Ya', 'know', 'what', ',', 'I�m', 'not', 'going', 'to', 'let', 'him', 'get', 'away', 'with', 'that', '.', 'I�m', 'going', 'to', 'say', 'something', 'to', 'him', '.', 'No', ',', 'I', 'really', 'shouldn�t', 'say', 'anything', '.', 'No', ',', 'I', 'should', 'say', 'something', 'to', 'him', '.', 'Gunther', ',', 'I', 'want', 'you', 'to', 'give', 'Joey', 'his', 'job', 'back', '.', 'That', 'is', 'really', 'not', 'fair', 'that', 'you', 'have', 'to', 'fire', 'him', '.', 'What', '?', 'That�s', 'right', ',', 'he', 'can', 'have', 'his', 'job', 'back', '.', 'I�m', 'glad', 'we', 'got', 'that', 'all', 'straightened', 'out', '.', 'There', 'you', 'go', ',', 'Joey', ',', 'you', 'got', 'your', 'job', 'back', '.', 'Yeah', ',', 'pretty', 'nice', ',', 'huh', '?', 'Now', 'who�s', 'a', 'pushover', '?', 'Oh', ',', 'I�m', 'sorry', '.', 'Oh', ',', 'yeah', '.', 'Definitely', 'you', ',', 'Pheebs', '.', 'Hey', '.', 'Oh', ',', 'I', 'have', 'a', 'question', '.', 'If-if-if', 'one', 'of', 'you', 'had', 'to', 'pick', 'one', 'of', 'the', 'other', 'two', 'guys', 'to', 'go', 'out', 'with', ',', 'who', 'would', 'you', 'pick', '?', 'Wait', 'a', 'minute', ',', 'you�re', 'only', 'giving', 'free', 'stuff', 'away', 'to', 'the', 'pretty', 'girls', '?', 'Honey', ',', 'no', 'one', 'thinks', 'you�re', 'a', 'pansy', ',', 'but', 'we', 'do', 'think', 'you', 'need', 'a', 'tissue', '.', 'Oh', 'my', 'God', ',', 'Jill', '!', 'This', 'is', 'Chandler', '.', 'And', 'you', 'know', 'Monica', 'and', 'Ross', '!', 'And', 'that�s', 'Phoebe', ',', 'and', 'that�s', 'Joey', '.', 'Don�t', '!', '!', 'Honey', ',', 'what', 'are', 'you', 'doing', 'here', '?', '!', 'Wow', '!', 'What', 'did', 'he', 'say', '?', 'Oh', '!', 'Did', 'you', 'hear', 'that', '?', '!', 'My', 'dad�s', 'proud', 'of', 'me', '!', 'My', 'dad�s', 'proud', 'of', 'me', '.', 'Oh', 'yeah', ',', 'sorry', '.', 'Wait', 'honey', ',', 'so', 'what', 'did', 'you', 'do', 'that', 'made', 'dad', 'cut', 'you', 'off', '?', 'Jill', ',', 'honey', ',', 'I', 'think', 'this', 'is', 'the', 'best', 'thing', 'that', 'could�ve', 'ever', 'happened', 'to', 'you', '.', 'I', 'mean', 'you', 'needed', 'to', 'get', 'out', 'on', 'your', 'own', 'anyway', '!', 'And', 'you', 'know', 'when', 'I', 'did', 'it', ',', 'I-I-I', 'at', 'first', 'I', 'was', 'scared', ',', 'and', 'look', 'at', 'me', 'now', '!', 'I�m', 'the', 'only', 'daughter', 'dad', 'is', 'proud', 'of', '!', 'Okay', ',', 'well', 'this', 'is', ',', 'this', 'is', 'what', 'you�re', 'gon', 'na', 'do', '.', 'You�re', 'gon', 'na', 'get', 'a', 'job', ',', 'you�re', 'gon', 'na', 'get', 'an', 'apartment', ',', 'and', 'then', 'I�ll', 'help', 'you', 'and', 'you', 'can', 'stay', 'with', 'us', '.', 'Right', 'Pheebs', ',', 'she', 'can', 'stay', 'with', 'us', '?', 'Hey', '!', 'What�s', 'goin�', 'on', '?', 'Jill', '!', 'Did', 'you', 'shop', '?', '!', 'You', 'went', 'shopping', '?', '!', 'What', ',', 'and', 'then', 'you', 'just', 'came', 'in', 'here', 'and', 'paraded', 'it', 'right', 'under', 'Jill�s', 'nose', 'when', 'you', 'know', 'she�s', 'trying', 'to', 'quit', '.', 'Wow', ',', 'you', 'guys', 'are', 'terrible', '!', 'What�d', 'you', 'get', '?', 'Oh', '.', 'Apartment', 'pants', '?', 'No', ',', 'of', 'course', ',', 'of', 'course', 'I�ve', 'heard', 'of', 'them', '!', 'Ross', ',', 'what', 'did', 'you', 'get', '?', 'A', 'Pashmina', '?', 'Really', '?', 'Jill', '?', 'Oh', ',', 'come', 'on', '!', 'You', 'think', 'that�s', 'gon', 'na', 'work', 'on', 'me', '?', '!', 'I', 'invented', 'that', '!', 'All', 'right', ',', 'it�s', 'okay', '.', 'One', 'little', 'setback', 'is', 'okay', ',', 'just', 'don�t', 'let', 'it', 'happen', 'again', ',', 'all', 'right', '?', 'Now', 'since', 'daddy', 'paid', 'for', 'all', 'this', 'stuff', ',', 'I', 'should', 'take', 'it', 'all', 'away', '.', 'But', 'I�m', 'just', 'gon', 'na', 'take', 'the-the', 'Pashmina', '.', 'And', 'the', 'uh', ',', 'and', 'the', 'uh', 'pants', '.', 'Y�know', 'what', ',', 'I�m', 'just', 'gon', 'na', 'take', 'it', 'all', 'away', ',', '�cause', 'that', 'way', 'you�ll', 'just', 'really', 'learn', 'the', 'lesson', '.', 'Okay', '?', 'All', 'righty', ',', 'I�m', 'gon', 'na', 'run', 'a', 'couple', 'of', 'errands', 'and', 'I', 'will', 'see', 'you', 'at', 'dinner', '.', 'Hey', '!', 'What�s', 'up', '?', '!', 'Well', ',', 'it�d', 'better', 'not', 'be', 'about', 'the', 'apartment', 'pants', ',', 'because', 'I', 'just', 'pitched', 'the', 'idea', 'to', 'my', 'boss', 'at', 'Ralph', 'Lauren', 'and', 'she', 'loved', 'it', '.', 'What', '?', '!', 'With', 'Ross', 'and', 'Jill', '?', 'With', 'Ross', 'and', 'my', 'sister', '?', 'With', 'my', 'sister', 'Jill', 'and', 'my', 'ex-boyfriend', 'Ross', '?', 'Oh', 'there', 'is', 'no', 'way', '.', 'Oh', 'my', 'God', '!', 'I', 'can', 'not', 'believe', 'that', '!', 'I', 'mean', 'I', 'don�t', 'really', 'like', 'it', 'when', 'Ross', 'goes', 'out', 'with', 'anyone', ',', 'but', 'my', 'sister', 'isn�t', 'that', 'like', 'incest', 'or', 'something', '?', '!', 'Oh', 'my', 'God', ',', 'and', 'they�re', 'gon', 'na', 'have', 'sex', '!', 'Oh', '!', 'Oh', 'no', 'what', 'if', 'he', 'marries', 'her', 'too', '?', '!', 'Oh', 'this', 'is', 'just', 'terrible', ',', 'this', 'is', 'just', 'terrible', '.', 'And', 'I', 'can�t', 'stop', 'it', '!', 'I', 'can�t', '.', 'I', 'don�t', 'own', 'Ross', '!', 'Y�know', '?', 'And', 'Jill', ',', 'she', 'should', 'be', 'able', 'to', 'do', 'whatever', 'it', 'is', 'that', 'she', 'wants', 'to', 'do', '!', 'And', 'oh', 'my', 'God', ',', 'I', 'can�t', 'believe', 'Ross', 'is', 'marrying', 'my', 'little', 'sister', ',', 'this', 'terrible', '.', 'Oh', 'my', 'God', ',', 'this', 'is', 'just', 'the', 'worst', 'thing', 'that', 'could', 'have', 'ever', 'happened', 'to', 'me', '.', 'Oh', 'hi', '!', 'Y�know', ',', 'I', 'just', 'wanted', 'to', 'see', 'if', 'there', 'were', 'any', 'leads', 'on', 'the', 'old', 'job', 'front', '.', 'That', 'is', 'great', '.', 'Hey', ',', 'y�know', 'who', 'doesn�t', 'have', 'to', 'job', 'hunt', '?', 'Ross', '.', 'He', 'works', 'at', 'the', 'university', '.', 'Oh', 'so', 'you', 'know', 'that', ',', 'you', 'guys', 'talked', 'about', 'that', ',', 'so', 'you', 'get', 'along', ',', 'so', 'you', 'think', 'you�re', 'gon', 'na', 'go', 'out', '?', 'I', 'just', ',', 'Phoebe', ',', 'said', 'y�know', 'thought', 'she', 'saw', 'something', 'between', 'you', 'guys', '.', 'Yeah', '.', 'Oh', 'not-not', 'so', 'much', '.', 'Umm', ',', 'what-what', 'do', 'you', ',', 'what', 'do', 'you', 'mean', 'is', 'there', 'something', 'wrong', 'with', 'Ross', '?', 'Are-are', 'you', 'saying', 'he�s', 'a', 'geek', '?', 'No', '!', 'No', 'I', ',', 'no', 'Ross', 'is', 'not', 'a', 'geek', '!', 'What', 'handsome', 'is', 'not', 'your', 'type', '?', 'Smart', '?', 'Kind', '?', 'Good', 'kisser', '?', 'What', 'those', 'things', 'aren�t', 'on', 'your', 'list', '?', 'Ross', 'is', 'a', 'great', 'guy', '!', 'You', 'would', 'be', 'lucky', 'to', 'be', 'with', 'him', '!', 'Oh', 'no-no-no', ',', 'no-no-no', ',', 'that�s', 'not', 'what', 'I', 'meant', '.', 'Yeah', 'but', ',', 'he�s', 'not', 'your', 'type', '.', 'Yeah', 'but', ',', 'you', 'don�t', ',', 'you', 'don�t', ',', 'you', 'don�t', 'want', 'to', 'try', 'to', 'much', 'too', 'fast', '.', 'Y�know', '?', 'I', 'mean', ',', 'you', 'do', 'remember', 'what', 'happened', 'to', 'the', 'little', 'girl', 'that', 'tried', 'to', 'much', 'too', 'fast', 'don�t', 'you', '?', 'She-she', 'died', 'Jill', '.', 'Hi', '!', 'Well', 'yeah', '.', 'Really', '?', '!', 'Oh', 'so-so', 'not', 'really', 'never', '.', 'Hi', '!', 'Wh-what', 'are', 'you', 'doing', 'here', '?', 'Well', ',', 'I-I', 'don�t', 'like', 'it', '.', 'It�s', 'kinda', 'slutty', '.', 'Yeah', 'well', ',', 'I�m-I�m', 'a', 'slut', '.', 'Rachel', '.', 'Yeah', 'I', 'know', ',', 'and', 'I', 'bet', 'you', 'thought', 'it', 'would', 'be', 'weird', '.', 'But', 'it�s', 'not', '!', 'Why', 'aren�t', 'you', 'home', 'yet', '?', '!', 'Oh', 'yes', ',', 'it�s', 'me', '!', 'Sorry', '!', 'Uh', ',', 'I�m', 'just', ',', 'I�m', 'just', 'looking', 'out', 'your', 'window', '.', 'At-at', 'the', 'view', '.', 'What', 'are', 'you', 'guys', 'doing', '?', 'Oh', ',', 'he', 'brought', 'her', 'back', 'to', 'his', 'apartment', '.', 'Ugh', ',', 'she', 'is', 'a', 'slut', '!', 'Oh', 'my', 'God', ',', 'look-look', 'he�s', 'taking', 'off', 'her', 'clothes', '!', 'Oh', ',', 'this', 'is', 'just', 'terrible', '.', 'Oh', '.', 'Ross', 'is', 'on', 'a', 'date', 'with', 'my', 'sister', 'and', 'they', 'shut', 'the', 'drapes', 'two', 'and', 'a-half-hours', 'ago', '.', 'Yeah', '.', 'And', 'y�know', 'who', 'should�ve', 'shut', 'their', 'drapes', '?', 'Is', 'that', 'perverted', 'old', 'couple', 'two', 'doors', 'over', '.', 'Oh', 'don�t', 'even', 'ask', '!', 'Oh', 'Ross', ',', 'hi', '!', 'Hey', ',', 'how', 'are', 'ya', '?', 'There', 'you', 'are', '!', 'I�ll', 'take', 'a', 'coffee', '.', 'So', 'how', 'was', 'your', 'big', 'date', 'last', 'night', '?', 'Yeah', 'fun', '?', 'Great', '!', 'So', 'uh', ',', 'so', 'did', 'you', 'guys', 'hit', 'it', 'off', '?', 'So', 'uh', ',', 'so', 'did', 'anything', 'happen', '?', 'Because', 'rumour', 'has', 'it', 'you', 'guys', 'shut', 'the', 'drapes', '!', 'Oh', ',', 'slides', '.', 'So', 'really', 'nothing', 'happened', '.', 'Right', '.', 'Was', 'it', 'the', ',', '``', 'Please', 'don�t', 'show', 'me', 'another', 'picture', 'of', 'a', 'trilobite', 'vibe', '?', \"''\", 'She', 'asked-asked', 'you', 'out', 'again', '?', 'Okay-okay-okay-okay-okay-okay-okay', '!', 'I', 'got', 'it', '!', 'I', 'got', 'it', '!', 'I', 'got', 'it', '!', 'I', 'can�t', '!', 'I', 'can�t', '!', 'I', 'can�t', '!', 'I', 'can', 'not', 'go', 'with', 'you', 'and', 'my', 'sister', 'thing', '.', 'Okay', '?', 'I', 'just', 'can�t', '.', 'It�s', 'just', 'too', 'weird', ',', 'all', 'right', '?', 'I', 'imagine', 'the', 'two', 'of', 'you', 'together', 'and', 'I', 'freak', 'out', '.', 'It', 'freaks', 'me', 'out', '.', 'I', 'can�t', 'do', 'it', '!', 'I', 'can�t', 'do', 'it', '.', 'Thank', 'you', '.', 'I', '...', 'yeah', '.', 'No-no-no', '!', 'No-no-no', '!', 'Please', 'Ross', ',', 'I', 'can�t', '!', 'I', 'can�t', 'do', 'it', '!', 'It�s', 'just', 'gon', 'na', 'freak', 'me', 'out', '!', '!', '!', 'Ross', 'thanks', '.', 'Oh', 'no', '!', 'No', '!', 'No-no-no-no', '!', 'No', ',', 'I', 'mean', 'come', 'on', 'that�s-that�s', 'crazy', '.', 'I', 'mean', 'that�s', 'crazy', '.', 'So', 'what�s-what�s', 'going', 'on', 'with', 'you', '?', 'What', 'is', 'going', 'on', 'with', 'you', '?', 'Yeah', 'do', 'it', 'now', ',', 'call', 'right', 'now', '.', 'Hey', '!', 'Ohhh', 'well', '.', 'Y�know', 'what', 'honey', '?', 'The', 'best', 'thing', 'to', 'do', 'to', 'get', 'over', 'a', 'guy', 'is', 'to', 'start', 'dating', 'someone', 'else', '.', 'Oh', '!', 'There', 'is', 'this', 'great', 'guy', 'you', 'will', 'love', 'at', 'work', 'named', 'Bob', '!', 'He�s', 'a', 'real', 'up-and-comer', 'in', 'Human', 'Resources', '.', 'It�s', 'not', 'random', ',', 'it�s', 'Bob', '.', 'No', 'honey', ',', 'okay', ',', 'okay', ',', 'you', 'wan', 'na', 'know', 'why', 'Ross', 'canceled', 'the', 'date', '?', 'Because', 'I', 'asked', 'him', 'to', '.', 'Hm-mmm', '.', 'Because', 'you', 'are', 'my', 'sister', 'and', 'Ross', 'and', 'I', 'have', 'this', 'huge', 'history', '.', 'No', '.', 'Y�know', 'Bob', 'in', 'Human', 'Resources�', 'Look', ',', 'this', 'is', 'not', 'that', 'big', 'of', 'a', 'deal', '!', 'You', 'just', 'don�t', 'date', 'Ross', '!', 'There�s', 'a', 'million', 'other', 'guys', 'out', 'there', ',', 'you', 'just', '...', 'I�m', 'not', 'telling', 'you', 'what', 'to', 'do', '!', 'I', 'am', 'telling', 'you', 'what', 'not', 'to', 'do', '!', 'Jill', 'this', 'is', 'not', 'about', 'me', 'being', 'jealous', 'of', 'you', '!', 'This', 'is', 'about', 'you', 'being', 'a', 'brat', '!', 'Wanting', 'what', 'you', 'can�t', 'have', '!', 'All', 'right', ',', 'all', 'right', ',', 'well', 'you', 'just', 'blew', 'your', 'chances', 'at', 'dating', 'Bob', '!', 'In', 'Human', 'Resources', '!', '!', '!', '!', '!', '!', '...', 'I', 'am', 'jealous', 'of', 'her', '?', '!', 'I', 'mean', 'who', 'does', 'she', 'think', 'she', 'is', '?', '!', 'Princess', 'Caroline', '?', '!', 'Do', 'I', 'have', 'my', 'own', 'castle', '?', 'No', '.', 'Oh', 'my', 'God', '!', 'Wow', '!', 'I', 'mean', ',', 'I', 'just', '...', 'I', 'can�t', ',', 'I', 'can�t', 'believe', 'this', '.', 'Y�know', ',', 'I', 'mean', 'you', 'think', 'you', 'know', 'someone', 'even', ',', 'even', 'Phoebe', 'who�s', 'always', 'been', 'somewhat', 'of', 'a', 'question', 'mark', '.', 'Absolutely', 'not', '.', 'Probably', 'just', 'the', 'first', 'half', '.', 'Well', 'it�s', 'hard', 'to', 'tell', '..', 'Oh', 'God', ',', 'if', 'she', 'would', 'just', 'stop', 'moving', '.', 'Oh', ',', 'it�s', 'a', 'tattoo', '!', 'That�s', 'weird', ',', 'Phoebe', 'doesn�t', '.', 'Wait', 'that�s', 'Ursula', '!', 'That�s', 'not', 'Phoebe', 'that', 'is', 'Ursula', '!', 'Hey', '!', 'Have', 'you', 'guys', 'seen', 'Jill', '?', 'I', 'can�t', 'find', 'her', 'anywhere', '.', 'Well', ',', 'is', 'Ross', 'home', '?', 'Maybe', 'I�ll', 'just', 'call', 'him', 'to', 'see', 'if', 'he�s', 'actually', 'seen', 'her', '.', 'What', 'is', 'my', 'sister', 'doing', 'there', '?', '!', 'And', 'why', 'are', 'the', 'drapes', 'shut', '?', '!', 'Ross', '!', 'I', 'think', 'she', 'is', 'trying', 'to', 'make', 'something', 'happen', 'with', 'you', 'to', 'get', 'back', 'at', 'me', '!', 'Ross', ',', 'I', 'am', 'telling', 'you', 'that', 'she', 'is', 'using', 'you', 'to', 'get', 'back', 'at', 'me', '!', 'Oh', '!', 'I', 'knew', 'it', '!', 'What', 'happened', '?', 'What', '?', '!', 'You', 'kissed', '!', 'Well', ',', 'it', 'doesn�t', 'sound', 'like', 'it', '!', 'I', 'mean', ',', 'it�s', 'pretty', 'easy', 'not', 'to', 'kiss', 'someone', ',', 'you', 'just', 'don�t', 'kiss', 'them', '!', 'See', 'look', 'at', 'us', ',', 'right', 'now', ',', 'not', 'kissing', '!', 'Yeah', 'that�s', 'right', 'you', 'weren�t', 'thinking', '!', 'Y�know', 'what', '?', 'Let', 'me', 'give', 'you', 'something', 'to', 'think', 'about', '!', 'Oh', ',', 'well', 'thank', 'you', 'for', 'taking', 'your', 'tongue', 'out', 'of', 'my', 'sister�s', 'mouth', 'long', 'enough', 'to', 'tell', 'me', 'that', '.', 'What', '?', '!', 'Wow', '.', 'I', ',', 'I', 'don�t', 'even', 'know', 'what', 'to', 'say', '.', 'Thank', 'you', '.', 'Yeah', ',', 'I', 'got', 'that', '.', 'Bye-bye-e', '!', 'Hey', ',', 'you', 'guys', '!', 'Guess', 'what', '?', 'Barry', 'and', 'Mindy', 'are', 'getting', 'a', 'divorce', '!', 'Barry', 'was', 'the', 'guy', 'that', 'I', 'was', 'almost', 'married', 'and', 'Mindy', 'was', 'my', 'best', 'friend', '.', 'Yeah', ',', 'but', 'that', 'just', 'means', 'that', 'he', 'was', 'falling', 'asleep', 'on', 'top', 'of', 'her', 'instead', 'of', 'me', '.', 'Well', ',', 'apparently', 'she', 'caught', 'him', 'cheating', 'on', 'her', 'with', 'someone', 'else', '.', 'Isn�t', 'that', 'sad', '?', 'God', ',', 'could', 'you', 'imagine', 'if', 'I', 'actually', 'married', 'him', '?', '!', 'I', 'mean', 'how', 'different', 'would', 'my', 'life', 'be', '?', 'Merrill', 'Lynch', '?', 'Well', 'why', 'didn�t', 'you', 'take', 'the', 'job', '?', 'Rob', 'Tillman', '!', 'Oh', ',', 'I�m', 'sorry', '.', 'Ross', 'Tillman', '.', 'Ohh', ',', 'of', 'course', 'Monica�s', 'brother', '!', 'Wow', '!', 'How', 'are', 'you', '?', '!', 'Ohh', '!', 'Me', 'too', '!', 'Oh', ',', 'it�s', 'the', 'best', '!', 'So', ',', 'umm', 'how�s', 'Monica', '?', 'Ohh', ',', 'I', 'would', 'love', 'too', '.', 'Ohh', '!', 'Okay', '!', 'Oh', 'wait', ',', 'don�t', 'you', 'have', 'to', 'pay', 'for', 'your', ',', 'Busty', 'Ladies', '?', 'Oh', 'yeah', '?', 'Okay', '.', 'But', '!', 'Don�t', 'you', 'have', 'to', 'give', 'him', 'his', 'money', 'back', '?', 'Ohh', ',', 'so', 'do', 'you', '!', 'Did', 'you', 'lose', 'weight', '?', 'Oh', 'yeah', '.', 'Oh', 'yeah', '.', 'Right', '.', 'So', 'now', ',', 'are', '...', 'do', 'you', ',', 'do', 'you', 'still', 'do', 'music', '?', 'Oh', 'my', 'God', '!', 'Joey', 'Tribbiani', 'from', 'Days', 'of', 'Our', 'Lives', ',', 'just', 'walked', 'in', 'here', '!', 'You', 'are', 'friends', 'with', 'Dr.', 'Drake', 'Remoray', '?', 'He�s', 'coming', 'over', '!', 'He�s', 'coming', 'over', '!', 'Hi', '!', 'Hi', '!', 'I', 'love', 'you', 'on', 'that', 'show', '!', 'I', 'watch', 'you', 'everyday', '!', 'I', 'mean', ',', 'when', 'you', 'took', 'out', 'your', 'own', 'kidney', 'to', 'save', 'your', 'ex-wife', 'even', 'though', 'she', 'tried', 'to', 'kill', 'you', '.', 'Ah', '!', 'Wow', '!', 'This', 'is', 'so', 'amazing', '!', 'What', 'else', '?', 'What', 'else', '?', 'Hey', '!', 'Wow', '!', 'Umm', ',', 'y�know', ',', 'I-I', 'would', 'really', 'love', 'to', ',', 'but', 'I-I', 'shouldn�t', '.', 'Isn�t', 'that', 'a', 'line', 'from', 'the', 'show', '?', '!', 'That�s', 'a', 'line', 'from', 'the', 'show', 'too', '!', 'Yeah', 'sure', ',', 'iced', 'tea', 'would', 'be', 'great', '.', 'Yes', ',', 'you', 'did', '.', 'Oh', 'Mon', ',', 'listen', 'I', 'have', 'to', 'ask', '!', 'Okay', ',', 'Joey', 'Tribbiani', 'invited', 'me', 'back', 'to', 'his', 'apartment', ',', 'now', 'does', 'he', 'do', 'this', 'with', 'a', 'lot', 'of', 'girls', '?', 'Ohh', '!', 'And', 'I�m', 'one', 'of', 'them', '!', '!', 'Wow', '!', 'Oh', ',', 'I', 'just', 'can', 'not', 'believe', 'this', '!', 'I', 'mean', ',', 'Joey', 'Tribbiani', '!', 'Yeah', '.', 'Oh', 'I', 'just', 'wish', 'we', 'could', 'not', 'be', 'married', 'for', 'a', 'little', 'bit', '!', 'Y�know', 'I', 'just', 'wish', 'we', 'could', 'be', 'like', 'on', 'a', 'break', '!', 'Oh', ',', 'it�s', 'so', 'easy', 'for', 'you', 'I', 'mean', ',', 'you�re', 'not', 'married', ',', 'you', 'get', 'to', 'have', 'sex', 'with', 'who', 'ever', 'you', 'want', '!', 'Monica', '.', 'You�ve', ',', 'you�ve', 'done', 'it', 'right', '?', 'Oh', 'my', 'God', '!', 'You�re', 'a', '30', 'year', 'old', 'virgin', '!', 'Oh', 'my', 'God', '!', '!', 'Do', 'it', '!', '!', 'Honey', ',', 'you�ve', 'waited', 'long', 'enough', '!', '!', 'Yes', '!', '!', 'I', 'mean', 'sex', 'does', 'not', 'have', 'to', 'be', 'a', 'big', 'deal', '!', 'There', 'shouldn�t', 'be', 'all', 'this', 'rules', 'and', 'restrictions', '!', 'Y�know', ',', 'people', 'should', 'be', 'able', 'to', 'sleep', 'with', 'who', 'ever', 'they', 'want', ',', 'whenever', '.', 'Oh', 'what', 'do', 'you', 'know', '?', 'Virgin', '!', 'Oh', '!', 'Thank', 'God', '!', 'Okay', '!', 'Here', 'we', 'go', '!', 'Okay', '!', 'Hi', ',', 'Joey', '!', 'It�s', 'Rachel', '!', 'Umm', ',', 'I', 'am', 'free', 'tomorrow', 'night', '.', 'Yeah', ',', 'sure', ',', 'sure', 'I', 'can', 'bring', 'some', 'sandwiches', '.', 'Ohh', ',', 'I', 'mean', 'it�s', 'just', 'so', 'realistic', '!', 'Pat', 'the', 'dog', '.', 'Oh', '!', 'Oh', '!', 'I', 'get', 'it', '!', '!', 'Oh', ',', 'I', 'probably', 'shouldn�t', '...', 'so', 'I', 'will', '!', 'Oh', '!', 'Wow', '!', 'It�s', 'like', 'it�s', 'raining', '!', 'Umm', ',', 'can', 'I', 'use', 'your', 'bathroom', '?', 'Okay', '.', 'God', 'y�know', ',', 'if', 'someone', 'told', 'me', 'a', 'week', 'ago', 'that', 'I', 'would', 'be', 'peeing', 'in', 'Joey', 'Tribbiani�s', 'apartment', '.', 'Yeah', ',', 'it', 'sure', 'is', '!', 'Joey', ',', 'you�re', 'such', 'an', 'amazing', 'actor', '!', 'How', 'do', 'you', 'know', 'where', 'Dr.', 'Drake', 'Remoray', 'leaves', 'off', 'and', 'Joey', 'Tribbiani', 'begins', '?', 'Wow', '!', 'Tell', 'me', 'something', 'Joey', '......', 'Whoa', '!', 'I', 'just', 'fell', 'right', 'off', 'the', 'couch', 'there', '.', 'Okay', '.', 'Yeah', '?', 'Wow', '!', 'I', 'can�t', ',', 'I', 'can�t', 'feel', 'my', 'hands', '.', 'Oh', 'right', '.', 'Oh', 'God', '.', 'Oh', 'I', 'can�t', 'believe', 'Joey', 'Tribbiani', 'heard', 'me', 'throw', 'up', '!', 'Noo', '!', 'Oh', 'God', 'we', 'did', '...', 'we', 'didn�t', ',', 'we', 'didn�t', 'uhh', '...', 'God', 'I�m', 'just', 'a', 'horrible', 'person', '.', 'Because', 'I�m', 'married', '.', 'That�s', 'right', ',', 'I', 'am', 'a', 'married', 'woman', '!', 'And', 'I', 'came', 'to', 'a', 'TV', 'star�s', 'apartment', 'to', 'have', 'an', 'affair', '!', 'Uck', '!', 'Yeah', 'and', 'I�m', 'a', 'horrible', ',', 'horrible', 'person', '.', 'The', 'ring', 'from', 'the', 'cave', ',', 'yeah', '.', 'Oh', 'my', 'God', ',', 'they', 'let', 'you', 'keep', 'that', 'stuff', '?', '!', 'No', '!', 'No-no-no', '...', 'But', 'I', 'thought', 'that', 'ring', 'stood', 'for', 'Caprice�s', 'undying', 'love', 'for', 'her', 'brother', '.', 'Yeah', '!', 'Ohh', '!', 'My', 'God', '!', 'Barry', '!', '!', 'Oh', 'that�s', 'right', '!', 'I�m', 'sorry', '!', 'I-I', 'am', 'early', '!', 'Finish', '!', 'Please', '!', '!', 'Hi', 'Ross', '!', 'Is', 'Joey', 'Tribbiani', 'here', '?', 'Well', ',', 'if', 'you', 'see', 'him', ',', 'will', 'you', 'please', 'tell', 'him', 'that', 'I�m', 'looking', 'for', 'him', 'and', 'that', 'this', 'I', 'am', 'not', 'gon', 'na', 'throw', 'up', '!', 'Me', '?', 'I�m', 'great', '!', 'I�m', 'fine', '!', 'I�m', 'sooo', 'good', '!', '!', 'But', ',', 'you', 'know', 'who�s', 'not', 'great', '?', '!', 'Men', '!', 'You�re', 'a', 'man', 'right', 'Ross', '?', '!', 'Sit', 'down', '!', 'Let', 'me', 'uh', ',', 'let', 'me', 'ask', 'you', 'something', ',', 'do', 'wedding', 'vows', 'mean', 'squat', 'to', 'you', 'people', '?', '!', 'And', 'why', 'is', 'it', 'that', 'the', 'second', 'we', 'tell', 'you', 'we�re', 'going', 'out', 'of', 'town', ',', 'bamn', 'there', 'you', 'are', 'in', 'bed', 'with', 'the', 'neighbor�s', 'dog', 'walker', '?', '!', 'No', 'seriously', '!', 'Seriously', '!', 'What', 'has', 'happened', 'to', 'the', 'sanctity', 'of', 'marriage', '?', 'Aw', 'what', 'are', 'you', '?', '!', 'A', 'detective', '?', 'Oh', '.', 'Who', 'are', 'these', 'men', '?', 'Well', ',', 'you', 'might', 'want', 'to', 'tell', 'him', 'it', 'sounds', 'like', 'his', 'wife', 'is', 'gay', '.', 'Good', 'day', 'for', 'married', 'people', 'huh', '?', 'I�m', 'sorry', 'your', 'wife', 'is', 'gay', '.', 'I', 'guess', 'women', 'aren�t', 'that', 'great', 'either', '.', 'Yeah', ',', 'kicking', 'a', 'guy', 'in', 'the', 'crotch', 'all', 'morning', 'really', 'takes', 'it', 'out', 'of', 'ya', '!', 'Yeah', '!', 'What', '?', 'You', 'wan', 'na', 'see', 'me', 'self-defend', 'myself', '?', '!', 'Go', 'over', 'there', 'and', 'pretend', 'you�re', 'a', 'sexual', 'predator', '!', 'Go', 'on', '!', 'I', 'dare', 'ya', '!', '!', 'Isn�t', 'that', 'a', 'kind', 'of', 'sushi', '?', 'Ohh', '!', 'I', 'would', 'kill', 'for', 'a', 'salmon', 'skin', 'roll', 'right', 'now', '!', 'Ooh', '!', 'Y�know', 'what', '?', 'If', 'we', 'made', 'reservations', ',', 'we', 'could', 'have', 'unagi', 'in', 'about', 'a', 'half-hour', '.', 'Well', ',', 'Valentine�s', 'Day', 'was', 'like', 'two', 'weeks', 'ago', ',', 'so', 'I', 'wouldn�t', 'get', 'her', 'a', 'calendar', '!', 'Aw', ',', 'I', 'love', 'that', '.', 'Okay-okay-okay', '!', 'So', ',', 'making', 'things', '.', 'That', 'sounds', 'like', 'so', 'much', 'fun', '.', 'Hey', ',', 'wait', 'a', 'minute', '!', 'That', 'is', 'my', 'sock', '!', 'What', 'the', 'hell', 'was', 'that', '?', '!', 'All', 'right', ',', 'so', 'we', 'weren�t', 'prepared', '!', 'Ahhhhh', ',', 'salmon', 'skin', 'roll', '.', 'Yep', '!', 'Oh', ',', 'of', 'course', '!', 'Definitely', '!', 'Phoebe', ',', 'you', 'will', 'not', 'find', 'a', 'single', 'game', 'show', 'host', ',', 'who�s', 'ass', 'I', 'can', 'not', 'kick', '.', 'Say', 'it', '!', 'Say', 'it', '!', 'I', 'don�t', 'like', 'sitting', 'up', 'here', '!', 'I�m', 'just', 'gon', 'na', 'over', '...', 'Oh', 'my', 'God', '!', 'Why', 'is', 'he', 'jumping', 'on', 'those', 'women', '!', 'I', '...', 'Well', ',', 'I', 'don�t', 'think', 'they', 'need', 'any', 'help', '.', 'Who', 'wrote', 'it', '?', 'Okay', ',', 'wait', 'a', 'minute', ',', 'wait', 'a', 'minute', ',', 'why', 'are', 'we', 'so', 'sure', 'that', 'this', 'is', 'a', 'girl', '?', 'Hey', 'Mon', '?', 'I�m', 'gon', 'na', 'check', 'my', 'messages', '.', 'Hello', '?', 'Uh', ',', 'Rachel', '.', 'Great', ',', 'someone', 'is', 'in', 'our', 'apartment', '.', 'Call', 'the', 'cops', '!', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', 'Thank', 'you', '!', 'That', 'was', 'the', 'fire', 'department', ',', 'there', 'was', 'a', 'fire', 'at', 'our', 'place', '!', 'Well', ',', 'he', 'didn�t', 'say', ',', 'but', 'it', 'was', 'a', 'fire', '.', 'I�m', 'guessing', 'not', 'very', 'good', '.', 'Come', 'on', ',', 'we', 'got', 'ta', 'go', '!', 'My', 'God', '!', 'Everything�s', 'ruined', '.', 'My', 'bed', '.', 'My', 'clothes', '.', 'Look', 'at', 'my', 'favorite', 'blue', 'sweater', '.', 'Fine', '!', 'I�m', 'sorry', 'for', 'your', 'loss', '!', 'Wow', '!', 'Oh-okay', ',', 'look', 'pal', ',', 'I', 'am', 'not', 'in', 'the', 'mood', 'to', 'be', 'hit', 'on', 'right', 'now', '!', 'But', 'if', 'you', 'give', 'me', 'your', 'number', 'I', 'will', 'call', 'you', 'some', 'other', 'time', '.', 'Okay', 'Phoebe', 'calm', 'down', ',', 'there�s', 'no', 'need', 'to', 'place', 'blame', '.', 'Okay', '?', 'I', 'warned', 'her', 'about', 'those', 'candles', '.', 'Oh', 'my', 'God', '!', 'It', 'sure', 'didn�t', 'look', 'this', 'way', 'when', 'I', 'lived', 'here', '.', 'Hey', '!', 'Hey-hey', ',', 'now', 'this', 'was', 'no', 'one�s', 'fault', 'Pheebs', '.', 'Okay', '?', 'It', 'was', 'an', 'accident', '.', 'Okay', '!', 'I', 'have', '.', 'I', 'did', '.', 'I', 'did', ',', 'Monica', 'was', 'so', 'sweet', 'she', 'left', 'a', 'little', 'mint', 'on', 'my', 'pillow', '.', 'What', '?', 'Well', ',', 'don�t', 'look', 'at', 'me', '!', 'My', 'hair�s', 'straight', '!', 'Straight', '!', 'Straight', '!', 'Straight', '!', 'Oh', '.', 'Oh', ',', 'Joey', '!', 'Sorry', '!', 'Oh', 'but', 'look', '!', 'That�s', 'gon', 'na', 'leave', 'a', 'stain', '!', 'Really', '?', 'I�ve', 'never', 'lived', 'like', 'this', 'before', '.', 'I', 'love', 'it', 'at', 'Joey�s', '!', 'Thanks', '!', 'Hi', '!', 'Uh-huh', '.', 'No', ',', 'no-no-no', '.', 'Phoebe', ',', 'this', 'was', 'my', 'fault', 'and', 'besides', 'y�know', 'what', '?', 'I�m', 'fine', 'here', '.', 'No', '!', 'No', '!', 'Phoebe', ',', 'come', 'on', '!', 'I', 'don�t', 'want', 'to', 'switch', '!', 'Please', 'come', 'on', '!', 'I', 'can', 'throw', 'wet', 'paper', 'towels', 'here', '!', 'I', 'know', '.', 'I�m', 'sorry', '.', 'Hi', 'Joey', ',', 'how', 'ya', 'doin�', '?', 'Huh', ',', 'yeah', 'I', 'guess', 'we', 'are', 'roommates', 'now', '.', 'I�m', 'not', 'paying', 'for', 'half', 'of', 'that', '!', 'I�m', 'only', 'staying', 'here', 'until', 'my', 'apartment', 'gets', 'fixed', '.', 'That', 'refrigerators', 'don�t', 'live', 'as', 'long', 'as', 'people', '.', 'You�re', 'jokin�', 'right', '?', 'Thank', 'God', 'you�re', 'pretty', '.', 'Hey', '!', 'Do', 'you', 'guys', 'know', 'any', 'cute', 'guys', '?', 'Anyway', ',', 'there�s', 'this', 'big', 'charity', 'ball', 'this', 'weekend', 'and', 'Ralph', 'Lauren', 'bought', 'a', 'table', ',', 'so', 'I', 'kinda', 'have', 'to', 'go', '...', 'I', 'don�t', 'know', ',', 'something', 'either', 'trees', 'or', 'disease', '...', 'Ralph', 'mumbles', 'a', 'lot', '.', 'Yeah', '!', 'It�s', 'weird', '.', 'But', 'the', 'thing', 'is', 'need', 'to', 'find', 'a', 'date', '.', 'Well', ',', 'someone', 'that', 'has', 'his', 'own', 'tux', ',', 'or', 'has', 'the', 'ability', 'to', 'rent', 'a', 'tux', '.', 'Oo', '!', 'When�s', 'her', 'birthday', '?', '!', 'Well', ',', 'y�know', 'it�s', 'just', 'been', 'so', 'long', 'since', 'I�ve', 'been', 'to', 'Chuckie', 'Cheese', '.', 'Hey', '!', 'You', 'guys', 'umm', ',', 'I', 'want', 'you', 'to', 'meet', 'Sebastian', '.', 'We', 'just', 'uh', ',', 'we', 'just', 'met', 'at', 'the', 'newsstand', '.', 'We', 'both', 'grabbed', 'for', 'the', 'last', 'Field', '&', 'amp', ';', 'Stream', '.', 'What', '?', 'I', 'read', 'that', '.', 'Oh', 'yes', '!', 'Thank', 'you', '!', 'What', '?', 'You', 'found', 'me', 'a', 'guy', '?', 'Well', ',', 'y�know', 'what', 'though', 'you', 'guys', '?', 'I', 'really', 'appreciate', 'that', 'but', 'I', 'think', 'I�m', 'just', 'gon', 'na', 'take', 'Sebastian', 'to', 'the', 'charity', '.', 'Oh', ',', 'thank', 'you', '.', 'What', 'are', 'you', 'guys', 'doing', '?', 'Oh', ',', 'but', 'y�know', ',', 'no', ',', 'you', 'didn�t', 'give', 'me', 'your', 'phone', 'number', '.', 'I', 'can', 'not', 'believe', 'you', 'guys', '!', 'He', 'was', 'really', 'nice', 'and', 'he', 'left', 'because', 'of', 'you', '!', 'All', 'right', '.', 'Yes', ',', 'I�ll', 'meet', '�em', '.', 'Hi', '!', 'Oh', '...', 'I', 'don�t', 'know', '.', 'I', 'know', 'I', 'don�t', 'work', 'late', 'tomorrow', 'night', '.', 'What', '?', 'Well-well', 'a', 'little', 'blind', 'sided', 'but', 'y�know', 'good', '.', 'I', '...', 'Ohh', '!', 'Yeah', '?', 'Oh', ',', 'hi', '.', 'Yeah', '?', 'Oh-okay', ',', 'but', 'Pheebs', '?', 'I�m', 'just', 'sort', 'of', 'in', 'the', 'middle', 'of', 'something', '.', 'Okay', ',', 'y�know', 'what', '?', 'Maybe', 'I', 'should', 'go', '!', 'Yeah', ',', 'I�m', 'good', '.', 'No-no', '!', 'Don�t', 'dance', 'for', 'me', '!', 'Please', '?', 'Don�t', '!', 'What', 'is', 'the', 'matter', 'with', 'you', 'guys', '?', 'I', '....', 'Am', 'I', 'the', 'only', 'one', 'that', 'this', 'is', 'embarrassing', 'for', '?', 'I�ll', 'tell', 'ya', 'who', 'should', 'be', 'embarrassed', '!', 'It�s', 'you', 'guys', '!', 'Come', 'on', '!', 'This', 'is', 'ridiculous', '!', 'Thank', 'you', 'very', 'much', ',', 'but', 'I', 'do', 'not', 'need', 'you', 'to', 'get', 'me', 'a', 'date', '!', 'I', 'am', 'still', 'talking', '!', '!', 'And', 'then', 'you', 'chase', 'away', 'the', 'one', 'guy', 'that', 'I', 'actually', 'liked', '!', 'I', 'mean', ',', 'no', 'offense', 'to', 'you', 'guys', '.', 'Really', '!', 'I', 'mean', 'congratulations', 'on', 'all', 'the', 'cash', ',', 'and-and', 'y�know', '...', '....', 'Wow', '!', 'You', 'do', 'have', 'very', 'soft', 'hair', '!', 'But', 'I', 'would', 'much', 'rather', 'go', 'to', 'the', 'ball', 'all', 'by', 'myself', 'than', 'go', 'through', 'anymore', 'of', 'this', '!', 'Good-bye', '!', 'Now', 'do', 'you', 'use', 'some', 'sort', 'of', 'special', 'conditioner', 'on', 'that', 'hair', '?', '!', 'Thank', 'you', '!', 'Oh', 'that�s', 'all', 'right', '!', 'Y�know', ',', 'I', 'ended', 'up', 'having', 'a', 'really', 'good', 'time', '.', 'Y�know', ',', 'the', 'charity', 'was', 'a', 'big', 'success', 'and', 'they', 'raised', 'a', 'lot', 'of', 'money', 'and', 'awareness', '.', 'I', 'wan', 'na', 'say', 'a', 'disease', '.', 'Huh', '.', 'All', 'right', '.', 'Oh-oh', 'Professor', 'Geller', '.', 'So', 'Mac', 'and', 'C.H.E.E.S.E', '.', 'Huh', '...', 'Wait', 'so', 'Joey', 'if', 'you', 'get', 'this', ',', 'you�re', 'gon', 'na', 'be', 'like', 'the', 'star', 'of', 'your', 'own', 'TV', 'show', '!', 'I', 'mean', 'you�ll', 'be', 'like', 'the', 'Big', 'Cheese', '!', 'Or', 'the', 'Big', 'Mac', '...', 'Hey', '!', 'You', 'love', 'those', '!', 'Joey', ',', 'what', 'are', 'you', 'talking', 'about', '?', 'You�re', 'a', 'terrific', 'actor', '.', 'Ugh', ',', 'how', 'can', 'you', 'even', 'ask', 'that', 'question', '?', '!', 'I', \"'m\", 'sorry', ',', 'what', '?', 'Monica', ',', 'I�m', 'quitting', '!', 'I', 'just', 'helped', 'an', '81', 'year', 'old', 'woman', 'put', 'on', 'a', 'thong', 'and', 'she', 'didn�t', 'even', 'buy', 'it', '!', 'I�m', 'telling', 'you', 'I�m', 'quitting', '!', 'That�s', 'it', '!', 'I�m', 'talking', 'to', 'my', 'boss', 'right', 'now', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Yes', 'I', 'am', '!', 'Okay', 'bye', ',', 'call', 'me', 'when', 'you', 'get', 'this', 'message', '.', 'Of', 'course', 'he', 'will', '!', 'But', 'Chandler', 'the', 'most', 'important', 'thing', 'is', 'you', 'forgive', 'yourself', '!', 'Already', '?', 'That�s', 'pretty', 'bad', 'what', 'you', 'did', '.', 'I�m', 'sure', 'he', 'will', 'forgive', 'you', '.', 'Look', ',', 'we', 'have', 'all', 'been', 'there', '!', 'Y�know', ',', 'you', 'fight', ',', 'you', 'make', 'up', ',', 'it�s', 'just', 'the', 'way', 'it', 'works', '.', 'Yeah', '!', 'You', 'and', 'that', 'girl', 'from', 'that', 'copy', 'place', ',', 'which', 'yesterday', 'you', 'took', 'full', 'responsibility', 'for', '!', '!', 'What', '?', '!', '!', 'You', 'fell', 'asleep', '?', '!', \"Y'know\", 'I', 'can�t', 'believe', 'I', 'even', 'thought', 'about', 'getting', 'back', 'together', 'again', '!', 'We', 'are', 'so', 'over', '!', '!', 'And', 'hey', '!', 'Just', 'so', 'you', 'know', ',', 'it�s', 'not', 'that', 'common', '!', 'It', 'doesn�t', 'happen', 'to', 'every', 'guy', '!', 'And', 'it', 'is', 'a', 'big', 'deal', '!', '!', 'That', 'is', 'the', 'most', 'ridiculous', '...', 'I', 'did', 'not', 'sell', 'you', 'out', '.', 'Would', 'you', 'let', 'me', 'talk', '.', 'OK', ',', 'well', ',', 'you', 'would', \"n't\", 'let', 'me', 'finish', 'and', 'I', 'was', 'jus-', 'Ow', '.', 'That', 'hurt', 'Fine', '!', 'Okay', ',', 'Chandler', '!', 'And', 'your', 'horoscope', 'says', ',', '``', 'On', 'the', 'fifth', 'a', 'special', 'someone', 'is', 'going', 'to', 'give', 'you', 'a', 'gift', '.', \"''\", 'Op', ',', 'but', 'the', 'twelfth', 'brings', 'a', 'lover�s', 'spat', '.', 'Oh', ',', 'wait', 'and', 'on', 'the', 'nineteenth', 'a', 'secret', 'crush', 'announces', 'itself', '.', 'Oh', 'my', 'God', '!', 'It�s', 'Joey', 'Tribbiani', 'of', 'Mac', 'and', 'C.H.E.E.S.E.', '!', '!', 'Be-because', 'the', 'last', 'one', 'was', 'such', 'a', 'big', 'seller', '?', 'Hey', '!', 'We', 'do', '?', 'Okay', '.', 'Hi', ',', 'I�m', 'sorry', 'I�m', 'late', 'but', 'I', 'am', 'ready', ',', 'ready', 'to', 'talk', 'you', 'up', '!', 'When', 'does', 'Liz�s', 'father', 'get', 'here', '?', 'Oh', '!', 'Ross', 'is', 'sooo', 'great', '!', 'Oh', 'hi', '!', 'Oh', '!', 'Well', 'let�s', 'look', 'for', 'them', '.', 'Oh-oh-hey', '!', 'Are', 'these', 'them', '?', 'All', 'right', '!', 'Oh', 'good', '.', 'Oh', ',', 'wait', '!', 'Sorry', ',', 'Mr.', 'Paul', '?', 'Mr.', 'Paul', '?', 'Paul', '.', 'Umm', ',', 'I', 'just', 'wanted', 'you', 'to', 'know', 'that', 'Ross', 'really', 'is', 'a', 'great', 'guy', '.', 'You', 'just', 'don�t', 'look', 'old', 'enough', 'to', 'have', 'a', 'twenty-year-old', 'daughter', '.', 'Oh', '.', 'We', '?', 'Oh', 'no', '!', 'Yes', '!', 'Of', 'course', ',', 'I', 'know', 'that', '!', 'I', 'just', '...', 'I', 'meant', 'y�know', 'are', 'you', 'still', 'a', '�We�', 'or', 'are', 'you', 'just', '�You', '?', '�', 'Ohh', '.', 'So', 'you', 'raised', 'her', 'all', 'on', 'your', 'own', '?', 'Ohh', '.', 'Ooh', '!', 'I', 'was', 'just', 'getting', 'him', 'to', 'like', 'you', '.', 'Ross', ',', 'Joey', 'is', 'not', 'here', '.', 'Ross', ',', 'it�s', 'okay', '.', 'You', 'can', 'come', 'out', '.', 'Bye', '!', 'Well', ',', 'y�know', 'he', 'lost', 'his', 'keys', 'so', 'he', 'was', 'looking', 'for', 'them', '...', 'No', '!', 'Downstairs', '!', 'And', 'we', 'got', 'to', 'talking', 'y�know', ',', 'for', 'like', 'two', 'hours', ',', 'and', 'I', 'really', 'liked', 'him', 'so', 'I', 'invited', 'him', 'up', 'here', 'for', 'a', 'cup', 'of', 'coffee', '.', 'Ross', ',', 'what�s', 'the', 'big', 'deal', '?', 'So', 'I', 'kissed', 'the', 'guy', '!', 'Wh', '...', 'You', 'dated', 'my', 'sister', '!', 'What', '?', 'Why', '?', '!', 'Ross', 'look', ',', 'look', 'this', 'is', 'good', 'for', 'you', '.', 'Okay', '?', 'Let�s', 'face', 'it', ',', 'so', 'far', 'the', 'guy�s', 'not', 'lovin�', 'ya', '!', 'But', 'I', 'can', 'turn', 'that', 'around', '!', 'I', 'got', 'the', 'inside', 'track', '!', 'We', 'can', 'all', 'go', 'out', 'to', 'dinner', ',', 'y�know', '?', 'And', 'I', 'can', 'talk', 'you', 'up', '!', 'Ross', ',', 'the', 'guy', 'is', 'a', 'very', ',', 'very', 'successful', 'lawyer', '!', 'Oh', 'it�s', 'important', '!', 'So', 'it', 'seemed', 'that', 'my', 'prom', 'date', 'had', 'stood', 'me', 'up', ',', 'so', 'Ross', 'selflessly', ',', 'offered', 'to', 'take', 'me', '.', 'Wow', '!', 'I', 'definitely', 'did', 'not', 'see', 'that', 'one', 'backfiring', '!', 'I�m', 'gon', 'na', 'go', 'to', 'the', 'bathroom', '.', 'Oh', 'we', 'were', ',', 'but', 'that', 'was', 'just', 'a', ',', 'I', 'mean', 'that', 'was', 'just', 'a', 'big', 'drunken', 'mistake', '.', 'Oh', '!', 'Whoops', '!', 'I�m', 'sorry', ',', 'you', 'were', 'talking', 'about', 'Emily', '!', 'I', 'mean', 'if', 'you', 'think', 'about', 'it', ',', 'I', 'mean', 'Ross', 'did', 'learn', 'something', 'from', 'each', 'marriage', '.', 'Now', 'wait', 'a', 'minute', 'that�s', 'not', 'fair', '.', 'He', 'was', 'married', 'to', 'me', 'a', 'hell', 'of', 'a', 'lot', 'longer', 'than', 'he', 'was', 'married', 'to', 'Emily', ',', 'he', 'just', 'didn�t', 'tell', 'me', '.', 'Maybe', 'I', 'have', 'to', 'pee', 'again', '.', 'Wait-wait-wait', ',', 'I', 'just', 'thought', 'of', 'another', 'story', 'about', 'how', 'nice', 'Ross', 'is', '!', 'Oh', '!', 'I�ve', 'got', 'a', 'lot', 'of', 'those', 'too', '!', 'What�s', 'the', 'matter', '?', 'So', 'what-what', 'is', 'the', 'exhibit', '.', 'Hi', '!', 'I', 'mean', 'Ross', 'all', 'that', 'does', 'is', 'remind', 'us', 'that', 'you', 'are', 'interested', 'in', 'fossils', '.', 'Umm', '.', 'Yeah', '.', 'Ooh', ',', 'the', 'gift', 'shop', '!', 'Oh', ',', 'wait', 'yes', ',', 'but', 'I', 'can�t', 'eat', 'too', 'much', '.', 'Paul', 'is', 'taking', 'me', 'out', 'to', 'dinner', 'tonight', ',', 'he', 'said', 'he', 'has', 'a', 'big', 'surprise', 'planned', '.', 'What', '?', '!', 'No', '!', 'Why', '?', '!', 'I', 'didn�t', 'know', 'you', 'could', 'get', 'married', 'here', '.', 'Oh', 'sorry', 'didn�t', 'mean', 'to', 'interrupt', '.', 'It�s', 'just', 'such', 'a', 'beautiful', 'space', ';', 'do', 'you', 'do', 'a', 'lot', 'of', 'weddings', 'here', '?', 'Monica', ',', 'you', 'should', 'totally', 'put', 'your', 'name', 'down', 'on', 'the', 'list', 'Yeah', 'hon', ',', 'it', 'can�t', 'hurt', 'to', 'put', 'your', 'name', 'down', '!', 'I', 'mean', 'in', 'if', 'two', 'years', 'if', 'you�re', 'not', 'engaged', 'you', 'just', 'don�t', 'use', 'it', '.', 'I�m', 'gon', 'na', 'do', 'it', 'too', '!', 'Really', '?', 'Who', 'would', ',', 'who', 'would', 'you', 'marry', '?', 'Oh', 'Pheebs', '.', 'Oh', 'my', 'God', ',', 'what', 'a', 'great', 'surprise', '!', 'This', 'is', 'such', 'a', 'beautiful', 'house', '.', 'It�s', 'so', 'secluded', 'up', 'here', '.', 'I', 'feel', 'like', 'we�re', 'the', 'only', 'two', 'people', 'in', 'the', 'world', '.', 'Oops', '.', 'Sorry', '.', 'No-no', '!', 'Big', 'bear', '!', 'Big', 'bear', 'outside', '!', 'I', 'think', 'I-I', '...', 'would', 'you', '...', 'actually', ',', 'would', 'you', 'go', 'check', 'on', 'that', '?', 'Well', ',', 'okay', '.', 'Would-would', 'you', 'get', 'me', 'a', 'Diet', 'Coke', '?', 'Okay', '.', 'What', '?', '!', 'What', 'are', 'you', 'doing', 'here', '?', '!', 'I', 'came', 'with', 'Paul', '!', 'Get', 'up', '!', 'Ahh', '.', 'Thank', 'you', '!', 'Op', ',', 'ice', '.', 'I', 'need', 'ice', '.', 'Thank', 'you', '.', 'Ugh', '!', 'Get', 'out', '!', 'Get', 'out', '!', 'Go', '!', 'Come', 'on', '!', 'No', '!', 'Not', 'in', 'there', '!', 'He�s', 'in', 'there', '!', 'Go-go', '!', 'Ohh', ',', 'thank', 'you', '.', 'Well', ',', 'she-she', 'ob-obviously', 'saw', 'the', 'tire', 'tracks', 'that', 'were', 'leading', 'up', 'to', 'the', 'closed', 'garage', '.', 'Did-did', 'you', 'come', 'up', 'here', 'to', 'work', 'on', 'that', 'term', 'paper', 'or', 'something', '?', 'Well', ',', 'why', 'do', 'y�know', 'go', 'in', 'that', 'room', 'and', 'do', 'your', 'homework', '?', 'That�s', 'your', ',', 'that�s', 'your', 'dad�s', 'bedroom', '.', 'That�s', 'your', 'dad�s', 'bedroom', '!', 'Whoa', ',', 'that', 'Diet', 'Coke', 'just', 'went', 'straight', 'to', 'my', 'head', '!', 'Woo', '!', 'Really', '?', 'Okay', '.', 'Okay', ',', 'I-I�ll', 'go', 'upstairs', '.', 'If-if', 'you', 'get', 'me', 'something', 'from', 'the', 'car', '.', 'Surprise', 'me', '.', 'So', 'you�re', 'gon', 'na', 'be', 'in', 'the', 'car', ',', 'I', 'will', 'be', 'upstairs', ',', 'and', 'that�s', 'where', 'everybody�s', 'gon', 'na', 'be', '!', 'Oh', 'wait-wait-wait', '!', '!', 'No', '!', 'Don�t', 'go', 'in', 'there', '!', 'Don�t', 'go', 'in', 'there', '!', 'I', 'need', 'another', 'soda', '!', 'Oh', 'my', 'God', 'Ross', '!', 'What', 'in', 'heaven�s', 'name', 'are', 'you', 'doing', 'here', '?', 'Good', '.', 'Although', 'y�know', ',', 'he-he�s', 'a', 'private', 'guy', '.', 'Y�know', ',', 'I', 'wish', 'I', 'could', 'get', 'him', 'to', 'open', 'up', 'a', 'little', 'bit', ',', 'share', 'some', 'feelings', '.', 'So', 'what', 'are', 'you', 'saying', ';', 'I', 'should', 'run', 'him', 'under', 'hot', 'water', 'and', 'bang', 'his', 'head', 'against', 'a', 'table', '?', 'Hi', '!', 'Okay', '.', 'Okay', '.', 'Yeah', 'that�s', 'great', '.', 'But', 'first', ',', 'wait', ',', 'talk', 'to', 'me', ',', 'talk', 'to', 'me', '.', 'Tell', 'me', 'about', 'your', 'day', '.', 'Okay', '.', 'Hey', ',', 'what', 'are', 'you', 'thinking', '?', 'What', 'are', 'you', 'thinking', 'right', 'now', '?', 'Yeah', 'that�s', 'great', 'Paul', ',', 'but', 'y�know', 'I', 'wan', 'na', 'know', 'what', '...', 'Wow', ',', 'those', 'are', 'really', 'great', '!', 'I', 'just', 'wan', 'na', 'know', 'what', ',', 'what', 'is', 'behind', 'this-this', 'strong', ',', 'silent', 'exterior', '.', 'Y�know', 'they', 'say', 'that', 'still', 'waters', 'run', 'deep', 'and', 'I', 'wan', 'na', 'swim', 'in', 'yours', '.', 'No', 'Paul', ',', 'I', 'don�t', 'know', 'anything', 'about', 'you', '!', 'Y�know', ',', 'like-like', 'your', 'childhood', '!', 'Tell', 'me', 'about', 'your', 'childhood', '!', 'Okay', ',', 'well', 'then', 'how', 'about', 'puberty', '!', 'Come', 'on', ',', 'that�s', 'always', 'a', 'painful', 'time', '!', 'Y�know', 'your', 'friends', 'invite', 'you', 'to', 'a', 'slumber', 'party', 'and', 'then', 'they', 'stick', 'your', 'hand', 'in', 'warm', 'water', 'while', 'you�re', 'sleeping', 'so', 'that', 'you', 'pee', 'in', 'your', 'sleeping', 'bag', '.', 'Well', ',', 'you�re', 'lucky', 'you', 'never', 'met', 'that', 'bitch', 'Sharon', 'Majesky', '.', 'Anyway', ',', 'umm', '...', 'The', 'rest', 'of', 'you', 'life', ',', 'y�know', '?', 'Any', 'regrets', '?', 'All', 'right', 'Paul', ',', 'I�m', 'not', 'asking', 'for', 'a', 'lot', 'here', '.', 'Okay', '?', 'Just', 'give', 'me', 'something', '.', 'Anything', '!', 'Okay', '.', 'All', 'right', '.', 'Hm-mmm', '.', 'That�s-that�s', 'great', '!', 'See', '?', 'I', 'already', 'feel', 'like', 'I', 'know', 'you', 'a', 'little', 'better', '!', 'Thank', 'you', '.', 'Okay', ',', 'come', 'on', '.', 'Now', 'we', 'can', 'go', 'eat', '.', 'Let�s', 'go', '.', 'Oh', '!', 'Yeah', '.', 'Yeah', ',', 'I-I-I', 'see', 'the', 'scare', '.', 'Listen', ',', 'Paul', ',', 'I', 'think', 'this', 'is', 'really', 'great', 'that-that', 'y�know', ',', 'you', 'shared', 'your', 'feelings', '.', 'It�s', 'really', ',', 'it�s', 'beautiful', ',', 'but', 'umm', ',', 'what', 'do', 'you', 'say', 'we', 'go', 'share', 'some', 'food', '?', 'What', '?', '!', 'Wait', '!', 'What', 'are', 'you', 'talking', 'about', '?', '!', 'You', 'love', 'their', 'Kung', 'Pao', 'Chicken', '!', 'My', 'God', ',', 'I�m', 'sorry', '!', 'I�m', 'sorry', '!', 'I', 'didn�t', 'mean', 'to', 'do', 'that', '!', 'I', 'wouldn�t', 'do', 'that', '!', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', '!', 'Like', 'a', 'little', 'girl', '.', 'I', 'know', '.', 'I', 'know', '.', 'I', 'know', '.', 'This', 'is', 'all', 'my', 'fault', ';', 'I', 'wanted', 'him', 'to', 'open', 'up', '.', 'But', 'God', ',', 'I', 'didn�t', 'know', 'that', 'I', 'was', 'gon', 'na', 'unleash', 'this-this', 'weepy', ',', 'clingy', ',', 'moist', 'monster', '!', 'What�s', 'the', 'other', 'one', '?', 'Oh', 'that�s', 'right', '.', 'You�re', 'the', 'talker', '.', 'Anyway', 'uh', ',', 'great', 'idea', '!', 'Umm', ',', 'I', 'got', 'ta', 'go', 'to', 'the', 'store', ';', 'I', 'told', 'him', 'that', 'I', 'would', 'buy', 'him', 'some', 'more', 'tissues', '.', 'No', 'you', 'don�t', '!', 'Hi', '.', 'I�m', 'back', '.', 'Ah', 'that�s', 'great', '.', 'No', 'actually', 'that�s', '...', 'That�s', 'great', '!', 'That�s', 'really', 'great', '!', 'Y�know', ',', 'I', 'got', 'ta', 'tell', 'ya', 'writing', ',', 'I', 'mean', 'writing', ',', 'gets', 'me', 'uh', ',', 'gets', 'me', 'kinda', 'hot', '.', 'A', 'lover', '?', 'Oh', 'yeah', 'surfer', '?', 'Okay', ',', 'hold', 'on', 'real', 'quick', ',', 'hold', 'on', 'a', 'second', 'let', 'me', 'just', 'uh', ',', 'get', 'a', 'little', 'more', 'comfortable', 'here', '.', 'Wait', ',', 'now', 'wait', 'a', 'second', ',', 'this', 'isn�t', 'too', 'revealing', 'is', 'it', '?', 'I', 'don�t', 'care', 'about', 'the', 'little', 'dude', '!', 'I', 'can�t', '!', 'I', 'can', 'not', 'listen', 'to', 'anymore', 'of', 'this', '!', 'Y�know', ',', 'the', 'only', 'person', 'who', 'would', 'want', 'to', 'listen', 'to', 'this', 'is', 'a', 'mental', 'health', 'professional', '!', 'And', 'then', 'it�s', 'only', 'because', 'they', 'get', 'paid', '$', '100', 'an', 'hour', '!', 'Do', 'you', 'know', 'how', 'much', 'money', 'I', 'could�ve', 'made', 'listening', 'to', 'you', '?', '$', '2,000', '!', 'And', 'do', 'you', 'know', 'when', 'I', 'figured', 'that', 'out', '?', 'While', 'you', 'were', 'talking', '!', 'Oh', ',', 'I�m', 'sorry', '.', 'I', '...', 'I-I', 'don�t', 'mean', '...', 'I', 'didn�t', 'mean', 'to', 'stifle', 'you', '.', 'I', '...', 'This', 'is', 'all', 'just', 'a', 'little', 'overwhelming', '.', 'I�m', 'so', 'glad', ',', 'I�m', 'so', 'glad', 'you', 'shared', '.', 'And', 'I�m', 'glad', 'that', 'you�re', 'done', '.', 'What', 'do', 'you', 'say', 'we', 'umm', '...', 'Ugh', '!', 'No', 'more', 'crying', '!', 'Please', '!', 'I', 'just', 'dumped', 'one', 'cry', 'baby', ',', 'I�ll', 'dump', 'you', 'too', '!', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', 'Oh', 'Chandler', '!', '!', 'You', 'guys', 'are', 'gon', 'na', 'be', 'so', 'happy', '!', 'Nice', '!', 'One', 'and', 'a', 'half', 'carat', 'easy', '.', 'Yeah', '?', 'Well', ',', 'you', 'should', 'know', '.', 'You�ve', 'bought', 'like', 'a', 'billion', 'of', '�em', '.', 'Ohh', '...', 'Hey', '!', 'Are', 'any', 'of', 'you', 'guys', 'free', 'tonight', '?', 'My', 'boss', 'is', 'hosting', 'this', 'charity', 'event', 'for', 'underprivileged', 'kids', 'and', 'the', 'more', 'people', 'I', 'bring', ',', 'the', 'better', 'I', 'look', '.', 'So', ',', 'Monica', '?', 'Chandler', '?', 'Oh', 'my', 'God', ',', 'I�m', 'so', 'sorry', '.', 'How', 'about', 'you', 'guys', '?', 'I', 'think', 'so', '.', 'Hey', '!', 'Ross', ',', 'listen', 'can', 'you', 'come', 'to', 'a', 'charity', 'event', 'tonight', '?', 'See', '?', 'Now', ',', 'he', 'could', 'date', 'her', '.', 'We�re', 'just', 'really', '..', 'very', 'excited', 'about', 'this', 'charity', 'event', 'that', 'we', 'have', 'to', 'go', 'to', '.', 'Oh', '!', 'Thank', 'you', '!', 'Uh', 'well', ',', 'uh', 'this', 'is', 'a', 'silent', 'auction', '.', 'They', 'lay', 'out', 'all', 'the', 'stuff', 'here', 'and', 'then', 'you', 'write', 'down', 'your', 'offer', 'and', 'then', 'the', 'highest', 'bid', 'gets', 'it', '.', 'Uh', ',', 'wh-why', '?', 'Oh', ',', 'hi', '!', 'Someone', '?', 'I', 'brought', 'people', '.', 'Mr.', 'Thompson', ',', 'this', 'is', 'Phoebe', '.', 'Phoebe', ',', 'this', 'is', 'Mr.', 'Thompson', '.', 'He�s', 'the', 'head', 'of', 'my', 'department', '.', 'And', 'I', 'also', 'brought', 'my', 'friend', 'Joey', '...', 'Well', ',', 'y�know', 'I-I', 'don�t', 'know', 'where', 'he', 'is', '.', 'Well', ',', 'y�know', 'what', '?', 'Actually', ',', 'I', 'was', 'about', 'to', 'bid', 'on', 'this', 'lovely', 'trip', 'to', 'Paris', '.', 'Yeah', '.', 'Thank', 'you', '.', 'Okay', ',', 'twenty', 'dollars', '.', 'Ugh', '!', 'So', 'close', '!', 'What', 'are', 'you', 'doing', '?', 'Well', 'now', 'it�s', 'an', 'empty', 'bar', '.', 'What', '?', '!', 'What', '?', '!', 'What', '?', '!', 'Joey', '!', 'It', 'is', 'an', 'auction', '!', 'You', 'don�t', 'guess', ',', 'you', 'buy', '!', 'Joey', '!', 'Sit', 'down', '!', 'What', 'were', 'you', 'thinking', '?', '!', 'Wh', '?', '!', 'Why', 'would', 'a', 'charity', 'give', 'away', 'a', 'free', 'boat', '?', '!', 'Ugh', '!', 'Phoebe', ',', 'don�t', 'you', 'think', 'you�ve', 'had', 'enough', 'to', 'drink', '?', 'How', 'is', 'you', 'drinking', 'helping', 'the', 'kids', '?', 'Joey', '!', 'Joey', ',', 'good', 'one', '!', 'Hey', '!', 'You', '...', 'can�t', '...', 'leave', 'Joey', '!', 'You', 'agreed', 'to', 'buy', 'that', 'boat', ',', 'all', 'right', '?', '!', 'That', 'is', 'a', 'contract', '!', 'And', 'plus', 'if', 'you', 'leave', ',', 'my', 'boss', 'is', 'gon', 'na', 'kill', 'me', '!', 'I', 'know', '.', 'Okay', '.', 'Okay', '.', 'Okay', '.', 'All', 'right', '.', 'All', 'right', ',', 'this', 'is', 'what', 'we�re', 'gon', 'na', 'do', ',', 'we', 'are', 'gon', 'na', 'go', 'to', 'the', 'next', 'highest', 'bidder', ',', 'and', 'we', 'are', 'just', 'gon', 'na', 'let', 'them', 'buy', 'it', ',', 'and', 'then', 'you�re', 'just', 'gon', 'na', 'pay', 'the', 'difference', '.', 'Okay', '.', 'Not', 'great', '.', 'Oh', 'great', '!', 'Why', 'do', 'you', 'care', 'about', 'the', 'guy', 'who', 'won', 'the', 'Paris', 'trip', '?', 'Oh', 'well', ',', 'hello', '.', 'This', 'is', 'your', 'lucky', 'day', 'Mr.', 'Bowmont', ',', 'the', 'uh', 'gentleman', 'day', 'sailer', 'as', 'just', 'become', 'available', 'again', 'and', 'I', 'believe', 'that', 'you', 'made', 'a', 'bid', 'of', '$', '18,000', '.', 'Okay', '.', 'Okay', '.', 'Ohh', '...', 'Y-Yeah', '!', 'What-what', 'is', 'your', 'wife�s', 'name', '?', 'Pam', '!', 'Oh', 'God', 'okay', ',', 'just', 'imagine', 'this', ',', '``', 'The', 'Pam', '.', \"''\", 'Okay', ',', 'uh-uh', 'imagine', 'this', ',', '``', 'The', 'Mr', '.', 'Bowmont', '.', \"''\", 'Okay', 'look', ',', 'let', 'me', 'paint', 'you', 'a', 'little', 'picture', '.', 'All', 'right', ',', 'you', 'are', 'settin�', 'sail', 'up', 'the', 'Hudson', '!', 'You�ve', 'got', 'the', 'wind', 'in', 'your', 'h', '......', 'arms', '!', 'You-you', 'get', 'all', 'that', 'peace', 'and', 'quiet', 'that', 'you�ve', 'always', 'wanted', '!', 'You', 'get', 'back', 'to', 'nature', '!', 'You', 'can', 'go', 'fishin�', '!', 'You', 'can', '...', 'ooh', ',', 'you', 'can', 'get', 'one', 'of', 'those', 'little', 'hats', 'and', 'have', 'people', 'call', 'you', 'captain', ',', 'and', 'then', 'when', 'you�re', 'old', ',', 'Cappy', '.', 'What', '?', '!', 'What', '?', '!', 'But', 'Joey', 'you', 'don�t', 'have', '$', '20,000', '!', 'Hey', '!', 'Oh', 'my', 'God', 'you�re', 'here', ',', 'let', 'me', 'see', 'your', 'hand', '!', '!', 'Isn�t', 'it', 'incredible', '?', '!', 'Monica', 'and', 'Chandler', ',', 'gettin�', 'married', '.', 'Ohh', '...', 'I', 'mean', 'two', 'best', 'friends', 'falling', 'in', 'love', ',', 'how', 'often', 'does', 'that', 'happen', '?', 'No', '!', 'I�m', 'so', 'happy', 'for', 'them', '!', 'I�m', 'so', 'happy', 'and', 'not', 'at', 'all', 'jealous', '.', 'I', 'mean', 'I�m', 'probably', '98', '%', 'happy', ',', 'maybe', '2', '%', 'jealous', '.', 'And', 'I', 'mean', 'what�s', '2', '%', '?', 'That�s', 'nothing', '.', 'Yeah', 'me', 'too', '.', 'Wh', '..', 'no', ',', 'but', 'y�know', 'who', 'did', 'stop', 'in', 'here', 'looking', 'for', 'ya', ',', 'Tennille', '.', 'We�re', 'gon', 'na', 'find', 'love', '!', 'Yeah', ',', 'I�m', 'pretty', 'confident', 'about', 'that', '.', 'That�s', 'what', 'makes', 'it', 'so', 'easy', 'for', 'me', 'to', 'be', '80', '%', 'happy', 'for', 'Monica', 'and', 'Chandler', '!', 'It', 'would', 'be', 'nice', 'to', 'have', 'a', 'little', 'guarantee', 'though', '.', 'Well', 'y�know', ',', 'some', 'people', 'make', 'deals', 'with', 'a', 'friend', ',', 'like', 'if', 'neither', 'of', 'them', 'are', 'married', 'by', 'the', 'time', 'they�re', '40', ',', 'they', 'marry', 'each', 'other', '.', 'Exactly', '!', 'You', 'do', '?', 'Who', '?', 'Joey', '?', '!', 'Are', 'you', 'serious', '?', '!', 'Wh', '...', 'So', '...', 'If', 'neither', 'of', 'you', 'are', 'married', 'by', 'the', 'time', 'you�re', '40', ',', 'you�re', 'gon', 'na', 'marry', 'Joey', '.', 'Oh', ',', 'seriously', '?', 'Charming', '.', 'Yeah', '.', 'Hey', 'you', '!', 'Oh', 'thank', 'you', '.', 'Hey', 'y�know', ',', 'I�m', 'so', 'sorry', 'to', 'hear', 'about', 'you', 'and', 'Elizabeth', '.', 'Yeah', ',', 'love', '.', 'It�s', 'a', 'tricky', 'business', 'isn�t', 'it', '?', 'So', 'what', 'do', 'you', 'say', 'we', 'make', 'a', 'pact', '?', 'If', 'you', 'and', 'I', 'are', 'both', 'single', 'by', 'the', 'time', 'we�re', '40', ',', 'we', 'get', 'married', '.', 'I', 'mean', ',', 'we', 'know', 'each', 'other', ',', 'we', 'like', 'each', 'other', ',', 'and', 'we�ve-we�ve', 'already', 'slept', 'together', 'so', 'y�know', 'there�ll', 'be', 'no', 'surprises', 'there', '!', 'You', 'know', 'what', 'I', 'mean', '?', 'No', 'like', ',', '``', 'What�s', 'that', '?', '!', \"''\", 'Exactly', '.', 'What', '?', 'Who', '?', 'Phoebe', '?', '!', 'Wait', 'a', '...', 'but-but', 'she', 'just', ',', 'she', 'said', 'that', 'Joey', 'was', 'her', 'backup', '.', 'Ross', '!', 'I', 'just', 'had', 'a', 'conversation', 'with', 'her', ',', 'and', 'she', 'said', 'that', 'she', 'and', 'Joey', 'made', 'a', 'deal', '!', 'Phoebe', '!', 'You', 'picked', 'Joey', 'and', 'Ross', '?', '!', 'You', 'can', 'not', 'have', 'two', 'backups', '!', 'What', '?', '!', 'Phoebe', 'you', 'can�t', 'have', 'both', 'of', 'them', '!', 'You', 'have', 'to', 'pick', 'one', '!', 'Oh', 'God', ',', 'Phoebe', '!', 'Oh', '.', 'Okay', ',', 'y�know', 'what', '?', '!', 'I', 'know-I', 'know', 'how', 'to', 'settle', 'this', '!', 'All', 'right', 'here', ',', 'this', 'is', 'what', 'we�re', 'gon', 'na', 'do', '!', 'I�m', 'gon', 'na', 'write', 'Joey', 'on', 'one', 'napkin', 'and', 'I�m', 'gon', 'na', 'right', 'Ross', 'on', 'the', 'other', 'napkin', 'and', 'we', 'are', 'going', 'to', 'pick', 'one', '!', 'And', 'that', 'person', 'is', 'going', 'to', 'be', 'our', 'backup', '!', 'Okay', '?', 'Pick', 'one', '.', 'You�re', 'welcome', '.', 'Joey', '!', 'We', 'should', 'just', 'switch', '.', 'Ohhh', ',', 'this', 'is', 'the', 'least', 'jealous', 'I�ve', 'ever', 'been', '!', 'Oh', 'hell', ',', 'he�s', 'done', 'this', 'three', 'times', '!', 'He', 'knows', 'what', 'its', 'about', '!', 'Yeah', 'Pheebs', ',', 'honey', ',', 'she', 'just', 'got', 'engaged', 'a', 'couple', 'of', 'hours', 'ago', '.', 'I', 'doubt', 'she�s', 'even', 'had', 'time', 'to', '...', 'Yeah', ',', 'you�re', 'on', 'your', 'own', '.', 'Okay', '.', 'Hey', '!', 'Oh', ',', 'thanks', '.', 'I', 'don�t', 'know', ',', 'y�know', '?', 'I', 'feel', 'a', 'little', 'umm', '...', 'No', ',', 'y�know', 'what', '?', 'Nevermind', ',', 'I�m', 'gon', 'na', 'be', 'fine', '.', 'Hi', '!', 'Well', 'thank', 'you', ',', 'you', 'too', '.', 'Hey', ',', 'do', 'you', 'believe', 'this', '?', 'Do', 'you', 'believe', 'they', 'are', 'actually', 'getting', 'married', '?', 'Ohh', '...', 'Yeah', ',', 'I', 'guess', '.', 'I-I', '...', 'I', 'mean', ',', 'do-do', 'you', 'think', 'we�re', 'ever', 'gon', 'na', 'have', 'that', '?', 'Oh', 'no-no-no-no-no', ',', 'no', ',', 'no', '!', 'We', ',', 'you', 'with', 'someone', 'and', 'me', 'with', 'someone', '.', 'Shake', 'it', 'off', '.', 'No', ',', 'absolutely', '.', 'Y�know', 'like', 'it', 'was', 'umm', '...', 'Yeah', ',', 'just', 'give', 'me', 'a', 'minute', '!', 'Oh', 'well', ',', 'yes', ',', 'I', 'can', 'think', 'of', 'one', 'good', 'thing', '.', 'Well', 'you', 'uh', ',', 'you', 'were', 'always', 'really', 'good', 'at', 'the', 'uh', ',', 'at', 'the', 'uh', 'the', 'stuff', '.', 'Uh-hmm', ',', 'uh-hmm', ',', 'yeah', ',', 'yeah', ',', 'I', 'really', 'liked', 'your', 'hands', '.', 'Yeah', '.', 'Uh-huh', '.', 'Oh', ',', 'I', 'know', '.', 'Hey', ',', 'y�know', 'what', 'we', 'never', 'did', '?', 'Oh', 'no', ',', 'not', 'that', '.', 'We', 'uh', ',', 'we', 'never', 'had', 'bonus', 'night', '!', 'Y�know', ',', 'bonus', 'night', '.', 'Y�know', ',', 'when', 'two', 'people', 'break', 'up', 'but', 'they', 'get', 'back', 'together', 'for', 'just', 'one', 'night', '.', 'Yeah-yeah', ',', 'we', 'never', 'had', 'that', ',', 'What', '?', 'Oh', 'honey', ',', 'but', 'it', 'is', 'just', 'about', '...', 'What', '?', '!', 'Yeah', '.', 'No', '.', 'And', 'you', 'know', 'what', '?', 'Nobody', 'even', 'saw', '!', 'Honey', 'I', 'swear', 'it', 'we', 'just', 'kissed', '.', 'Okay', 'come', 'on', 'Phoebe', ',', 'it�s', 'nothing', '!', 'Monica', ',', 'come', 'on', '!', 'No', '!', 'No-no', ',', 'it�s', 'really', 'not', 'huge', '.', 'Joey', ',', 'you', 'are', 'not', '!', 'You�re', '31', '.', 'Honey', ',', 'Monica', ',', 'this', 'is', 'ridiculous', '!', 'Look', '...', 'Hey', '.', 'What', 'do', 'you', 'think', 'Monica', 'mean', 'when', 'she', 'said', 'she', 'didn�t', 'want', 'to', 'talk', ',', 'especially', 'with', 'me', '?', 'I', 'mean', ',', 'why', 'not', 'especially', 'you', 'and', 'me', '?', 'We', 'were', 'both', 'out', 'there', 'kissing', '.', 'Come', 'on', '!', 'Serious-ser-ser-seriously', ',', 'what', 'did', 'she', 'mean', 'by', 'that', '?', 'Especially', 'you', '!', 'I', 'care', '!', 'Y�know', 'what', ',', 'I-I', 'have', 'to', 'go', 'talk', 'to', 'her', ',', 'would', 'you', 'let', 'me', 'just', 'get', 'changed', '?', 'Am', 'I', 'going', 'to', 'let', 'you', 'watch', 'me', 'undress', '?', 'Monica', ',', 'what', 'did', 'you', 'mean', 'before', 'when', 'you', 'said', 'you', 'didn�t', 'want', 'to', 'talk', 'to', 'anyone', ',', 'especially', 'me', '?', 'No-no', ',', 'seriously-seriously', ',', 'what', 'was', 'the', 'especially', 'me', 'part', 'about', '?', 'What', '?', '!', 'Monica', ',', 'what', 'are', 'you', 'talking', 'about', '?', 'Monica', ',', 'y�know', 'what', '?', 'The', 'only', 'reason', 'I', 'did', 'that', 'was', 'because', 'your', 'party', 'was', 'so', 'boring', '!', 'Oh', '!', '!', 'Monica', ',', 'your', 'Sweet', 'Sixteen', 'was', 'like', 'a', 'million', 'years', 'ago', '.', 'Ugh', ',', 'Monica', 'I', 'don�t', 'want', 'to', 'steal', 'your', 'stupid', 'thunder', '!', 'All', 'right', ',', 'easy', 'mimey', ',', 'the', 'moment', 'has', 'passed', ',', 'it', 'ain�t', 'gon', 'na', 'happen', '!', 'I', 'swear', ',', 'I', 'never', 'wanted', 'any', 'part', 'of', 'your', 'night', '!', 'Monica', ',', 'why', '?', 'Why', 'would', 'I', 'ever', 'want', 'to', 'take', 'away', 'from', 'your', 'night', '?', 'Oh', 'wow', '.', 'That', '...', 'y�know', 'what', '?', 'That', 'is', 'so', 'unfair', '.', 'Y�know', 'what', '?', 'Now', 'I', 'want', 'to', 'steal', 'your', 'thunder', '!', 'Come', 'on', 'Ross', ',', 'let�s', 'go', 'have', 'sex', '!', 'We�re', 'not', 'gon', 'na', 'do', 'this', ',', 'all', 'right', '?', 'She�s', 'just', 'gon', 'na', 'think', 'that', 'we�re', 'doin�', 'it', '.', 'Who', 'is', 'it', '?', 'Okay', 'well', 'Ross', '!', 'Stop', 'it', 'please', '!', 'Wait', 'a', 'minute', '!', 'Yeah', ',', 'you', 'like', 'that', 'baby', '?', 'May', 'we', 'help', 'you', '?', 'All', 'right', 'Monica', ',', 'do', 'you', 'want', 'to', 'know', 'why', 'I', 'was', 'with', 'Ross', 'tonight', '?', '!', 'No', 'you', 'don�t', 'know', 'why', '!', 'Because', '!', 'Because', 'I', 'was', 'sad', '.', 'Look', ',', 'I', 'am', 'so', '...', 'so', 'happy', 'for', 'you', 'guys', ',', 'but', 'you', 'getting', 'married', 'just', 'reminds', 'me', 'of', 'the', 'fact', 'that', 'I�m', 'not', '.', 'I�m', 'not', 'even', 'close', '.', 'And', 'I', 'don�t', 'know', ',', 'maybe', 'I', 'just', 'wanted', 'to', 'make', 'myself', 'feel', 'better', '.', 'And', 'I', 'know', 'that', 'that�s', 'dumb', ',', 'but', 'oh', 'my', 'God', 'you', 'were', 'so', 'depressed', 'when', 'Ross', 'got', 'married', 'that', 'you', 'slept', 'with', 'Chandler', '!', 'Anyway', 'sweetie', ',', 'I', 'am', ',', 'I�m', 'so', 'sorry', 'I', 'ruined', 'your', 'night', '.', 'Yeah', '.', 'Yeah', ',', 'so', 'let�s', 'get', 'started', 'on', 'the', 'wedding', 'plans', '!', 'Yeah', ',', 'we', 'got', 'a', 'lot', 'to', 'do', '!', 'We', 'got', 'ta', 'think', 'about', 'the', 'flowers', ',', 'the', 'caterers', ',', 'the', 'music', '...', 'Oh', 'wait', 'Chandler', ',', 'too', 'many', 'cooks', '...', 'Okay', '.', 'Aw', '.', 'What', '?', '!', 'The', 'duck', '?', '!', 'What', 'the', 'hell', 'did', 'the', 'damn', 'duck', 'do', 'now', '?', '!', 'Joey', ',', 'there', 'is', 'a', 'perfectly', 'good', 'couch', 'across', 'the', 'hall', '!', 'What', '?', '!', 'Now', 'Joey', ',', 'what', 'did', 'the', 'duck', 'do', '?', '!', 'Hey', 'Joey', ',', 'what', '�cha', 'doing', '?', 'No', '.', 'Joey', ',', 'did', 'you', 'eat', 'my', 'face', 'cream', '?', 'Joey', ',', 'where', 'did', 'you', 'learn', 'that', 'word', '?', 'You', 'found', 'my', 'book', '?', '!', 'Joey', ',', 'what-what', 'are', 'you', 'doing', 'going', 'into', 'my', 'bedroom', '?', '!', 'Hey-hey', ',', 'y�know', 'what', '?', 'I', 'don�t', 'care', '!', 'I�m', 'not', 'ashamed', 'of', 'my', 'book', '.', 'There�s', 'nothing', 'with', 'a', 'woman', 'enjoying', 'a', 'little', '...', 'erotica', '.', 'It�s', 'just', 'a', 'healthy', 'expression', 'of', 'female', 'sexuality', ',', 'which', 'by', 'the', 'way', ',', 'you', 'will', 'never', 'understand', '.', 'Well', 'what', 'happened', 'at', 'dinner', '?', 'Wait', ',', 'but', 'there�s', 'no', 'money', '!', 'Well', 'this', 'is', 'terrible', '!', 'You', 'guys', 'are', 'gon', 'na', 'have', 'to', 'get', 'married', 'in', 'like', 'a', ',', 'rec', '.', 'center', '!', 'No', ',', 'y�know', 'what', '?', 'It�s', 'gon', 'na', 'be', 'okay', '.', 'I', 'mean', 'you', 'don�t', 'have', 'to', 'have', 'this', 'rustic', 'Italian', 'feast', '.', 'Y�know', '?', 'And-and', 'you', 'don�t', 'need', ',', 'you', 'don�t', 'need', 'this', 'custom-made', ',', 'empire', 'waisted', ',', 'duchess', ',', 'satin', 'gown', ';', 'you', 'can', 'wear', 'off', 'the', 'rack', '.', 'Do', 'you', 'even', 'understand', 'what', 'off', 'the', 'rack', 'means', '?', '!', 'Well', 'what', '?', '!', 'How-how', 'much', 'is', 'it', '?', '!', 'Ohh', '!', 'Really', '?', '!', 'Ohh', ',', 'you', 'guys', 'are', 'so', 'made', 'for', 'each', 'other', '.', 'Joey', '.', 'Uh-huh', ',', 'I', 'get', 'it', ',', 'smoke', ',', 'chimney', ',', 'chimney', 'sweep', ',', 'very', 'funny', ',', 'ha-ha', '.', 'Well', 'no', ',', 'I', 'don�t', 'smell', 'anything', '.', 'Nothing', '!', 'Y�know', ',', 'I', 'can', 'not', 'believe', 'you', 'told', 'him', ',', 'Joey', '!', 'Uh-huh', ',', 'yeah', 'I', 'did', ',', 'because', 'I', 'wore', 'out', 'my', 'first', 'copy', 'when', 'I', 'was', 'with', 'you', '.', 'Who', 'are', 'you', 'supposed', 'to', 'be', '?', 'Do', 'you', 'even', 'know', 'what', 'a', 'vicar', 'is', '?', 'Yeah', '.', 'Look', 'Joey', ',', 'it�s', 'enough', 'all', 'right', '?', '!', 'You', 'keep', 'making', 'these', 'stupid', 'jokes', 'and', 'this', 'sleazy', 'innuendoes', 'and', 'it�s', '...', 'I�m', 'not', '...', 'it�s', 'just', 'not', 'funny', 'anymore', '!', 'All', 'right', '!', 'Y�know', 'what', '?', 'That�s', 'it', '!', 'You', 'wan', 'na', 'do', 'it', '?', '!', 'Let�s', 'do', 'it', '!', 'That�s', 'right', ',', 'I', 'wan', 'na', 'do', 'it', 'with', 'you', '!', 'I�ve', 'been', 'trying', 'to', 'fight', 'it', ',', 'but', 'you', 'just', 'said', 'all', 'the', 'right', 'things', '.', 'Yeah', '!', 'Ohh', ',', 'I�ve', 'been', 'waitin�', 'so', 'long', 'to', 'get', 'on', 'that', 'body', '!', 'Yeah', 'that�s', 'right', '!', 'Come', 'on', 'Joey', ';', 'sex', 'me', 'up', '!', 'Oh', ',', 'come', 'on', 'now', ',', 'don�t', 'keep', 'me', 'waiting', '.', 'Get', 'those', 'clothes', 'off', '!', 'But', ',', 'I', 'would', 'keep', 'that', 'helmet', 'on', 'because', 'you�re', 'in', 'for', 'a', 'rough', 'ride', '!', 'Yeah', ',', 'what', '?', 'Yeah-yeah', ',', 'did-didn�t', 'you', 'use', 'to', 'have', 'a', 'pair', '?', 'They', 'were', 'really', 'round', ',', 'burgundy', ',', 'and', 'they', 'made', 'you', 'look', 'kind', 'of', 'umm', '...', 'Yes', '!', 'Oh', ',', 'y�know', 'what', 'you', 'should', 'get', '�em', '?', 'One', 'of', 'those', 'little', 'uh', ',', 'portable', 'CD', 'players', '.', 'Yeah', ',', 'and-and-and', 'by', 'someone', ',', 'she', 'means', 'Joey', '.', 'Y�know', 'Joey', ',', 'I', 'could', 'teach', 'you', 'to', 'sail', 'if', 'you', 'want', '.', 'Yeah', '!', 'I�ve', 'been', 'sailing', 'my', 'whole', 'life', '.', 'When', 'I', 'was', 'fifteen', 'my', 'dad', 'bought', 'me', 'my', 'own', 'boat', '.', 'What', '?', '!', 'What', '?', '!', 'He', 'was', 'trying', 'to', 'cheer', 'me', 'up', '!', 'My', 'pony', 'was', 'sick', '.', 'That', 'is', 'the', 'Coast', 'Guard', '.', 'Joey', ',', 'just', 'ignore', 'the', 'boats', 'all', 'right', '?', 'We�re', 'not', 'finished', 'with', 'the', 'lesson', 'yet', '.', 'Okay', ',', 'I�m', 'just', 'gon', 'na', 'go', 'over', 'the', 'basic', 'points', 'just', 'one', 'more', 'time', ',', 'are', 'you', 'ready', '?', 'Oh', ',', 'okay', '.', 'Is', 'that', 'what', 'you', 'want', 'to', 'do', '?', 'You', 'wan', 'na', 'go', 'over', 'and', 'give', 'a', 'little', 'shout', 'out', 'to', 'the', 'old', ',', 'hot', 'chickas', '?', 'Okay', ',', 'let�s', 'do', 'that', 'Sailor', 'Joe', '.', 'Quick', 'question', 'though', ',', 'what�s', 'this', 'called', '?', 'Wrong', '!', 'How', 'do', 'you', 'get', 'the', 'mainsail', 'up', '?', 'No', '.', 'What', 'do', 'you', 'do', 'if', 'I', 'say', 'we', 'are', 'coming', 'about', '?', 'Time�s', 'up', ',', 'now', 'your', 'dead', '.', 'Okay', ',', 'you', 'just', 'go', 'on', 'and', 'make', 'your', 'little', 'jokey-jokes', ',', 'but', 'if', 'you', 'do', 'not', 'know', 'what', 'you', 'are', 'doing', 'out', 'at', 'sea', 'you', 'will', 'die', 'at', 'sea', '.', 'Am', 'I', 'getting', 'through', 'to', 'you', 'sailor', '?', '!', 'Don�t', 'just', 'say', 'yes', '!', 'This', 'isn�t', 'a', 'game', ',', 'Joey', 'you', 'can', 'really', 'get', 'hurt', 'out', 'here', '.', 'Okay', ',', 'so', 'do', 'you', 'want', 'to', 'pay', 'attention', 'or', 'do', 'you', 'want', 'to', 'die', '?', '!', 'Yeah', ',', 'and-and', 'you', 'better', 'make', 'sure', 'he', 'tips', 'you', 'this', 'time', '.', 'I', 'don�t', 'know', '.', 'Y�know', ',', 'they', 'didn�t', 'get', 'us', 'anything', '.', 'Well', 'hello', '!', 'So', ',', 'when', 'are', 'we', 'gettin�', 'back', 'out', 'on', 'the', 'water', 'matey', '?', 'Why', 'not', '?', 'What', '?', 'I', 'was', 'just', 'trying', 'to', 'teach', 'you', '.', 'Excuse', 'me', ',', 'I', 'wanted', 'you', 'to', 'help', ',', 'but', 'you', 'couldn�t', 'move', 'your', 'arms', 'because', 'you', 'were', 'wearing', 'three', 'life', 'jackets', '.', 'Look', 'Joey', ',', 'I�m', 'sorry', 'if-if', 'you', 'thought', 'that', 'was', 'mean', ',', 'but', 'I', 'got', 'ta', 'tell', 'ya', 'something', '.', 'That', 'was', 'not', 'mean', '.', 'Okay', ',', 'my', 'father', 'is', 'mean', '.', 'He', 'used', 'to', 'yell', 'at', 'me', 'all', 'the', 'time', 'on', 'the', 'boat', ',', 'I', 'mean', 'it', 'was', 'horrible', '.', 'I', 'was', 'just', 'being', 'a', 'good', 'teacher', '.', 'Well', ',', 'does', 'a', 'good', 'student', 'drink', 'seven', 'beers', 'during', 'his', 'first', 'lesson', '?', 'Yeah', ',', 'I', 'didn�t', 'want', 'you', 'to', 'get', 'hit', 'by', 'the', 'boom', '!', 'All', 'right', ',', 'y�know', 'what', '?', 'I-I�m', 'sorry', '.', 'I', 'will', 'try', 'to', 'tone', 'it', 'down', 'and', 'uh', 'stop', 'yelling', '.', 'I', 'won�t', 'boss', 'you', 'around', '.', 'And', ',', 'I�ll', 'be', 'nice', '.', 'And', '....', 'Joey', '!', 'Okay', 'Joey', 'honey', ',', 'you�re', 'doing', 'really', 'good', '!', 'All', 'right', ',', 'now', 'I�m', 'just', 'gon', 'na', 'need', 'you', 'to', 'step', 'to', 'the', 'port', 'side', '.', 'Remember', '?', 'Remember', 'how', 'we', 'talked', 'about', 'the', 'port', 'side', '?', 'Right', '?', 'It�s', 'left', 'sweetie', ',', 'but', 'that�s', 'okay', 'sweetie', ',', 'that�s', 'a', 'tough', 'one', '.', 'Okay', ',', 'go', 'to', 'the', 'left', '.', 'The', 'left', '!', 'Just', 'sit', 'over', 'there', '!', '!', 'No', '!', 'No-no', ',', 'no-no-no', ',', 'very', 'quiet', ',', 'said', 'with', 'love', ',', 'no', 'yelling', '.', 'Okay', 'Joey', ',', 'we�re', 'luffing', 'a', 'little', 'bit', ',', 'so', 'could', 'you', 'tighten', 'up', 'the', 'cunningham', '?', 'Joey', ',', 'come', 'on', '!', 'We', 'just', 'went', 'over', 'this', '!', 'No', '!', 'All', 'right', '?', '!', 'I', 'did', 'not', 'see', 'the', 'bird', '!', 'I', 'did', 'not', 'see', 'the', 'fish', '!', 'I', 'did', 'not', 'see', 'the', 'piece', 'of', 'Styrofoam', 'that', 'was', 'shaped', 'like', 'Mike', 'Tyson', '!', 'I', 'did', 'not', ',', 'because', 'I', 'was', 'trying', 'to', 'teach', 'you', 'how', 'to', 'sail', 'a', 'boat', '!', 'Which', 'obviously', 'is', 'an', 'impossible', 'thing', 'to', 'do', '!', 'What', 'do', 'you', 'mean', 'you', 'quit', '?', '!', 'You', 'can�t', 'quit', '!', 'Because', 'you�re', 'not', 'finished', 'yet', 'and', 'I', 'won�t', 'have', 'it', '!', 'Greens', 'do', 'not', 'quit', '!', 'Oh', 'my', 'God', ',', 'wait', 'did', 'I', '...', 'I', 'just', 'said', 'Greens', 'don�t', 'quit', 'didn�t', 'I', '?', 'Did', 'I', 'just', 'say', 'Greens', 'don�t', 'quit', '?', '!', 'No', '!', 'No', '!', 'No', '!', 'I�m', 'not', 'yelling', 'at', 'you', ',', 'I�m', 'just', 'yelling', 'near', 'you', '.', 'Oh', 'God', 'Joey', ',', 'ohh', 'I�m', 'my', 'father', '.', 'Oh', 'my', 'God', ',', 'this', 'is', 'horrible', '!', 'I�ve', 'been', 'trying', 'so', 'hard', 'not', 'to', 'be', 'my', 'mother', 'I', 'did', 'not', 'see', 'this', 'comin�', '.', 'Oh', ',', 'Joey', ',', 'I�m', 'sorry', '.', 'I�m', 'so', 'sorry', '.', 'I', 'just', 'wanted', 'you', 'to', 'learn', '.', 'Really', '?', 'Awww', '...', 'Left', '.', 'Well', 'Joey', ',', 'I', 'hate', 'to', 'admit', 'it', ',', 'your', 'way', 'of', 'sailing', 'is', 'a', 'lot', 'more', 'fun', '.', 'Ohh', 'we�re', 'not', 'sailing', '.', 'All', 'right', '.', 'Hey-hey-hey', '!', '!', 'Sandwiches', '!', 'Here', 'you', 'go', '.', 'Oh', 'wow', '!', 'Ohh', ',', 'sorry', '.', 'Ohh', 'whoops', '.', 'That�s', 'nice', '.', 'Well', 'that', 'was', 'umm', '...', 'Okay', '.', 'Ohh', 'no', 'you', 'don�t', '!', 'You', 'got', 'lighting', 'last', 'time', ',', 'lighting', 'is', 'mine', '!', 'What', 'are', 'you', 'gon', 'na', 'do', 'Pheebs', '?', 'Oh', '!', 'Hi', 'you', 'guys', ',', 'oh', 'my', 'God', '!', 'You�ll', 'never', 'gon', 'na', 'believe', 'happened', 'to', 'me', 'today', '!', 'I', 'am', 'sitting', 'in', 'my', 'office', 'and', '...', 'Joey', '!', 'Kinda', 'in', 'the', 'middle', 'of', 'a', 'story', 'here', '!', 'Okay', ',', 'so', 'anyway', 'I�m', 'sittin�', 'in', 'my', 'office', 'and', 'guess', 'who', 'walks', 'in', '.', 'Joey', '!', 'Yeah', '!', 'Guess', 'who', 'walks', 'into', 'my', 'office', 'is', 'the', 'end', 'of', 'my', 'story', '.', 'It', 'was', 'Ralph', 'Lauren', '!', 'Ralph', 'Lauren', 'walked', 'into', 'my', 'office', '!', 'It�s', 'the', 'same', 'story', '.', 'Anyway', ',', 'Ralph', 'just', 'came', 'in', 'to', 'tell', 'me', 'that', 'he�s', 'so', 'happy', 'with', 'my', 'work', 'that', 'he', 'wants', 'me', 'to', 'be', 'the', 'new', 'merchandising', 'manager', 'for', 'polo', 'retail', '.', 'Yeah', '!', 'I', 'got', '...', 'I', 'get', 'a', 'big', 'pay', 'raise', '!', 'I', 'get', 'to', 'hire', 'my', 'own', 'assistant', '!', 'And', 'you', 'were', 'at', 'this', 'job', 'for', 'four', 'years', '?', 'Okay', ',', 'well', 'this', 'is', 'all', 'very', 'impressive', 'Hilda', ',', 'um', 'I', 'just', 'have', 'one', 'last', 'question', 'for', 'you', '.', 'Uh', ',', 'how', 'did', 'I', 'do', '?', 'Was', 'this', 'okay', '?', 'I�ve', 'never', 'interviewed', 'anyone', 'before', '.', 'I�ve', 'actually', 'never', 'had', 'anyone', 'work', 'for', 'me', 'before', '.', 'Although', 'when', 'I', 'was', 'a', 'kid', ',', 'we', 'did', 'have', 'a', 'maid', ',', 'but', 'this', 'is-this', 'isn�t', 'the', 'same', 'thing', '.', 'No', '.', 'Yeah', ',', 'and', 'I', 'know', 'that', '.', 'All', 'right', ',', 'well', 'thank', 'you', 'so', 'much', 'for', 'coming', 'in', 'it', 'was', 'nice', 'to', 'meet', 'you', '.', 'All', 'right', '.', 'I�m', 'a', 'total', 'pro', '!', 'Wow', '!', 'H-umm', '!', 'Hi', '!', 'Yes', ',', 'uh', 'I�m', 'sorry', 'the', 'models', 'are', 'actually', 'down', 'the', 'hall', '.', 'Really', '?', '!', 'Okay', 'well', 'then', ',', 'all', 'right', ',', 'well', 'just', 'have', 'a', 'seat', 'there', '.', 'Umm', ',', 'so', 'what�s', '...', 'what', 'is', '...', 'what�s', 'your', 'name', '?', 'Uh-huh', ',', 'go', 'on', '.', 'That�s', 'your', 'whole', 'name', ',', 'okay', 'of', 'course', 'it', 'is', '!', 'Okay', ',', 'well', 'let�s-let�s', 'just', 'have', 'a', 'look-see', 'here', '.', 'Oh', 'come', 'on', ',', 'what', 'are', 'you', 'talking', 'about', '?', 'You�ve', 'got', 'three', 'years', 'painting', 'houses', '.', 'Two', 'whole', 'summers', 'at', 'T.G.I', '.', 'Friday�s', ',', 'come', 'on', '!', 'Okay', ',', 'hold', 'on', 'just', 'a', 'second', '.', 'I�m', 'sorry', ',', 'it�s', 'for', 'human', 'resources', ',', 'everybody', 'has', 'to', 'do', 'it', '.', 'Could', 'you', 'just', 'stand', 'up', 'please', '?', 'Chandler', ',', 'you', 'have', 'an', 'assistant', 'right', '?', 'No', ',', 'I-I', 'just', 'don�t', 'know', 'how', 'you', 'decide', 'who', 'to', 'hire', '.', 'I', 'mean', 'I�ve', 'got', 'it', 'narrowed', 'down', 'to', 'two', 'people', '.', 'One', 'of', 'them', 'has', 'great', 'references', 'and', 'a', 'lot', 'of', 'experience', 'and', 'then', 'there�s', 'this', 'guy', '...', 'I', 'love', 'him', '.', 'He�s', 'so', 'pretty', 'I', 'wan', 'na', 'cry', '!', 'I', 'don�t', 'know', 'what', 'to', 'do', '.', 'Tell', 'me', 'what', 'to', 'do', '.', 'Uh-huh', '.', 'No', ',', 'I', 'hear', 'what', 'you�re', 'saying', 'and-and-and', 'that', 'makes', 'a', 'lot', 'of', 'sense', 'but', 'can', 'I', 'just', 'say', 'one', 'more', 'thing', '?', 'Look', 'how', 'pretty', '!', 'Okay', 'you�re', 'right', '.', 'I�ll', 'hire', 'Hilda', 'tomorrow', '.', 'Dumb', 'old', 'perfect', 'for', 'the', 'job', 'Hilda', '!', 'Hi', '!', 'Tag', '.', 'What', 'are', 'you', 'doing', 'here', '?', 'Kinda', '.', 'Oh-ohh', ',', 'thank', 'you', '.', 'Well', '...', 'But', 'I', 'hired', 'you', '!', 'Yeah', '!', 'You-you', 'got', 'the', 'job', '!', 'You�re', 'my', 'new', 'assistant', '!', 'Yeah', '!', 'Me', 'either', '.', 'Umm', ',', 'all', 'right', ',', 'first', 'thing', 'I', 'need', 'you', 'to', 'do', 'is', 'go', 'downstairs', 'and', 'find', 'a', 'women', 'named', 'Hilda', 'and', 'tell', 'her', 'to', 'go', 'home', '.', 'Hi', '!', 'Ohh', ',', 'my', 'new', 'assistant', 'is', 'working', 'out', ',', 'yes', '.', 'Oh', ',', 'my-my', 'new', 'assistant', 'has', 'very', 'happy', 'that', 'I', 'hired', 'my', 'new', 'assistant', '.', 'I�m', 'sorry', 'Joey', '.', 'Well', 'wait', 'a', 'minute', ',', 'what', 'happened', 'to', 'Days', 'of', 'Our', 'Lives', '?', 'Joey', ',', 'why', 'would', 'you', 'do', 'that', '?', 'Tag', '?', 'Hi', ',', 'who', 'was', 'that', '?', 'Really', '?', 'Yeah', ',', 'this', 'is', 'Tag', '.', 'Tag', ',', 'this', 'is', 'Phoebe', '.', 'Phoebe', ',', 'can', 'I', 'see', 'you', 'for', 'a', 'second', '?', 'Okay', '.', 'We�ll', 'be', 'right', 'back', '.', 'All', 'right', 'I', 'know', ',', 'I', 'know', 'how', 'it', 'looks', 'Pheebs', ',', 'but', 'I�m', 'telling', 'you', '...', 'Yes', ',', 'I', 'know', 'that', '.', 'I', 'know', 'that', '.', 'And', 'I', 'know', 'that', 'hiring', 'him', 'was', 'probably', 'not', 'the', 'smartest', 'thing', 'that', 'I�ve', 'ever', 'done', '.', 'But', 'I�m', 'telling', 'you', ',', 'from', 'this', 'moment', 'on', 'I', 'swear', 'this', 'is', 'strictly', 'professional', '.', 'Yes', '?', 'Hi', '!', 'Gay', '?', 'Yeah', '.', 'Hi', '!', 'Well', 'yeah', ',', 'sure', ',', 'what�s', 'up', '?', 'Oh', 'really', '?', '!', 'Oh', ',', 'did', 'you', 'not', 'want', 'people', 'to', 'know', 'that', '?', 'Why�s', 'that', '?', 'Ohh', ',', 'you', 'can', 'say', '.', 'Come', 'on', ',', 'I', 'don�t', 'want', 'you', 'to', 'feel', 'like', 'you', 'can�t', 'tell', 'me', 'things', '.', '�Kay', '.', 'Yeah', '.', 'Yeah', ',', 'she�s', 'gay', '.', 'Hey', 'look-look', ',', 'Phoebe�s', 'talking', 'to', 'uh', ',', 'Cute', 'Coffeehouse', 'Guy', '.', 'Hey', ',', 'I', 'thought', 'that', 'guy', 'was', 'married', '.', 'Phoebe', ',', 'if', 'this', 'guy�s', 'going', 'through', 'a', 'divorce', ',', 'is', 'it', 'such', 'a', 'good', 'idea', 'to', 'start', 'going', 'out', 'with', 'him', '?', 'Oh', ',', 'I', 'got', 'ta', 'get', 'back', 'to', 'work', '.', 'Yeah', 'but', ',', 'my', 'assistant', 'Tag', 'does', 'sit-ups', 'in', 'the', 'office', 'during', 'lunch', '.', 'Ohh', '!', 'I', 'could', 'just', 'spread', 'him', 'on', 'a', 'cracker', '.', 'Oh', 'no', ',', 'I', 'know', 'that', '.', 'I', 'know', 'that', '.', 'Although', ',', 'we', 'made', 'a', 'joke', 'that', 'we', 'spend', 'so', 'much', 'time', 'together', 'he', 'should', 'call', 'me', 'his', 'work', 'wife', '.', 'I', 'am', 'not', 'gon', 'na', 'get', 'fired', ',', 'because', 'I�m', 'not', 'gon', 'na', 'act', 'on', 'it', '.', 'Why', '?', 'Is', 'he', '?', 'He', 'is', '!', 'Isn�t', 'he', '?', 'He�s', 'dating', 'that', 'slut', 'in', 'marketing', '!', 'Oh', ',', 'no', 'sit-ups', 'today', 'Tag', '?', 'Oh', ',', 'well', 'drop', 'and', 'give', 'me', 'ten', 'more', '!', 'Uh', ',', 'I-I', 'had', 'a', 'drink', 'with', 'lunch', '.', 'Did', 'those', 'cost', 'reports', 'come', 'in', '?', 'Oh', ',', 'great', 'could', 'you', 'make', 'me', 'four', 'copies', 'of', 'those', '?', 'Ahh', ',', 'hi', '!', 'Hi', '!', 'Melissa', ',', 'what�s', 'up', '?', 'I�m', 'just', 'uh', ',', 'about', 'to', 'umm', ',', 'go', 'out', 'to', 'the', 'store', 'to', 'get', 'some', 'stuff', 'to', 'put', 'in', 'my', 'backpack', '.', 'Y�know', ',', 'like', 'dried', 'fruit', 'and', 'granola', 'and', 'stuff', '.', 'What�s', 'up', '?', 'No', '.', 'Why', '?', 'Really', '?', '!', 'Got', 'a', 'little', 'crush', 'on', 'Tag', 'there', 'do', 'ya', '?', 'Okay', ',', 'whoa-whoa', 'easy', 'there', 'Melissa', '!', 'This', 'ain�t', 'a', 'locker', 'room', ',', 'okay', '?', 'But', ',', 'y�know', 'I', 'remember', 'him', 'saying', 'that-that', 'he', 'had', 'plans', 'tonight', '.', 'Oh', 'yeah', '.', 'All', 'right', ',', 'back', 'to', 'work', '.', 'Yeah', 'Melissa', ',', 'I', 'don�t', 'want', 'to', 'be', 'known', 'as', 'the', 'uh', ',', 'office', 'bitch', ',', 'but', 'I', 'will', 'call', 'your', 'supervisor', '.', 'Hi', 'Joey', '!', 'What', 'are', 'you', 'doing', 'here', '?', 'Yeah', ',', 'sure', '.', 'Umm', '...', 'here', '.', 'Yeah', ',', 'I', 'don�t', 'think', 'so', 'Joe', '.', 'Hey', ',', 'listen', 'umm', ',', 'what-what', 'are', 'you', 'doing', 'tonight', '?', 'How', 'would', 'you', 'feel', 'about', 'taking', 'out', 'my', 'assistant', 'Tag', '?', 'I�ll', 'pay', '.', 'I�m', 'not', 'asking', 'you', 'to', 'go', 'on', 'a', 'date', 'with', 'him', '!', 'Joey', ',', 'just-just', 'he-he�s', 'new', 'in', 'town', 'and', 'I', 'know', 'he', 'doesn�t', 'have', 'any', 'guy', 'friends', '.', 'Just', 'take', 'him', 'to', 'like', 'a', 'ball', 'game', 'or', 'something', '.', 'I�ll', 'really', 'appreciate', 'it', '.', 'Yeah', '?', 'Yeah', '!', 'Hi', 'Tag', '!', 'Hey', ',', 'so', 'did', 'you', 'have', 'fun', 'with', 'uh', ',', 'with', 'Joey', 'last', 'night', '?', 'Ohh', 'that�s', 'nice', '.', 'Wo-women', '?', 'You', 'mean', 'like', 'old', 'women', '?', 'Oh', '.', 'That�s', 'great', '!', 'Wow', 'man', ',', 'so', 'Joey', 'must�ve', 'really', 'taught', 'you', 'some', 'stuff', 'huh', '?', 'Yeah', '?', 'Hi', '!', 'So', 'uh', ',', 'heard', 'you', 'had', 'some', 'fun', 'with', 'Tag', 'last', 'night', '.', 'Yeah', 'and', 'you', 'had', 'fun', 'teaching', 'him', 'how', 'to', 'be', 'all', 'Joey', '.', 'Y�know', ',', 'all', 'the', 'women', '.', 'All', 'right', ',', 'would-would', 'you', 'mind', 'just', 'not', 'going', 'out', 'with', 'him', 'again', '?', 'Okay', ',', 'just', 'the', 'idea', 'of', 'you', 'and', 'he', 'and', 'all', 'these', 'women', ',', 'it�s', 'just', '...', 'And', 'I', 'know', 'he�s', 'my', 'assistant', 'and', 'I', 'can�t', 'date', 'him', '...', 'but', 'it', 'just', 'bothers', 'me', ',', 'all', 'right', '?', '!', 'All', 'right', ',', 'will', 'you', ',', 'will', 'you', 'at', 'least', 'tell', 'him', 'how', 'hollow', 'and', 'unsatisfying', 'this', ',', 'dating', 'tons', 'of', 'women', 'thing', 'is', '!', 'I', 'just', 'don�t', 'want', 'him', 'to', 'meet', 'anybody', 'until', 'I', 'am', 'over', 'my', 'crush', '.', 'And', 'I', 'will', 'get', 'over', 'it', '.', 'It�s-it�s', 'not', 'like', 'I', 'love', 'him', ',', 'it�s', 'just', 'physical', '!', 'But', '...', 'I', 'mean', 'I', 'get', 'crushes', 'like', 'this', 'all', 'the', 'time', '!', 'I', 'mean', 'hell', ',', 'I', 'had', 'a', 'crush', 'on', 'you', 'when', 'I', 'first', 'met', 'ya', '!', 'Yeah', '.', 'Sure', '.', 'So', ',', 'will', 'you', 'talk', 'to', 'him', '?', 'Oh', ',', 'come', 'on', '!', 'I�ll', 'give', 'you', 'ten', 'free', 'Ralph', 'Lauren', 'shirts', '.', 'Hi', '!', 'Thanks', ',', 'hey', 'so', 'uh', 'what�d', 'you', 'do', 'last', 'night', '?', 'Oh', 'yeah', '?', 'Another', 'night', 'of', 'birdogging', 'the', 'chickas', '?', 'Wow', '!', 'I', 'did', 'not', 'see', 'that', 'coming', '.', 'Oh', 'no', ',', 'yes', 'I', 'do', '!', 'I', 'do', '!', 'I', 'mean', ',', 'come', 'on', 'go', 'on', ',', 'you', 'were', ',', 'you', 'were', 'saying', 'I', 'am', 'happier', 'when', 'uh', ',', 'y�know', '?', 'Really', '?', 'Sp-spoil', '?', 'Uh-huh', '.', 'Well', ',', 'I-I�m', 'startin�', 'too', '.', 'Yes', '!', 'Hell', 'yes', '!', 'Okay', '.', 'I�d', 'love', 'to', '!', 'Hello', '?', '!', 'Oh', ',', 'yeah', '!', 'This', 'is', 'gon', 'na', 'be', 'a', 'while', '.', 'Excuse', 'me', '.', 'Yeah', '!', 'Oh', 'my', 'God', '!', 'This', 'is', 'it', '!', 'I', 'really', 'hope', 'it�s', 'you', '!', 'Me', 'too', '!', 'Okay', ',', 'bla-bla-bla-bla', '!', '!', 'Who', 'is', 'it', '?', '!', 'Hypothetically', '!', 'Uh-hmm', '.', 'Yeah', 'that�s', 'actually', 'a', 'pretty', 'good', 'idea', '.', 'Well', 'of', 'course', 'we', 'will', 'help', 'you', 'decide', '!', 'We', 'will', 'do', 'anything', 'we', 'can', 'to', 'help', 'you', '!', 'Now', ',', 'I', 'would', 'like', 'to', 'make', 'a', 'toast', ',', 'to', 'the', 'future', 'Mrs.', 'Chandler', 'Bing', ',', 'my', 'best', 'friend', ',', 'and', 'truly', 'one', 'of', 'the', 'nicest', 'people', 'that', '...', 'Fine', '!', 'Yeah', '?', 'Really', '?', '!', 'Oh', 'my', 'God', 'Phoebe', '!', 'I', 'mean', 'I�m', 'just', '....', 'Wait', 'a', 'minute', '.', 'If', 'I�m', 'your', 'maid', 'of', 'honor', 'that', 'means', 'you', 'are', 'Monica�s', '.', 'Ohh', '!', 'No', 'way', 'Phoebe', '!', 'I', 'want', 'to', 'be', 'Monica�s', '!', 'Why', 'does', 'it', 'matter', 'so', 'much', 'to', 'you', '?', '!', 'What-what', 'if', 'I', 'marry', 'Ross', '....', 'Or', 'Joey', '?', 'Yeah', 'but', 'Phoebe', '...', 'Okay', '.', 'Okay', '.', 'It�s', '...', 'since', 'you�ve', 'never', 'done', 'it', 'before', 'you', 'can', 'be', 'Monica�s', 'made', 'of', 'honor', '.', 'I�m', 'gon', 'na', 'marry', 'someone', 'good', 'y�know', '.', 'Better', 'than', 'Chandler', '.', 'Phoebe', 'is', 'gon', 'na', 'be', 'Monica�s', 'maid', 'of', 'honor', '!', 'You', 'have', 'been', 'maid', 'of', 'honor', 'before', '?', '!', '!', 'All', 'right', 'that�s', 'it', '!', 'I', 'am', 'maid', 'of', 'honor', '!', 'How', 'come', 'you', 'are', '?', '!', 'Oh', ',', 'come', 'on', '!', 'This', 'is', 'crazy', '!', 'Can�t', 'we', 'just', 'flip', 'a', 'coin', '?', '!', 'Okay', '.', 'Okay', 'fine', ',', 'y�know', 'what', '?', 'We', 'will', 'let', 'Ross', 'and', 'Joey', 'decide', '.', 'Hiiiii', ',', 'Ross', '!', 'Sweetie', '.', 'Okay', ',', 'uh', '...', '...', 'it�s', 'gon', 'na', 'be', 'okay', '!', 'Look', 'Monica', ',', 'getting', 'cold', 'feet', 'is', 'very', 'common', '.', 'Y�know', ',', 'it�s-it�s', 'just', 'because', 'of', 'all', 'the', 'anticipation', 'and', 'you', 'just', 'have', 'to', 'remember', 'that', 'you', 'love', 'Chandler', '.', 'And', 'also', ',', 'I', 'ran', 'out', 'on', 'a', 'wedding', '.', 'You', 'don�t', 'get', 'to', 'keep', 'the', 'gifts', '.', 'Thanks', '!', 'Thank', 'you', 'judges', '.', 'Oh', '!', 'Wait', 'a', 'minute', '!', 'She', 'just', 'made', 'a', 'scene', 'in', 'the', 'middle', 'of', 'the', 'ceremony', '!', 'Ohh', ',', 'wait', 'a', 'minute', ',', 'we', 'haven�t', 'pre', '...', 'Okay', '!', 'Okay', '!', 'Umm', ',', 'Webster�s', 'Dictionary', 'defines', 'marriage', 'as', '...', 'Okay', '!', '!', 'Forget', 'that', '!', 'That', 'sucks', '!', '!', 'Okay', ',', 'never', 'mind', '!', 'Forget', 'it', '!', 'Umm', ',', 'umm', ',', 'okay', ',', 'uh', '...', 'I', 'met', ',', 'I-I', 'met', ',', 'I', 'met', 'Monica', 'when', 'we', 'were', 'just', 'a', 'couple', 'of', 'six', 'year', 'olds', 'and', 'I', 'became', 'friends', 'with', 'Chandler', 'when', 'he', 'was', '25', ',', 'although', 'he', 'seemed', 'like', 'a', 'six', 'year', 'old', '.', 'Thank', 'you', '.', 'Thank', 'you', 'very', 'much', '.', 'Umm', ',', 'I�ve', 'known', 'them', 'separately', 'and', 'I�ve', 'known', 'them', 'together', 'and-and', 'to', 'know', 'them', 'as', 'a', 'couple', 'is', 'to', 'know', 'that', 'you', 'are', 'truly', 'in', 'the', 'presence', 'of', 'love', '.', 'So', 'I', 'would', 'like', 'to', 'raise', 'my', 'glass', 'to', 'Monica', 'and', 'Chandler', 'and', 'the', 'beautiful', 'adventure', 'they', 'are', 'about', 'to', 'embark', 'upon', 'together', '.', 'I', 'can', 'think', 'of', 'no', 'two', 'people', 'better', 'prepared', 'for', 'the', 'journey', '.', 'Aw', ',', 'thanks', '!', 'What', '?', '!', 'Well', 'then', 'I', 'demand', 'a', 'recount', '!', 'No', '!', 'Y�know', 'what', '?', 'No', '!', 'No', '!', 'You', 'thing', 'was', 'so', 'stupid', 'anyway', ',', 'this', 'was', 'ridiculous', '.', 'We�re', 'gon', 'na', 'flip', 'a', 'coin', '!', 'All', 'right', '?', '!', 'Heads', '!', 'Well', 'y�know', 'what', '?', 'I', 'hope', 'Monica', 'forgives', 'you', 'after', 'you', 'throw', 'her', ',', 'her', 'vegetarian', ',', 'voodoo', ',', 'goddess', 'circley', 'shower', '!', 'Hi', 'Pheebs', '.', 'Hi', '!', 'I', 'just', 'want', 'to', 'apologize', '.', 'I�m', 'really', 'sorry', 'I', 'was', 'a', 'baby', '.', 'Yeah', '.', 'Yeah', ',', 'and', 'y�know', 'you-you', 'deserve', 'to', 'win', '.', 'And-and', 'y�know', 'I', 'was', 'thinking', 'about', 'it', ',', 'if-if', 'you�re', 'Monica�s', 'maid', 'of', 'honor', 'that', 'means', 'I', 'get', 'to', 'be', 'yours', '.', 'Yeah', '!', 'Oh', ',', 'umm', 'when-when', 'Monica', 'and', 'Chandler', 'got', 'engaged', 'I', 'started', 'putting', 'some', 'stuff', 'together', ',', 'y�know', 'just', 'in', 'case', '...', 'Here', 'is', 'a', 'book', 'of', 'poetry', 'that', 'I', 'know', 'Monica', 'loves', '.', 'And-and', 'ohh', 'God', 'this', 'is', 'funny', ',', 'look', ',', 'this', 'is', 'a', 'picture', 'of', 'one', 'Halloween', 'where', 'she', 'dressed', 'up', 'as', 'a', 'bride', '.', 'And', 'look', ',', 'she', 'made', 'me', 'carry', 'her', 'train', ',', 'which', 'was', 'weird', 'because', 'I', 'was', 'Wonder', 'Woman', '.', 'Oh', 'and', 'here�s', 'a', 'little', 'purse', 'that', 'I', 'found', '.', 'Y�know', 'I', 'just', 'thought', 'that', 'maybe', 'they', 'could', 'hold', 'the', 'rings', 'in', 'there', '.', 'And', 'umm', ',', 'vintage', 'handkerchiefs', 'y�know', '�cause', ',', 'people', 'cry', 'at', 'weddings', '.', 'I�m', 'just', 'gon', 'na', 'grab', 'a', 'couple', 'of', 'these', '.', 'Oh', ',', 'I', 'forgot', 'this', 'was', 'in', 'here', '.', 'Umm', ',', 'this', 'was', 'the', 'uh', 'garter', 'that', 'I', 'was', 'saving', 'for', 'my', 'wedding', 'and', 'I', 'wanted', 'it', 'to', 'be', 'Monica�s', 'something', 'borrowed', 'and', 'it�s', 'blue', '.', 'Yeah', '...', 'You', 'do', '?', 'Why', '?', 'But', 'Pheebs', ',', 'y�know', 'you', 'earned', 'it', '.', 'No', ',', 'I', 'was', 'ten', '.', 'I', 'just', 'developed', 'early', '.', 'Hey', '!', 'Yeah', 'okay', ',', 'you', 'laugh', 'now', ',', 'but', 'she�s', 'gon', 'na', 'be', 'yours', '.', 'Hi', '!', 'Oh', ',', 'how', 'was', 'your', 'date', 'last', 'night', '?', 'Oh', 'good', '.', 'Ahhh', '!', 'My', 'God', ',', 'sorry', '!', 'What-what', '?', '!', 'You�re', 'gon', 'na', 'leave', 'this', 'person', 'with', 'me', '?', '!', 'Why', '?', '!', 'What', '?', '!', 'Are', 'you', 'kidding', '?', '!', 'Y�know', 'what', '?', 'That�s', 'a', 'lot', 'to', 'remember', ',', 'can�t', 'I', 'just', 'tell', 'her', 'you�re', 'a', 'pig', '?', 'Well', 'forget', 'it', ',', 'I�m', 'not', 'telling', 'that', 'girl', 'anything', '.', 'That', 'is', 'not', 'my', 'responsibility', '.', 'Hi', '.', 'Yeah', ',', 'Joey', 'kinda', 'disabled', 'it', 'when', 'I', 'moved', 'in', '.', 'Hi', '.', 'Would', 'you', 'like', 'some', 'pancakes', '?', 'Yeah', ',', 'we', 'ended', 'up', 'spending', 'the', 'day', 'together', 'and', 'had', 'such', 'a', 'great', 'time', '!', 'I', 'know', '!', 'Oh', 'and', 'I�ll', 'call', 'ya', 'too', '!', 'Bye', '!', 'Oh', 'Joey', ',', 'I�m', 'sorry', 'I', 'just', 'couldn�t', 'tell', 'her', 'all', 'those', 'things', 'you', 'wanted', 'me', 'to', 'tell', 'her', '.', 'And', 'y�know', 'we', 'got', 'to', 'talking', 'and', 'I', '...', 'Cupid', '.', 'Look', 'Joey', ',', 'come', 'on', 'she�s', 'so', 'perfect', 'for', 'you', '!', 'I', 'mean', 'she�s', 'sweet', ',', 'she-she', 'likes', 'baseball', ',', 'and', 'she-she', 'had', 'two', 'beers', 'at', 'lunch', '.', 'Yeah', ',', 'maybe', 'if', 'you', 'gave', 'this', 'girl', 'a', 'chance', 'it', 'would', 'go', 'somewhere', '.', 'Fine', '.', 'Phoebe', '!', 'I�m', 'sorry', '?', 'Oh', 'my', 'God', '!', 'Did', 'you', 'get', 'to', 'see', 'anything', 'good', '?', 'Yeah', ',', 'there', 'was', '.', 'It', 'was', '...', 'there', 'the', 'corner', 'of', 'the', 'library', 'where-where', 'all', 'these', 'dusty', 'books', 'that', 'nobody', 'ever', 'read', '...', 'Yes', ',', 'there', 'was', '.', 'Well', 'now', 'what�s', 'the', 'rush', '?', 'Well', 'look', 'who�s', 'here', '!', 'Hi', '!', 'Well', ',', 'we', 'were', 'just', 'about', 'to', 'take', 'off', 'and', 'see', 'a', 'movie', '.', 'Oh', 'no', '!', 'Oh', 'Phoebe', ',', 'we', 'forgot', 'that', 'party', 'we', 'have', 'to', 'go', 'to', '.', 'Wait', 'a', 'minute', '!', 'Why', 'don�t', 'you', 'guys', 'do', 'something', '?', '!', 'How', 'did', 'it', 'go', 'with', 'Erin', '?', 'Oh', 'my', 'God', '!', 'Listen', 'to', 'you', 'talkin�', 'about', 'having', 'kids', '.', 'Oh', 'my', 'Joey', '.', 'Oh', ',', 'please', 'don�t', 'get', 'married', 'before', 'I', 'do', '.', 'So', 'how�s', 'it', 'goin�', 'with', 'Joey', '?', 'Okay', '?', 'Wait', 'okay', ',', 'tell-tell', 'me', 'that', 'you', 'like', 'him', ',', 'please', '?', 'I', 'mean', 'tell', 'me', 'that', 'you', 'like', 'him', '.', 'But', 'you', 'said', 'that', 'you', 'liked', 'him', '!', 'I', 'mean', 'what', 'happened', '?', '!', 'Did', 'ya', 'just', 'change', 'your', 'mind', '?', '!', 'Ugh', ',', 'tramp', '!', 'Yeah', ',', 'see', 'ya', '.', 'Wow', '.', 'Well', ',', 'I', 'guess', 'it', 'was', 'Cupid', 'who', 'brought', 'her', 'here', '.', 'Hi', '!', 'Jo-Joey', ',', 'look', 'honey', 'we-we', 'need', 'to', 'talk', 'okay', '?', 'Umm', ',', 'I', 'kinda', 'got', 'the', 'feeling', 'from', 'her', 'today', 'that', 'uh', ',', 'she�s', 'not', 'lookin�', 'for', 'a', 'serious', 'relationship', '.', 'Well', ',', 'she', 'told', 'me', '.', 'She', 'said', 'she�s', 'kinda', 'a', 'loner', '.', 'Joey', '!', '!', '!', 'Yeah', 'and', 'honey', 'I', 'promise', 'next', 'time', 'that', 'I', 'will', 'just', 'say', 'good-bye', 'and', 'tell', '�em', 'you�re', 'not', 'looking', 'for', 'a', 'relationship', '.', 'Well', 'that', 'too', '.', 'Joey', '?', 'Do', 'you', 'want', 'some', 'pancakes', '?', 'All', 'right', ',', 'I', 'got', '48', '.', 'How', 'come', 'we', 'have', 'one', 'extra', 'place', 'setting', '?', 'Oh', ',', 'right', '.', 'Sorry', '.', 'But', 'Tag', \"'s\", 'not', 'coming', ';', 'his', 'girlfriend', 'came', 'into', 'town', ',', 'so', 'he', \"'s\", 'spending', 'Thanksgiving', 'with', 'her', '.', 'Well', ',', 'I', 'was', 'going', 'to', ',', 'but', 'then', 'I', 'figured', ',', 'you', 'know', '...', 'you', \"'re\", 'food', 'is', 'so', 'delicious', 'and', 'perfect', ',', 'you', 'can', 'never', 'have', 'too', 'many', 'of', 'those', 'pumpkin', 'things', '.', 'Seriously', ',', 'it', \"'s\", 'moving', '!', 'Hi', 'Tag', '!', 'What', 'are', 'you', 'doing', 'here', '?', 'Well', ',', 'sure', '!', 'Come', 'in', '!', 'Well', ',', 'what-what', 'happened', 'to', 'your', 'girlfriend', '?', 'Oh', ',', 'I', \"'m\", 'sorry', '.', 'Wait', 'a', 'minute', '.', 'Do', 'you', 'not', 'like', 'all', 'dogs', '?', 'I', 'mean', ',', 'not', 'even', 'puppies', '?', 'Oh', ',', 'wait', 'before', 'you', 'guys', 'go', ',', 'can', 'I', 'just', 'ask', 'you', 'a', 'question', '?', 'When', 'a', 'guy', 'breaks', 'up', 'with', 'his', 'girlfriend', ',', 'what', 'is', 'an', 'appropriate', 'amount', 'of', 'time', 'to', 'wait', 'before', 'you', 'make', 'a', 'move', '?', 'Interesting', '.', 'Huh', '.', 'A', 'moo-point', '?', 'Have', 'I', 'been', 'living', 'with', 'him', 'for', 'too', 'long', ',', 'or', 'did', 'that', 'all', 'just', 'make', 'sense', '?', 'You', \"'re\", 'right', ',', 'I', \"'m\", 'sorry', '.', 'Thank', 'you', '.', 'Okay', ',', 'that', \"'s\", 'what', 'I', \"'m\", 'gon', 'na', 'do', '.', 'Hey', '!', 'How', 'are', 'you', 'holding', 'up', '?', 'Yeah', '?', 'I', \"'m\", 'sorry', 'about', 'your', 'girlfriend', '.', 'So', 'were', 'you', 'guys', 'together', 'a', 'long', 'time', '?', 'Now', 'that', 'she', 'broke', 'up', 'with', 'you', '?', 'Yeah', '.', 'Hmmmm', '.', 'No', '...', 'Yeah', ',', 'all', 'the', 'time', ',', 'constantly', '.', 'It', \"'s\", 'terrifying', '.', 'But', 'you', 'know', 'that', 'I', 'figure', 'it', '...', 'it', 'has', 'to', 'work', 'out', '.', 'Because', ',', 'uh', '...', 'it', 'has', 'to', '.', 'Yeah', ',', 'I', 'know', ',', 'I', 'do', '.', 'I', 'really', 'do', '.', 'Well', ',', 'what', 'is', 'a', 'boss', 'for', '?', 'Hug', 'it', 'out', '!', 'Uh', ',', 'yeah', ',', 'well', ',', 'see', ',', 'he', '...', 'Joey', 'knows', ',', 'that', \"I'm-I\", \"'m\", 'very', 'insecure', 'about', 'my', 'back', 'and', ',', 'and', '...', 'you', \"'re\", 'hugging', 'me', ',', 'so', 'obviously', 'you', 'are', 'not', 'repulsed', 'by', 'it', ',', 'yeah', '!', 'No', '?', 'All', 'right', ',', 'here', \"'s\", 'the', 'truth', 'um', ',', 'Joey', 'said', 'what', 'he', 'said', ',', 'because', 'um', ',', 'I', \"'m\", 'attracted', 'to', 'you', '.', 'Yeah', ',', 'I', 'admit', 'it', '.', 'I', 'have', 'a', 'crush', 'on', 'you', ',', 'and', 'uh', ',', 'and', ',', 'and', 'I', 'know', 'that', \"'s\", 'crazy', 'because', 'we', 'work', 'together', ',', 'and-and', 'nothing', 'could', 'ever', 'happen', ',', 'and', 'the', 'last', 'thing', 'I', 'want', 'to', 'do', 'is-is', 'to', 'freak', 'you', 'out', 'or', 'make', 'you', 'feel', 'uncomfortable', '.', 'Which', 'is', 'why', 'it', 'would', 'be', 'really', 'great', 'if', 'you', 'said', 'something', 'right', 'about', 'now', '.', 'What', '?', 'Okay', ',', 'that', \"'s\", 'gon', 'na', 'take', 'them', 'a', 'minute', '.', 'Do', 'you', 'have', 'anything', 'else', 'you', 'wan', 'na', 'get', 'off', 'your', 'chest', '?', 'Wait', ',', 'we', 'still', 'have', 'time', 'to', 'talk', 'and', 'they�re-they', \"'re\", 'not', 'even', 'in', 'the', 'car', 'yet', '!', 'Oh', 'look', ',', 'there', 'they', 'go', ',', 'okay', '.', 'Yeah', ',', 'ohh', '!', 'Why', ',', 'damnit', ',', 'why', 'did', 'I', 'open', 'my', 'mouth', '?', 'I', 'have', 'a', 'crush', 'on', 'you', ';', 'I', 'am', 'attracted', 'to', 'you', '.', 'Gee', ',', 'I-I', 'know', 'that', 'I', 'freaked', 'him', 'out', 'Hi', '!', 'Hi', '!', 'Oh', ',', 'hi', '!', 'How', 'are', 'you', 'doing', '?', 'Oh', '.', 'Look', ',', 'um', ',', 'I', 'think', 'we', 'should', 'talk', 'about', 'what', 'happened', 'on', 'the', 'terrace', '.', 'Ah', ',', 'I-I', 'never', 'should', 'have', 'said', 'what', 'I', 'said', '.', 'It', '...', 'y�know', 'what', '?', 'It', 'just', 'does', \"n't\", 'matter', 'how', 'I', 'feel', '.', 'I', 'mean', 'we', 'work', 'together', ',', 'so', 'nothing', 'could', 'really', 'ever', 'happen', 'between', 'us', ',', 'and', 'what', 'I', 'would', 'love', 'is', 'just', 'to', 'go', 'to', 'work', 'on', 'Monday', ',', 'and-and', 'never', 'talk', 'about', 'this', 'again', ',', 'okay', '?', 'Big', 'day', 'Monday', 'lots', 'to', 'do', '.', 'So', ',', 'we', \"'re\", 'okay', '?', 'Oh', ',', 'god', ',', 'I', 'know', 'it', ',', 'that', 'I', 'freaked', 'you', 'out', '.', 'Really', '?', 'Okay', ',', 'well', ',', 'that', \"'s\", 'one', 'less', 'thing', 'we', 'have', 'to', 'do', 'on', 'Monday', '.', 'Gooood', 'morning', '!', '!', 'Well', ',', 'why', 'shouldn�t', 'I', 'be', '?', 'I', 'have', 'great', 'friends', '!', 'I', 'have', 'a', 'wonderful', 'job', '!', 'Come', 'on', ',', 'it�s', 'not', 'a', 'big', 'deal', '!', 'We', 'stayed', 'up', 'all', 'night', 'coming', 'up', 'with', 'a', 'plan', 'so', 'that', 'us', 'dating', 'will', 'not', 'be', 'a', 'problem', '.', 'We', '...', 'We', 'are', 'not', '...', 'going', 'to', 'let', 'it', '...', 'be', 'a', 'problem', '.', 'Well', 'y�know', ',', 'we', 'did', 'other', 'stuff', 'too', '.', 'Oh', 'Monica', 'come', 'on', ',', 'y�know', 'I', 'don�t', 'sleep', 'with', 'guys', 'on', 'the', 'first', 'date', '!', 'Anymore', '!', '!', 'Hi', '.', 'Tag', ',', 'I', 'have', 'a', 'conference', 'call', 'today', 'is', 'that', 'correct', '?', 'Okay', ',', 'thank', 'you', '.', 'That�ll', 'be', 'all', '.', 'Wait', '!', 'Wait', '!', 'Did', 'you', 'see', 'that', '?', 'That', 'mail', 'guy', 'had', 'no', 'idea', 'there', 'was', 'something', 'going', 'on', 'between', 'us', '.', 'Okay', ',', 'you', 'hard', 'worker', '!', 'I�ll', 'remember', 'to', 'put', 'that', 'in', 'your', 'evaluation', '.', 'Well', ',', 'you�ve', 'been', 'here', 'for', 'two', 'months', 'now', 'and', 'your', 'boss', 'is', 'required', 'to', 'hand', 'in', 'a', 'performance', 'evaluation', '.', 'But', 'y�know', ',', 'there', 'is', 'one', 'thing', 'that', 'I', 'have', 'yet', 'to', 'evaluate', '.', 'No', ',', 'I�ve', 'just', 'always', 'wanted', 'to', 'do', 'that', '.', 'Can', 'you', 'help', 'me', 'clean', 'this', 'up', '?', 'So', 'did', 'you', 'read', 'your', 'evaluation', 'yet', '?', 'Okay', 'please', ',', 'you�re', 'kidding', 'right', '?', '!', 'I', 'wrote', 'that', 'one', 'as', 'a', 'joke', 'for', 'you', '!', 'I�m', 'thinkin�', 'no', '.', 'Umm', ',', 'I', 'said', 'I', 'thought', 'you', 'were', 'a', 'good', 'kisser', ',', 'and', 'uh', ',', 'and', 'that', 'I', 'like', 'your', 'tiney-tiny', 'touchie', '.', 'Well', ',', 'it', 'gets', 'worse', '.', 'When', 'asked', 'if', 'you', 'take', 'initiative', 'I', 'wrote', ',', '``', 'Yes', ',', 'he', 'was', 'able', 'to', 'unhook', 'my', 'bra', 'with', 'minimal', 'supervision', ',', \"''\", 'and', 'under', 'Problems', 'with', 'Performance', 'I', 'wrote', ',', '``', 'Dear', 'God', ',', 'I', 'hope', 'not', ',', \"''\", 'and', 'then', 'uh', ',', 'then', 'I', 'drew', 'a', 'little', 'smiley', 'face', ',', 'and', 'then', 'a', 'small', 'pornographic', 'sketch', '.', 'Maybe', 'it�s', 'not', 'as', 'bad', 'as', 'I', 'think', '.', 'Y�know', ',', 'maybe', 'they', 'didn�t', 'take', 'it', 'the', 'way', 'I', 'meant', 'it', '.', 'Ugh', ',', 'I', 'just', 'got', 'ta', 'get', 'the', 'thing', 'back', '!', 'Yeah', '?', 'Oh', 'my', 'God', '!', 'Joey', '!', 'Ugh', '!', 'Okay', ',', 'I', 'think', 'we', 'can', 'get', 'the', 'evaluation', 'back', 'before', 'they', 'see', 'it', ',', 'but', 'we�re', 'gon', 'na', 'have', 'to', 'get', 'into', 'Mr.', 'Zelner�s', 'office', '.', 'Now', ',', 'he', 'doesn�t', 'get', 'in', 'until', '10', ',', 'so', 'he�s', 'no', 'problem', ',', 'but', 'his', 'assistant', ',', 'Betty', ',', 'she', 'comes', 'in', 'early', 'to', 'eat', 'her', 'breakfast', 'at', 'her', 'desk', '.', 'Yeah', ',', 'well', 'Betty�s', 'kinda', 'sad', '.', 'Which', 'is', 'why', 'I', 'believe', 'I', 'can', 'lure', 'her', 'away', 'with', 'these', 'chocolates', '.', 'Now', ',', 'while', 'I', 'distract', 'her', ',', 'you', 'get', 'in', 'the', 'office', '.', 'Let�s', 'roll', '!', 'Yeah', ',', 'sure', 'Mr.', 'Zelner', ',', 'for', 'you', 'anything', '...', 'minute', '.', 'Okay', '.', 'Fine', '.', 'Abort', 'the', 'plan', ',', 'abort', 'the', 'plan', '.', 'Okay', '.', 'Uh', ',', 'well', 'can', 'we', ',', 'can', 'we', 'get', 'you', 'anything', 'Mr.', 'Zelner', '?', 'Maybe', 'some', 'chocolates', '?', 'Oh', 'my', 'God', '.', 'Can', 'you', 'imagine', 'if', 'there', 'was', '?', '!', 'I', 'mean', ',', 'what', 'would', 'happen', 'exactly', '.', 'Well', '...', 'Oh', 'no-no-no', '...', 'You�re', 'lookin�', 'at', 'it', 'upside', 'down', '...', 'y�know', 'what', '?', 'It', 'doesn�t', 'matter', '.', 'Whoa', '!', 'I', 'can�t', 'believe', 'you', 'did', 'that', '.', 'That', 'was', 'really', 'sweet', '.', 'No', ',', 'you', 'could�ve', 'lost', 'your', 'job', '.', 'Thank', 'you', '!', 'You�re', 'great', '!', 'What', '?', 'I', '...', 'It', 'just', '...', 'it', 'took', 'me', 'so', 'long', 'to', 'get', 'that', 'desk', 'organized', '.', 'There', 'it', 'is', '.', 'Oh', 'my', 'god', '!', '!', 'You', 'may', 'need', 'to', 'use', 'this', 'year', 'to', 'teach', 'Ben', 'about', 'Phoebe', '.', 'Did', 'you', 'know', 'he', 'was', 'in', 'there', '?', 'Hey', '!', 'Drums', '?', 'Ha', '!', 'Joey', ',', 'y�know', 'that', 'you', 'could', 'just', 'not', 'throw', 'the', 'sticks', 'up', 'in', 'the', 'air', '.', 'What', 'are', 'you', 'talking', 'about', '?', 'I', 'love', 'them', '!', 'Yeah', ',', 'I', 'had', 'a', 'tarantula', 'when', 'I', 'was', 'a', 'kid', '.', 'But', 'it-it', 'died', ',', 'because', 'my', 'cat', 'ate', 'it', '.', 'And', 'then', ',', 'then', 'my', 'cat', 'died', '.', 'But', 'Joey', ',', 'is', \"n't\", 'this', 'cool', '?', 'Oh', ',', 'is', \"n't\", 'that', 'adorable', '?', 'Joey', 'is', 'afraid', 'of', 'the', 'tarantula', '.', 'What', '?', 'Wait-wait', 'a', 'minute', ',', 'what', '?', 'Phoebe', ',', 'what', \"'s\", 'the', 'matter', '?', 'And', 'that', 'makes', 'you', 'angry', 'because', '...', 'Where', 'did', 'you', 'get', 'that', '?', 'Phoebe', '?', 'Did', 'you', 'get', 'all', 'this', 'stuff', 'for', 'Joey', 'to', 'try', 'and', 'drive', 'me', 'out', 'of', 'the', 'apartment', '?', 'Honey', ',', 'if', 'you', 'wanted', 'to', 'do', 'that', ',', 'you', 'might', 'as', 'well', 'just', 'gotten', 'him', 'a', 'fish', ',', 'you', 'know', 'how', 'fish', 'freaked', 'me', 'out', '!', 'It', 'would', \"n't\", 'have', 'mattered', 'anyway', ',', 'Phoebe', ',', 'you', 'and', 'I', 'are', ',', 'are', 'gon', 'na', 'live', 'together', ',', 'we', \"'re\", 'roommates', ';', 'that', \"'s\", 'the', 'deal', '.', 'Oh', ',', 'it', \"'s\", 'so', 'much', 'more', 'fun', 'with', 'you', '.', 'We', 'did', '!', 'Oh', ',', 'I', 'would', 'love', 'to', '!', 'Good', ',', 'good', ',', 'good', ',', 'good', ',', 'good', '.', 'Um', '...', 'Done', '!', 'Oh', 'wow', '!', 'Look', 'at', 'this', 'place', '!', 'Oh', 'my', 'God', '!', 'Okay', ',', 'remember', 'uh', ',', 'remember', 'how', 'you', 'told', 'me', 'that', 'your', 'grandmother', 'put', 'up', 'that', 'wall', 'to', 'make', 'that', 'into', 'two', 'bedrooms', '?', 'And', 'remember', 'how', 'you', 'always', 'said', 'you', 'were', 'afraid', 'the', 'landlord', 'would', 'find', 'out', 'and', 'then', 'tear', 'it', 'down', '?', 'Do', 'you', 'really', 'not', 'know', 'where', 'I�m', 'going', 'with', 'this', '?', 'It', 'left', '!', 'It�s', 'one', 'huge', 'room', '!', 'See', '?', 'You', 'can�t', ',', 'because', 'of', 'the', 'new', 'skylight', '!', 'So', 'what', 'should', 'we', 'do', '?', 'Should', 'we', 'start', 'looking', 'for', 'a', 'new', 'place', '?', 'Oh', 'yeah', '?', 'Startin�', 'to', 'feel', 'her', 'again', 'there', 'are', 'we', '?', 'Pheebs', 'is', 'your', 'grandmother', 'maybe', 'saying', 'that', 'you', 'should', 'live', 'here', 'alone', '?', 'Phoebe', ',', 'it�s', 'okay', '.', 'I', 'like', 'living', 'with', 'Joey', '.', 'Oh', 'please', ',', 'I', 'hate', 'packing', ',', 'it�s', 'closer', 'to', 'work', ',', 'and', 'we', 'do', 'have', 'fun', '.', 'Although', ',', 'I�m', 'really', 'gon', 'na', 'miss', 'living', 'with', 'you', '.', 'I', 'know', '.', 'Oh-oh', ',', 'wait', 'did', 'you', 'hear', 'that-hear', 'that', '?', 'Listen', ',', 'I�m', 'gettin�', 'something', 'from', 'your', 'grandmother', ',', 'she', 'said', 'that', 'since', 'you', 'get', 'to', 'keep', 'the', 'one', 'bedroom', 'apartment', 'you', 'should', 'give', 'Rachel', 'the', 'purple', 'chair', '?', 'Hey', '!', 'Wow', '!', 'It', 'looks', 'like', 'the', 'Easter', 'Bunny�s', 'funeral', 'in', 'here', '.', 'Oh', '.', 'I', 'got', 'it', '!', 'Its', 'back', 'in', 'cage', '!', 'Joey', ',', 'would', 'you', 'just', 'come', 'out', 'here', 'and', 'stop', 'being', 'such', 'a', 'baby', '!', 'Hi', '.', 'Oh', ',', 'y', '’', 'know', 'I', \"'m\", 'not', 'that', 'much', 'of', 'a', 'sweet', 'tooth', '.', 'I', '......', 'Wow', '.', 'My', 'God', ',', 'so', 'creamy', '.', 'Oh', 'my', 'God', ',', 'this', 'is', 'the', 'best', 'cheesecake', 'I', 'have', 'ever', 'had', '.', 'Where', 'did', 'you', 'get', 'this', '?', 'Chandler', ',', 'this', 'is', 'not', 'addressed', 'to', 'you', '.', 'This', 'is', 'addressed', 'to', 'Mrs.', 'Braverman', 'downstairs', '.', 'Thief', '.', 'Why', ',', 'why', 'not', '?', 'Chandler', ',', 'you', 'stole', 'this', 'cheesecake', '.', 'That', 'is', 'wrong', '.', 'Oh', ',', 'I', '’', 'm', 'sorry', 'what', '?', 'Umm', ',', 'I', 'think', 'he', '’', 's', 'still', 'out', '.', 'What', '’', 's', 'wrong', '?', '``', 'Pheebs', ',', 'can', '’', 't', 'make', 'it', ',', 'got', 'a', 'date', '.', 'Talk', 'to', 'you', 'later', '.', 'Big', 'Daddy', '.', \"''\", 'Big', 'Daddy', '?', 'Hi', '!', 'So', 'just', 'bring', 'it', 'back', 'downstairs', ',', 'what', '’', 's', 'the', 'problem', '?', 'Are', 'you', 'serious', '?', '!', 'Chandler', ',', 'we', 'ate', 'an', 'entire', 'cheesecake', 'two', 'days', 'ago', 'and', 'you', 'want', 'more', '?', 'It', 'was', 'cheesecake', '.', 'It', 'was', 'fine', '.', 'It', 'had', 'a', 'buttery', ',', 'crumbly', ',', 'graham', 'cracker', 'crust', ',', 'with', 'a', 'very', 'rich', 'yet', 'light', ',', 'cream', 'cheese', 'filling', '...', 'Wow', '!', 'My', 'whole', 'mouth', 'just', 'filled', 'with', 'saliva', '!', 'Yeah', 'and', 'we', '’', 'll', 'drop', 'it', 'off', 'downstairs', 'so', 'that', 'we', '’', 're', 'not', 'tempted', '.', 'Momma', '’', 's', 'Little', 'Bakery', ',', 'Chicago', ',', 'Illinois', '.', 'What', '?', 'Wait', 'a', 'minute', ',', 'I', 'didn', '’', 't', 'pay', ',', 'I', 'thought', 'you', 'paid', '!', 'Its', 'still', 'there', '!', 'She', 'could', 'be', 'out', 'of', 'town', '.', 'Maybe', 'she', '’', 'll', 'be', 'gone', 'for', 'months', '.', 'No', 'that', 'could', 'kill', 'her', '.', 'No', 'so', 'we', '’', 're', 'protecting', 'her', '.', 'But', 'we', 'should', 'move', 'quick', '.', 'Because', 'I', 'think', 'I', 'just', 'heard', 'her', 'moving', 'around', 'in', 'there', '.', 'Oh', 'my', 'God', '!', 'That', 'is', 'so', 'good', '!', 'Hey', '!', 'Oh', 'it', '’', 's', 'umm', ',', 'it', '’', 's', 'tofu', 'cake', '.', 'Do', 'you', 'want', 'some', '?', 'Mm-mmm', '.', 'Oh', ',', 'what', 'are', 'you', 'going', 'to', 'do', '?', '!', 'Are', 'you', 'gon', 'na', 'go', 'run', 'tell', 'Monica', '?', '!', 'Are', 'you', 'gon', 'na', 'tell', 'Joey', '?', '!', 'No', '!', 'Because', 'then', 'you', 'will', 'have', 'to', 'tell', 'them', 'what', 'we', 'did', '!', 'We', 'are', 'desert', 'stealers', '!', 'We', 'are', 'living', 'outside', 'the', 'law', '!', 'What', '?', '!', 'What', '?', '!', 'Wait', 'a', 'minute', '!', 'Oh', 'no-no-no-no-no', ',', 'no', 'you', 'don', '’', 't', '!', 'You', 'think', 'I', 'trust', 'you', 'with', 'it', '?', '!', 'No', '!', 'We', '’', 're', 'gon', 'na', 'split', 'it', '!', 'You', 'take', 'half', 'and', 'I', 'take', 'half', '!', 'What', '?', 'Oh', ',', 'well', 'then', 'y', '’', 'know', 'what', '?', 'I', 'think', 'Monica', 'would', 'be', 'very', 'interested', 'to', 'know', 'that', 'you', 'called', 'her', 'cheesecake', 'dry', 'and', 'mealy', '.', 'Okay', '!', 'All', 'right', ',', 'pick', 'a', 'half', '.', 'Oh', 'for', 'God', 'sake', 'just', 'pick', 'a', 'piece', '!', 'That', '’', 's', 'also', 'the', 'smaller', 'piece', '.', 'Okay', ',', 'there', 'you', 'go', '.', 'Enjoy', 'your', 'half', 'my', 'friend', ',', 'but', 'that', 'is', 'it', '.', 'No', 'sharing', '.', 'No', 'switching', ',', 'and', 'don', '’', 't', 'come', 'crying', 'to', 'me', 'if', 'you', 'eat', 'your', 'piece', 'to', 'fast', '.', 'Oh', '!', '!', '!', '!', 'Okay', ',', 'you', 'got', 'ta', 'give', 'me', 'some', 'of', 'your', 'piece', '.', 'Oh', '!', 'Yay', '!', 'Look', '!', 'There', '’', 's', 'a', 'piece', 'that', 'doesn', '’', 't', 'have', 'floor', 'on', 'it', '!', 'Hey', ',', 'come', 'on', 'now', '!', 'No', '.', 'No', ',', 'you', 'can�t', '.', 'Oh', 'I', 'don�t-I', 'don�t', 'know', '.', 'Yeah', 'actually', ',', 'I', 'think', 'we�re', 'gon', 'na', 'take', 'off', 'too', '.', 'We', 'rented', 'a', 'movie', '.', 'Uh', 'Pheebs', ',', 'we', 'just', 'actually', 'kinda', 'wanted', 'to', 'be', 'alone', '.', 'Oh', '.', 'You', 'wan', 'na', 'go', 'in', 'the', 'bedroom', '?', 'It�s', 'a', 'little', 'more', 'comfortable', '.', 'Okay', '.', 'Oh', 'wait', '!', 'Umm', ',', 'did', 'you', 'send', 'those', 'contracts', 'to', 'Milan', '?', 'No', 'seriously', ',', 'y�know', 'the', 'contracts', 'I', 'gave', 'you', ',', 'did', 'you', 'overnight', 'them', '?', 'Okay', 'please', 'tell', 'me', 'that', 'this', 'is', 'just', 'one', 'of', 'your', 'jokes', 'that', 'you', 'do', 'that', 'I', 'don�t', 'get', '.', 'Y�know', ',', 'like', 'the', 'thing', 'when', 'you', 'put', 'the', 'phone', 'in', 'your', 'pants', '?', 'Tag', '!', 'I�m', 'serious', '!', 'This', 'isn�t', 'funny', '!', 'Those', 'contracts', 'absolutely', 'had', 'to', 'go', 'out', 'today', '!', 'Yes', 'I', 'did', '!', 'And', 'I', 'put', 'a', 'little', 'Post-It', 'on', 'it', 'that', 'said', ',', '``', 'Must', 'go', 'out', 'today', ',', \"''\", 'and', 'underlined', 'today', 'three', 'times', 'and', ',', 'and', 'then', 'I', 'put', 'a', 'little', 'heart', 'in', 'the', 'corner', 'because', 'I', 'didn�t', 'want', 'to', 'seem', 'to', 'bossy', '.', 'Y�know', 'what', 'Tag', ',', 'if', 'we', 'went', 'down', 'to', 'the', 'office', 'you', 'would', 'see', 'those', 'contracts', 'sitting', 'on', 'your', 'desk', '.', 'Or', 'maybe', 'you', 'would', 'see', 'me', 'looking', 'embarrassed', 'because', 'you', 'are', 'talking', 'on', 'the', 'phone', 'with', 'your', 'crotch', '!', 'No', '!', 'Come', 'on', 'its', 'late', ',', 'we�re', 'not', 'gon', 'na', 'go', 'down', 'to', 'the', 'office', '.', 'Okay', 'get', 'your', 'coat', '!', 'Oh', '!', 'When', 'did', 'you', 'unhook', 'this', '?', 'Nice', 'work', '!', 'Oh', 'how', 'can', 'you', 'possibly', 'know', '?', 'Look', 'at', 'this', 'mess', ',', 'Tag', '!', 'I', 'mean', ',', 'this', 'is', 'what', 'I�m', 'talking', 'about', '!', 'You', 'have', 'to', 'be', 'organized', '!', 'You�ve', 'got', 'newspapers', '!', 'You�ve', 'got', 'magazines', '!', 'You', 'got', '...', 'Ohh', '!', 'And', 'who', 'is', 'this', 'chippy', '?', 'A', 'little', 'young', 'for', 'you', 'Tag', ',', 'but', 'whatever', '.', 'Okay', ',', 'very', 'cute', 'braces', '.', 'Anyway', 'y�know', 'what', ',', 'the', 'point', 'is', 'Tag', ',', 'start', 'looking', 'because', 'you', 'are', 'going', 'to', 'find', 'those', 'contracts', 'on', 'your', 'desk', '.', 'In', 'the', 'afternoon', '.', 'Mr.', 'Zelner', 'came', 'into', 'my', 'office', 'after', 'lunch', '.', 'He', 'put', 'them', 'on', 'my', 'desk', ',', 'and', 'then', 'I', 'put', 'a', 'Post-It', 'on', 'it', 'that', 'said', ',', '``', 'Must', 'go', 'out', 'today', '.', \"''\", 'So', 'you', 'just', 'keep', 'looking', 'in', 'there', '!', 'All', 'right', '?', 'Puzzler', '.', 'A', 'bit', 'of', 'a', 'puzzle', '.', 'Why', 'don�t', 'you', 'um', ',', 'check', 'the', 'copy', 'room', ',', 'maybe', 'you', 'left', 'the', 'contracts', 'in', 'there', '?', 'I', 'don�t', 'know', 'Tag', '!', 'How', 'can', 'your', 'genitals', 'make', 'phone', 'calls', '?', 'Okay', '?', 'It�s', 'not', 'a', 'perfect', 'world', '!', 'Just', 'go', 'please', '.', 'Thank', 'you', '.', 'Hello', '?', 'I', 'still', 'don�t', 'get', 'it', '.', 'Hi', '!', 'I', 'got', 'you', 'some', 'coffee', '.', 'To', ',', 'uh', '...', '...', 'fair', 'enough', '.', 'So', '!', 'Do', 'you', 'got', 'anything', 'for', 'me', '?', 'Oh', 'my', 'God', '!', 'Did', 'you', 'check', 'your', 'entire', 'desk', '!', 'Did', 'you', 'check', 'all', 'the', 'drawers', '!', 'Well', 'yeah', ',', 'I', 'wish', 'that', 'you', 'would', '.', 'Well', ',', 'no', 'it�s', 'not', 'in', 'there', '!', 'How', 'about', 'that', 'drawer', '?', 'Y�know', ',', 'I', 'don�t-I', 'don�t', 'know', '.', 'Let', 'me', ',', 'let', 'me', 'check', '.', 'Can', 'I', 'see', 'you', 'in', 'my', 'office', 'for', 'a', 'minute', '?', 'You', 'put', 'these', 'on', 'my', 'desk', '!', 'Oh', 'really', '?', 'So', 'you�re', 'saying', 'they', 'just', 'slid', 'out', 'of', 'your', 'bottom', 'drawer', ',', 'crawled', 'across', 'the', 'floor', ',', 'then', 'jumped', 'on', 'to', 'my', 'desk', '?', '!', 'I', 'am', 'so', 'hot', 'for', 'you', 'right', 'now', '.', 'Hey', '.', 'Well', ',', 'y�know', 'I', 'was', 'thinking', 'of', 'moving', 'the', 'couch', 'over', 'here', '.', 'So', 'that', 'there', 'will', 'be', 'a', 'decent', 'place', 'for', 'me', 'to', 'sit', '.', 'And', 'your', 'lap', 'does', 'not', 'count', '!', 'Okay', '?', 'Come', 'on', 'help', 'me', 'move', 'this', '.', 'No', '?', 'I�m', 'sorry', ',', 'Rosita', '?', 'As', 'in', '...', 'Joey', ',', 'it�s', 'just', 'a', 'chair', '!', 'What�s', 'the', 'big', 'deal', '?', 'Stevie', 'the', 'TV', '?', 'No', '!', 'Oh', 'what', 'does', 'he', 'know', '!', 'Come', 'on', 'Rosita', ',', 'us', 'chichas', 'got', 'to', 'stick', 'together', '!', 'You', 'bitch', '!', 'Joey', ',', 'Joey', 'I', 'am', 'so', 'sorry', '.', 'Okay', ',', 'come', 'on', '...', 'Joey', ',', 'I�ll', 'buy', 'you', 'a', 'new', 'one', '!', 'All', 'right', '?', 'We�ll', 'go', 'down', 'to', 'the', 'store', 'right', 'now', 'and', 'we�ll-we�ll', 'get', 'you', 'a', 'new', 'chair', '.', 'But', 'don�t', 'you', 'think', 'Rosita', 'would�ve', 'wanted', 'you', 'to', 'move', 'on', '?', 'I', 'mean', 'y�know', ',', 'she', 'did', 'always', 'put', '....', 'your', 'comfort', 'first', '.', 'Okay', '?', 'You', 'ready', '?', 'You', 'will', 'like', 'it', '!', 'You', 'don�t', 'even', 'know', '!', 'Well', 'look', ',', 'if', 'you', 'don�t', 'like', 'this', '...', 'Come', 'on', 'Joey', ',', 'I', 'just', 'bought', 'you', 'a', 'new', 'chair', '!', 'The', 'most', 'expensive', 'one', 'in', 'the', 'store', '!', 'Hey', ',', 'y�know', 'what', 'I', 'was', 'thinking', '?', 'We', 'could', 'name', 'her', 'Francette', '.', 'Joey', ',', 'the', 'new', 'chair', 'will', 'be', 'here', 'in', 'an', 'hour', '.', 'Maybe', 'we', 'should', 'actually', 'move', 'Rosita', 'out', 'of', 'here', '.', 'Y�know', ',', 'start', 'the', 'heeling', 'process', '?', 'That�s', 'weird', '.', 'It�s', 'not', 'a', 'miracle', 'Joey', '!', 'I�m', 'sure', 'there�s', 'some', 'explanation', '.', 'Joey', ',', 'I', 'really', 'don�t', '....', 'Well', 'no', '.', 'No', ',', 'y�know', 'what', '?', 'Maybe', 'somebody', 'came', 'in', 'here', 'and', 'fixed', 'it', '!', 'Or', 'something', '!', 'That�s', 'right', 'Joey', ',', 'the', 'chair', 'angel', 'came', 'in', 'and', 'heeled', 'your', 'chair', '.', 'I', 'am', 'so', 'psyched', 'I', 'kept', 'this', 'chair', 'for', 'myself', '!', 'Hey', ',', 'how�s', '...', 'how�s', 'the', 'uh', ',', 'miracle', 'chair', '?', 'Yeah', '?', 'Wow', '!', 'Y�know', ',', 'that', 'this', 'thing', 'has', 'speakers', 'in', 'the', 'headrest', '!', 'Yeah', '!', 'You', 'can', 'hook', 'it', 'up', 'to', 'your', 'TV', 'and', 'you', 'get', 'radio', '!', 'Hey', 'Chandler', '!', 'How', 'would', 'you', 'like', 'to', 'sit', 'in', 'a', 'chair', 'that', 'fully', 'reclines', ',', 'has', 'a', 'rolling', 'massage', ',', 'and', 'speakers', 'in', 'the', 'head', 'rest', '?', 'Well', 'what', 'if', 'I', 'told', 'you', ',', 'you', 'can', 'do', 'it', 'in', 'my', 'apartment', '?', 'I', 'just', 'purchased', 'the', 'La-Z-Boy', 'E-cliner', '3000', '.', 'Well', ',', 'it�s', 'a', 'long', 'story', ',', 'but', 'umm', 'I', 'broke', 'Joey�s', 'chair', '...', 'Yeah', '.', 'Ohhhhh', '.', 'That�s', 'how', 'it', 'got', 'fixed', '!', 'Noo', '!', 'Angels', '.', 'What', '?', 'Wh-hey', '!', 'Yeah', ',', 'he', 'thought', 'he', 'broke', 'your', 'chair', 'so', 'he', 'switched', 'the', 'chairs', '!', 'No', 'Joe', ',', 'no', 'miracle', '.', 'Uh-huh', '!', 'Nice', 'try', ',', 'but', 'you', 'don�t', 'get', 'that', 'chair', 'anymore', '!', 'All', 'right', '?', 'That', 'is', 'my', 'chair', 'now', '!', 'You', 'can', 'sit', 'on', 'my', 'lap', '!', 'No', 'I', 'take', 'that', 'back', '!', 'No-no-no', '!', 'This', 'chair�s', 'not', 'going', 'anywhere', '.', 'The', 'logic', 'is', ',', 'that', 'there', 'are', 'two', 'of', 'us', 'and', 'we', 'are', 'both', 'strong', 'enough', 'to', 'break', 'a', 'chair', 'in', 'half', '!', 'We�re', 'the', 'Cobras', '!', 'Ahhhh', '!', '.', 'Uh-huh', '.', 'Hey', '!', 'Oh', 'yeah', ',', 'Joey', 'broke', 'it', '.', 'Had', 'to', 'get', 'rid', 'of', 'it', '.', 'Good', 'ones', '?', 'Well', ',', 'can', 'I', 'keep', 'the', 'presents', 'and', 'still', 'be', '29', '?', 'Y�know', ',', 'I�m', 'still', '29', 'in', 'Guam', '.', 'Late', 'thirties', '?', 'Oh', 'come', 'on', 'you', 'guys', '!', 'Is', 'it', 'just', 'me', '?', 'Am', 'I', 'overreacting', 'to', 'this', '?', 'Look', ',', 'y�know', 'I', 'know', 'my', 'life�s', 'going', 'pretty', 'well', ',', 'but', 'I', 'look', 'around', 'and', 'I', 'just', 'see', 'so', 'many', 'people', 'who�ve', 'accomplished', 'so', 'many', 'other', 'goals', 'by', 'the', 'time', 'they�re', 'thirty', '.', 'There', 'you', 'go', '!', 'Thirty', '.', 'Ugh', ',', 'I', 'mean', 'thirty', '!', 'Monica', ',', 'do', 'you', 'remember', 'mean', 'old', 'Mrs.', 'Kreeger', 'in', 'the', 'fifth', 'grade', '?', 'She', 'was', 'thirty', '!', 'Nothing', '.', 'I', 'don�t', 'want', 'to', 'do', 'anything', '.', 'Really', '!', 'God', 'Ross', ',', 'what', 'were', 'you', 'thinking', '?', 'I', 'know', 'it�s', 'really', 'shallow', ',', 'but', 'a', 'part', 'of', 'me', 'wants', 'him', 'again', '.', 'Y�know', 'what', '?', 'I', 'am', 'going', 'to', 'do', 'something', 'today', '.', 'I�m', 'not', 'just', 'gon', 'na', 'sit', 'around', 'like', 'some', 'old', 'lady', '.', 'I�m', 'gon', 'na', 'get', 'something', 'pierced', '.', 'Like', 'my', 'uh', ',', 'like', 'my', 'nose', 'or', 'my', 'tongue', 'or', 'something', '.', 'So', 'what', '?', '!', 'Y�know', 'what', '?', 'The', 'way', 'I', 'see', 'it��Ow', '!', 'Son', 'of', 'a', 'bitch', '!', '!', 'Get', 'out', ',', 'get', 'out', 'of', 'my', 'apartment', '.', 'Hey', '!', 'Everybody', 'hide', '!', 'Hide', '!', 'I', 'saw', 'her', '!', 'She�s', 'coming', '!', 'What�s-what�s', 'going', 'on', '?', 'Phil�s', 'really', 'pissed', '!', 'Okay', ',', 'but', 'taking', 'care', 'of', 'a', 'drunk', ',', 'naked', 'woman', 'seems', 'like', 'a', 'job', 'for', 'Joey', '.', 'Ahh', '!', 'A', 'scooter', '!', 'No', '!', 'No-no', ',', 'I', 'love', 'it', '.', 'Thank', 'you', '.', 'Okay', '.', 'Okay', '.', 'Happy', 'birthday', 'Grandma', '!', 'It�s', 'better', 'to', 'be', 'over', 'the', 'hill', 'then', 'buried', 'under', 'it', '.', 'All', 'our', 'love', 'Monica', 'and', 'Chandler', '.', 'That�s', 'funny', ',', 'yeah', '!', 'No', ',', 'I', 'know', '!', 'I', 'get', 'it', '!', 'It�s', 'funny', '!', 'No', 'I', 'know', ',', 'because', 'to', 'be', 'a', 'grandmother', 'you', 'have', 'to', 'be', 'married', 'and', 'have', 'children', 'and', 'I', 'don�t', 'have', 'any', 'of', 'those', 'things', '.', 'That�s', 'why', 'it�s', 'so', 'funny', '.', 'Well', ',', 'I', 'feel', 'fine', ',', 'but', 'I', 'think', 'you�re', 'bumming', 'out', 'the', 'rest', 'of', 'the', 'kids', '.', 'Okay', '!', 'Y�know', 'what', '?', 'I', 'realized', 'it', 'was', 'stupid', 'to', 'get', 'upset', 'about', 'not', 'having', 'a', 'husband', 'and', 'kids', '.', 'All', 'I', 'really', 'needed', 'was', 'a', 'plan', '.', 'See', 'I', 'wan', 'na', 'have', 'three', 'kids', '...', 'As', 'I', 'was', 'saying', '....', 'I', 'should', 'probably', 'have', 'the', 'first', 'of', 'the', 'three', 'kids', 'by', 'the', 'time', 'I�m', '35', 'which', 'gives', 'me', 'five', 'years', '.', 'I', 'love', 'this', 'plan', '!', 'I', 'wan', 'na', 'marry', 'this', 'plan', '!', 'So', ',', 'if', 'I', 'wan', 'na', 'have', 'my', 'kid', 'when', 'I�m', '35', ',', 'I', 'don�t', 'have', 'to', 'get', 'pregnant', 'until', 'I�m', '34', '.', 'Which', 'gives', 'Prada', 'four', 'years', 'to', 'start', 'making', 'maternity', 'clothes', '!', 'Oh', 'wait', ',', 'but', 'I', 'do', 'want', 'to', 'be', 'married', 'for', 'a', 'year', 'before', 'I', 'get', 'pregnant', '.', 'No', ',', 'so', 'I', 'don�t', 'have', 'to', 'get', 'married', 'until', 'I�m', '33', '!', 'That�s', 'three', 'years', ',', 'that�s', 'three', 'whole', 'years', '...', 'Oh', ',', 'wait', 'a', 'minute', 'though', '.', 'I�ll', 'need', 'a', 'year', 'and', 'a', 'half', 'to', 'plan', 'the', 'wedding', ',', 'and', 'I�d', 'like', 'to', 'know', 'the', 'guy', 'for', 'a', 'year', ',', 'year', 'and', 'a', 'half', 'before', 'we', 'get', 'engaged�', 'Which', 'means', 'I', 'need', 'to', 'meet', 'the', 'guy', 'by', 'the', 'time', 'I�m', 'thirty', '.', 'No', '!', 'Ross', ',', 'no', '!', 'It', 'is', 'not', 'fine', '!', 'Eh-eh-according', 'to', 'my', 'plan', 'I', 'should', 'already', 'be', 'with', 'the', 'guy', 'I', 'wan', 'na', 'marry', '!', 'I�m', 'telling', 'you', 'it�s', 'like', 'watching', 'Bambi', 'learn', 'how', 'to', 'walk', '.', 'Hey', '.', 'Oh', ',', 'poor', 'Pheebs', '.', 'Ross', ',', 'I', 'really', 'don�t', 'think�', 'Hey', 'Joey', ',', 'can', 'I�', 'Actually', ',', 'I', 'just', 'wan', 'na', 'talk', 'to', 'Tag', '.', 'Whatever', '!', 'Okay', ',', 'I�m', 'not', 'your', 'mother', '.', 'Not', 'in', 'the', 'street', '!', '!', 'Hi', '.', 'Hey', '.', 'Yeah', ',', 'I�m', 'doing', 'okay', '.', 'I�m', 'um�let�s', 'talk', '.', 'Umm�', 'Ohh', 'Tag', ',', 'umm�you�re', 'such', 'a', 'great', 'guy', 'and', 'we', 'have', 'sooo', 'much', 'fun', 'together', 'but', 'I', 'don�t-I', 'don�t�', 'Well', 'said', '.', 'And', 'a', 'uh', 'good', 'example', 'of', 'the', 'fun', 'I', 'was', 'referring', 'to', 'uhh', ',', 'but', 'I', 'just', 'think', 'I�m', 'past', 'the', 'point', 'where', 'I', 'think', 'I', 'can', 'y�know', ',', 'just', 'have', 'fun', '.', 'Yeah', ',', 'it', 'is', '!', 'But', 'you�re', 'just', 'a', 'kid', '!', 'I', 'mean', 'you�re', '25', '!', 'Oh', 'God', '!', 'Y�know', 'what', 'I', 'wish', '?', 'I', 'wish', 'you', 'were', 'six', 'years', 'older', '.', 'Well', 'actually', ',', 'if', 'I�m', 'wishin�', 'for', 'stuff', ',', 'I', 'actually', 'wish', 'I', 'was', 'six', 'years', 'younger', '.', 'Yeah', ',', 'I�m', 'sorry', '.', 'Oh', ',', 'if', 'I', 'only', 'want', 'two', 'kids', ',', 'can', 'I', 'keep', 'him', 'for', 'another', 'year', '?', 'Ohh', '...', 'Yeah', ',', 'it�s', 'just', 'y�know', '...', 'Oh', '!', 'I', 'would', 'love', 'to', 'read', 'a', 'poem', '.', 'It�ll', 'be', 'a', 'short', 'one', '.', 'Ohhh', '...', 'Wait', ',', 'what', 'do', 'you', 'mean', 'you�re', 'getting', 'a', 'new', 'brain', '?', 'She', 'is', 'so', 'good', 'at', 'throwing', 'drinks', 'in', 'people�s', 'faces', ',', 'I', 'mean', 'I', 'don�t', 'think', 'I�ve', 'ever', 'seen', 'her', 'finish', 'a', 'beverage', '.', 'Oh', '!', 'Cecilia', 'Monroe', 'man', ',', 'what', 'a', 'great', 'actress', '.', 'Well', ',', 'I', \"'d\", 'have', 'to', 'say', 'gay', '.', 'Well', 'mainly', 'because', 'he', \"'s\", 'kissing', 'that', 'other', 'guy', '.', 'Oh', 'yeah', 'he', \"'s\", 'too', 'cute', 'to', 'be', 'straight', '.', 'All', 'right', ',', 'straight', ',', 'and', 'not', 'subtle', '.', 'Oh', ',', 'well', ',', 'we', 'can', 'hand', 'it', 'to', 'Gunther', 'and', 'he', \"'ll\", 'put', 'it', 'in', 'lost', 'and', 'found', '.', 'What', 'if', ',', 'um', ',', 'if', 'he', 'calls', 'his', 'own', 'cell', 'phone', 'to', 'find', 'out', 'who', 'found', 'it', 'and', 'I', 'answer', 'and', 'we', 'start', 'talking', 'and', 'we', 'fall', 'in', 'love', '.', 'I', 'mean', 'would', \"n't\", 'that', 'be', 'a', 'great', 'story', '?', 'Kind', 'of', 'like', 'a', 'fairy', 'tale', 'for', 'the', 'digital', 'age', '.', 'What', '?', 'Wait', '!', 'Why', '...', 'why', 'do', 'you', 'get', 'the', 'story', '?', 'Phoebe', ',', 'you', 'had', 'a', 'date', 'three', 'days', 'ago', '.', 'Okay', '.', 'Okay', ',', 'see', '?', 'I', 'get', 'the', 'phone', '.', 'Yeah', '!', 'And', 'until', 'now', ',', 'I', 'didn�t', 'think', 'I�d', 'love', 'again', '.', 'Oh', 'hey-hey', 'wait', '!', 'How', 'do', 'we', 'fairly', 'decide', 'who', 'gets', 'the', 'phone', '?', 'Well', 'umm', ',', 'maybe', 'we', 'could', 'uhh', '...', 'Ah-ha', '!', 'Too', 'slow', '!', '!', 'No', 'Phoebe', '!', 'You', 'can', 'not', 'get', 'the', 'phone', 'that', 'way', ';', 'that�s', 'not', 'fair', '!', 'Okay', 'look', ',', 'I', 'have', 'an', 'idea', '.', 'Why', 'don�t', 'we', ',', 'why', 'don�t', 'we', 'see', 'what', 'kind', 'of', 'number', 'he', 'has', 'on', 'his', 'speed', 'dial', ',', 'and', 'then', 'from', 'that', 'we', 'can', 'tell', 'who', 'has', 'more', 'in', 'common', 'with', 'him', '.', 'And', 'then', 'whoever', 'does', 'gets', 'the', 'phone', '.', 'I', 'don�t', 'think', 'so', '.', 'All', 'right', ',', 'first', 'name', 'on', 'the', 'speed', 'dial', 'is', 'mom', '.', 'Okay', 'no', 'way', ',', 'you', 'can', 'not', 'use', 'that', 'to', 'get', 'the', 'cute', 'guy', 'and', 'the', 'last', 'blueberry', 'muffin', '.', 'Yes', 'okay', '.', 'Well', 'now', 'see', 'this', 'isn�t', 'telling', 'us', 'anything', '.', 'Joe', '.', 'Carlos', '.', 'Peter', '.', 'Ooh', '!', 'Peter', 'Luger', '!', 'That�s', 'a', 'steak', 'house', '!', 'Oh', ',', 'I', 'win', '!', 'He�s', 'got', 'Barney�s', 'on', 'his', 'speed', 'dial', '.', 'His', 'new', 'girlfriend', '!', 'Hi', 'Pheebs', '!', 'How', 'are', 'ya', '?', 'Umm', 'Pheebs', ',', 'remember', 'when', 'we', 'were', 'in', 'the', 'coffee', 'house', 'we', 'decided', 'that', 'I', 'was', 'going', 'to', 'keep', 'the', 'uh', ',', 'the', 'cute', 'guy�s', 'cell', 'phone', '?', 'And', 'remember', 'how', 'I', 'said', 'I', 'was', 'going', 'to', 'keep', 'it', 'in', 'my', 'purse', 'so', 'that', 'if', 'it', 'rang', 'I', 'could', 'just', 'pick', 'it', 'up', '?', 'And', 'do', 'you', 'remember', 'going', 'into', 'my', 'purse', 'and', 'stealing', 'the', 'phone', '?', '!', 'You', 'stole', 'the', 'phone', '!', 'No', '?', 'So', 'you�re', 'saying', 'that', 'if', 'I', 'called', 'it', ',', 'it', 'wouldn�t', 'ring', '?', 'Phoebe', '!', 'Oh', 'is', 'it', '?', '!', 'Uhh', ',', 'hello', '?', 'Yes', 'hi', ',', 'is', 'Rachel', 'there', '?', 'Yes', 'she', 'is', ',', 'just', 'one', 'moment', 'please', '.', 'It�s', 'for', 'me', '!', 'Oh', 'my', 'God', '!', 'I', 'bet', 'that�s', 'him', '.', 'My', 'digital', 'fairy', 'tale', 'is', 'about', 'to', 'begin', '.', 'I', 'wonder', 'how', 'I', 'should', 'be', '?', 'Should', 'I', 'be', 'uh', 'Hello', '?', 'Or', 'should', 'I', 'be', 'Hi', '!', 'It�s', 'Rach', '...', 'Would', 'you', 'stop', 'doing', 'that', '?', '!', 'Phoebe', '!', 'You', 'can�t', 'do', 'th', '....', 'You', 'do', 'know', 'that', 'I', 'will', 'be', 'here', 'when', 'he', 'comes', 'over', '.', 'You', 'just', 'said', 'it', '!', 'Oh', 'Phoebe', '!', 'Ohh', '!', 'Hey', '!', 'Hey', '!', 'Well', 'why', 'shouldn�t', 'I', '?', '!', 'Well', ',', 'then', 'I', 'get', 'to', 'give', 'him', 'the', 'cell', 'phone', '.', 'You�re', 'not', 'the', 'man', 'who', 'left', 'the', 'cell', 'phone', '.', 'Is-is', 'he', 'coming', '?', 'We�ll', 'be', 'right', 'back', 'sir', '.', 'I', 'don�t', 'know', '!', 'I', 'know', '!', 'What', '?', '!', 'No-no', 'they', 'do', 'but', ',', 'you', 'just', 'have', 'to', 'wait', '.', 'All', 'right', '.', 'All', 'right', 'Phoebe', 'I', 'will', 'let', 'you', 'have', 'him', ',', 'but', 'you', 'owe', 'me', ';', 'you', 'owe', 'me', 'big', '!', 'Ohh', '...', 'Hi', '.', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', '!', 'Ohh', ',', 'Jessica', 'Lockhart', '!', '!', 'In', 'my', 'apartment', '!', '!', 'I', 'am', 'such', 'a', 'huge', 'fan', '!', 'I', 'am', 'such', 'a', 'huge', 'fan', '!', 'MONICA', '!', '!', '!', '!', 'MONICA', '!', '!', '!', '!', 'God', '.', 'You', 'seem', 'really', ',', 'really', 'nice', '.', 'I', 'mean', 'n-not-not', 'fake', 'at', 'all', 'like', 'most', 'famous', 'people', '.', 'Okay', '.', 'You', 'are', 'so', 'beautiful', '.', 'I', 'can', 'imagine', 'you', 'in', 'a', 'short', 'plaid', 'skirt', 'and', 'knee', 'socks', '.', 'No', '!', 'Hi', '!', 'Hi', 'Ben', '!', 'Oh', ',', 'yeah', 'go', 'ahead', '.', 'No', '.', 'No', '.', 'Ben', ',', 'it', \"'s\", 'Rachel', '!', 'But', 'whatever', '.', 'Awww', ',', 'just', 'like', 'his', 'daddy', '.', 'What-what', 'about', 'Monica', '?', 'So', 'it', 'would', 'just', 'be', 'me', 'alone', '?', 'Huh', 'umm�', 'Well', 'that�y�know', 'it�s', 'just', 'uh', ',', 'I�ve', 'never', 'done', 'that', 'before', '.', 'Me', 'and', 'him', 'alone', '.', 'Okay', '.', 'Okay', '.', 'Okay', '.', 'Uh', ',', 'what', 'do', 'I', ',', 'what', 'do', 'I', 'do', 'with', 'him', '?', 'Okay', '.', 'Yeah', 'I', 'think', 'so', '.', 'Bye', '.', 'Ahhh�', 'So', 'this', 'is', 'fun', ',', 'huh', '?', 'Okay', '.', 'Uh', ',', 'want', 'something-want', 'something', 'to', 'drink', '?', 'Uh', 'great', '!', 'How', 'do', 'you', 'feel', 'about', 'Diet', 'Coke', '?', 'Okay', '.', 'Well', 'that�s', 'pretty', 'much', 'all', 'that', 'we', 'have�Oh', '!', 'Oh', '!', 'Have', 'you', 'ever', 'had', 'a', 'virgin', 'margarita', '?', 'Water', 'it', 'is', '.', 'Ben', 'y�know', 'when', 'uh', ',', 'when', 'you', 'were', 'a', 'baby', ',', 'you', 'and', 'I', 'used', 'to', 'hang', 'out', 'all', 'the', 'time', '.', '�Cause', 'I', 'was', ',', 'I', 'was', 'your', 'daddy�s', 'girlfriend', '.', 'No', ',', 'I�m', 'not', '.', 'Hey', '!', 'We', 'were', 'not', 'on', 'a�Okay', '.', 'That�s', 'fine', '!', 'Fine', '.', 'Y�know', 'what', 'Ben', '?', 'One', 'day', 'when', 'you', 'are', 'a', 'lot', 'older', 'I', 'am', 'going', 'to', 'tell', 'you', 'that', 'entire', 'story', 'over', 'a', 'pitcher', 'of', 'real', 'margaritas', ',', 'okay', '?', 'Fifty-two', 'minutes', '.', 'So', 'no-no', 'brothers', 'and', 'sisters', ',', 'huh', '?', 'That', 'must', 'be', 'nice', '.', 'You', 'don�t', 'have', 'to', 'share', 'stuff', '.', 'Oh', ',', 'you�re', 'one', 'of', 'those', '.', 'But', 'y�know', 'what', '?', 'I', 'have', 'two', 'sisters', 'of', 'my', 'own', 'and', 'we', 'just-just', 'tortured', 'each', 'other', '.', 'Well', 'y�know', ',', 'we', 'would', 'umm', ',', 'repeat', 'everything', 'the', 'other', 'said', ',', 'or', 'uh', ',', 'we�d', 'jump', 'out', 'of', 'closets', 'to', 'scare', 'each', 'other', ',', 'or', 'switch', 'the', 'sugar', 'for', 'the', 'salt', 'so', 'they�d', 'put', 'salt', 'on', 'their', 'cereal', '.', 'Yeah', '?', 'You', 'like', 'that', 'one', '?', 'I�m', 'funny', '?', 'Oh', 'thank', 'God', '!', 'Well', 'hey', ',', 'I�ve', 'got', 'a', 'ton', 'of', 'these', '!', 'Umm', ',', 'oh', 'here�Do', 'you', 'want', 'a', 'good', 'one', '?', 'Here�s', 'a', 'good', 'one', '.', 'Umm', ',', 'you', 'uh', ',', 'you', 'take', 'a', 'quarter', ',', 'take', 'a', 'quarter', 'and', ',', 'and', 'you', 'blacken', 'the', 'edge', '.', 'Right', '?', 'And', 'then', 'you', 'say', 'to', 'person', ',', 'I', 'bet', 'you', 'can�t', 'roll', 'this', 'quarter', 'from', 'your', 'forehead', 'to', 'your', 'chin', 'without', 'it', 'leaving', 'your', 'face', '.', 'And', 'then', 'when', 'they', 'do', 'it', ',', 'they�re', 'left', 'with', 'a', 'big', 'black', 'pencil', 'line', 'right', 'down', 'the', 'center', 'of', 'their', 'face', '.', 'Yeah', ',', 'I-I-I-I�m', 'funny', 'Ben', ',', 'but', 'I�m', 'not', 'stupid', '.', 'Okay', '?', 'Coming', '.', 'Uh-oh', '.', 'Oh', 'yeah', '?', 'Did', 'he', 'pull', 'the', 'old�', 'Oh', 'that', '.', 'Oh', ',', 'come', 'on', '!', 'Saran', 'Wrap', 'on', 'the', 'toilet', 'seat', ',', 'you', 'don�t', 'think', 'that�s', 'just', 'a', 'little', 'funny', '?', '!', 'Yes', '.', 'Hi', '!', 'Well', 'y�know', 'I', 'was', 'just', 'in', 'the', 'neighborhood', 'and', 'I', 'passed', 'by', 'your', 'building', 'and', 'I', 'thought', 'to', 'myself', ',', '``', 'What�s', 'up', 'with', 'Carol', 'and', 'sweet', ',', 'little', 'Ben', '?', \"''\", 'Okay', '.', 'I�d', 'love', 'that', '.', 'I', 'would', 'loooove�', 'So', 'uh', ',', 'so', 'where', 'is', 'sweet', 'little', 'Ben', '?', 'I', 'would', 'love', 'to', 'have', 'a', 'little', '...', 'I', 'found', 'him', '!', 'Very', 'funny', ',', 'come', 'here', '!', 'That', 'is', 'exactly', 'why', 'I�ve', 'come', 'here', 'to', 'talk', 'to', 'you', 'okay', '?', 'Yes', 'oh��Do', 'I', 'want', 'sugar', 'in', 'my', 'coffee', '?', 'No', ',', 'just', 'some', 'milk', 'would', 'be', 'good', 'Carol', '.', 'Thanks', '.', 'Okay', ',', 'do', 'you', 'remember', 'all', 'that', 'stuff', 'I', 'taught', 'you', 'yesterday', '?', 'Don�t', 'do', 'that', '.', 'Seriously', ',', 'your', 'dad', 'doesn�t', 'like', 'pranks', '.', 'Oh', 'damnit', '!', 'No', '!', 'Don�t', 'say', 'that', '!', 'Don�t', 'say', 'that', '!', 'No', 'don�t', '!', 'Go', 'back', 'to', 'repeating', '!', 'Oh', 'crap', '!', 'So', 'now', 'what', 'have', 'we', 'agreed', '?', 'And-and', 'what', 'else', '?', 'Very', 'good', '.', 'I�m', 'just', 'visiting', 'my', 'good', 'friend', 'Carol', '.', 'Yeah', '!', 'Carol�Lesbian', '?', 'What', 'line', '?', 'All', 'right', ',', 'I�m', 'sorry', '.', 'I�m', 'sorry', 'I', 'didn�t', 'tell', 'you', 'but', 'you', 'were', 'so', 'mad', 'already', '!', 'Okay', ',', 'maybe', 'they', 'are', 'not', 'funny', 'to', 'you�', 'Or', 'Carol', '!', 'But', 'they�re', 'funny', 'to', 'kids', 'and', 'who', 'is', 'it', 'hurting', '?', '!', 'That', 'was', 'you', '?', '!', 'We', 'heard', 'about', 'you', 'in', 'Junior', 'High', '!', 'Did', 'you', 'really', 'just', 'shake', 'your', 'fist', 'in', 'the', 'air', 'and', 'shout', ',', '``', 'I', 'will', 'be', 'revenged', '?', '!', \"''\", 'Fine', '.', 'Fine', ',', 'but', 'I�ll', 'have', 'you', 'know', 'that', 'once', 'I', 'taught', 'him', 'that', 'stuff', 'he', 'called', 'me', 'Fun', 'Aunt', 'Rachel', '.', 'And', 'I', 'loved', 'being', 'Fun', 'Aunt', 'Rachel', 'but', 'I�ll', 'go', 'back', 'to', 'being', 'Boring', 'and', 'Uncomfortable', 'Aunt', 'Rachel', 'if', 'that�s', 'what', 'you', 'want', '!', 'Look', 'he', 'doesn�t', 'have', 'any', 'brothers', 'or', 'sisters', ',', 'somebody�s', 'gon', 'na', 'have', 'to', 'teach', 'him', 'this', 'stuff', '!', 'And', 'I', 'haven�t', 'taught', 'him', 'anything', 'that', 'a', 'normal', '6-year-old', 'doesn�t', 'know', 'anyway', '!', 'I', 'got', 'ta', 'go', '!', 'Hey', '!', 'Ohhh', '!', 'Well', 'of', 'course', 'I', 'will', 'watch', 'him', '!', 'We', 'have', 'fun', ',', 'don�t', 'we', 'Ben', '?', 'Ohh', ',', 'okay', '.', 'Wh�Ah-ha', '!', 'Wait', 'a', 'minute', '.', 'Uh', 'Ben', ',', 'I', 'can�t', 'do', 'it', '.', 'I', 'can�t', 'let', 'him', 'go', 'out', 'that', 'way', ',', 'he�s', 'got', 'a', 'meeting', '.', 'You�ve', 'got', 'something', 'here', 'on', 'your', 'back', '.', 'Oh', 'I�', 'No', '!', 'Wait', '!', 'Come', 'on', '!', 'No', 'you', 'guys�', 'EHHHHHHHHHHH', '!', '!', '!', '!', '!', '!', '!', 'My', 'God', '!', '!', '!', '!', '!', '!', '!', '!', '!', '!', '!', 'Oh', 'my', 'God', '!', '!', '!', '!', '!', '!', '!', 'Oh', 'my', 'God', '!', 'You', 'look', 'so', 'beautiful', '!', 'I', 'do', 'the', 'same', 'thing', '.', 'I�m', 'just', 'kidding', 'too', '.', 'I�m', 'getting', 'married', 'in', 'December', '.', 'Oh', 'y�know', 'what', '?', 'Y�know', 'what', '?', 'Now', 'that', 'you', 'know', 'what', 'you', 'want', 'you', 'should', 'go', 'to', 'Kleinman�s', 'and', 'get', 'it', 'half', 'off', '.', 'This', 'place', 'is', 'so', 'overpriced', '.', 'So', ',', 'does', 'this', 'come', 'in', 'another', 'color', 'or�', 'So', 'this', 'is', 'Brooklyn', '.', 'Okay', '.', 'Oh', 'they�re', 'pushing', '!', 'They�re', 'pushing', '!', '!', 'Well', 'I�', 'No', '!', 'You', 'got', 'ta', 'get', 'me', 'out', 'of', 'here', 'Phoebe', '!', 'These', 'bargain', 'shoppers', 'are', 'crazy', '!', 'No', '!', 'You', 'got', 'ta', 'hold', 'my', 'hand', '!', '!', 'Hey�', 'You�re', 'out', 'of', 'Diet', 'Coke', '.', 'You�re', 'out', 'of', 'toilet', 'paper', '!', 'Yeah', ',', 'I', 'went', 'to', 'a', 'wedding', 'once', 'where', 'they', 'had', 'swing', 'music', 'and', 'uh', ',', 'two', 'months', 'later', 'the', 'couple', 'got', 'divorced', '.', 'And', 'now', 'I�m', 'not', 'saying', 'that', 'there�s', 'any', 'connection', 'here', 'y�know', ',', 'but', 'they', 'did', 'tell', 'me', 'that�s', 'why', 'they', 'got', 'divorced', '.', 'Well', ',', 'what', 'is', 'the', 'other', 'reason', '?', 'Well', 'you', 'have', 'to', 'because', 'maybe', 'it�s', 'stupid', '.', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', '!', 'That', 'is', 'like', 'the', 'third', 'most', 'prestigious', 'soap', 'opera', 'award', 'there', 'is', '!', 'Oh', ',', 'stop', 'that', '!', 'Don�t', 'kid', 'about', 'that', '!', 'Will', 'all', 'the', 'stars', 'be', 'there', '?', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', 'I', 'can�t', 'go', '!', 'I�m', 'gon', 'na', 'be', 'too', 'nervous', '!', 'No', '!', '!', 'You', 'are', 'getting', 'married', '!', 'This', 'is', 'all', 'I', 'have', '.', 'I�m', 'fourth', '!', 'Look', 'at', 'you', 'with', 'your', 'little', 'maple', 'syrup', 'award', '!', 'What', '?', 'No', '!', 'It�s', 'not', 'a', 'big', 'deal', '!', 'I', 'do', 'that', 'too', ',', 'with', 'my', 'shampoo', 'bottle', '.', 'Yeah', '.', 'Grammy', ',', 'Best', 'New', 'Artist', '.', 'Ohh', 'that�s', 'great', '!', 'So', 'you�ll', 'definitely', 'get', 'onstage', ',', 'even', 'if', 'you', 'don�t', 'win', '.', 'Well', 'of', 'course', 'I', 'do', '!', 'But', 'y�know', ',', 'favorite', 'returning', 'character', 'is', 'a', 'tough', 'category', 'Joey', '.', 'I', 'mean', 'you�re', 'up', 'against', 'the', 'guy', 'who', 'survived', 'his', 'own', 'cremation', '.', 'Well', 'Joey', ',', 'you�ll', 'probably', 'get', 'it', '.', 'But', 'you', 'should', 'probably', 'start', 'practicing', 'your', 'gracious', 'loser', 'face', '.', 'Y�know', 'when', 'like', 'the', 'cameras', 'are', 'on', 'you', 'and', 'you', 'wan', 'na', 'look', 'disappointed', ',', 'but', 'also', 'that', 'your', 'colleague', 'deserved', 'to', 'win', '.', 'Y�know', '?', 'So', 'it�s', 'sorta', 'like�', 'Y�know', '?', 'Oh', 'no', ',', 'at', 'the', 'Grammies', 'I', 'always', 'win', '.', 'Whoa', 'what', '?', 'Really', '?', 'Not', 'right', 'now', '.', 'Oh', ',', 'see', 'now', 'I', 'feel', 'bad', 'for', 'the', 'kid', '!', 'I', 'had', 'a', 'crush', 'on', 'a', 'teacher', 'once', 'and', 'it', 'was', 'so', 'hard', '!', 'Y�know', 'you�I', 'couldn�t', 'concentrate', 'and', 'I', 'blushed', 'every', 'time', 'he', 'looked', 'at', 'me', '.', 'I', 'mean', 'come', 'on', ',', 'you', 'remember', 'what�s', 'it�s', 'like', 'to', 'be', '19', 'and', 'in', 'love', '.', 'Yeah', '.', 'I', 'didn�t', '.', 'I', 'got', 'under', 'him', '.', 'I', 'know', '!', 'My', 'God', '!', 'Do', 'you', 'have', 'your', 'speech', '?', 'Do', 'you', 'got', 'your', 'gracious', 'loser', 'face', '?', 'Now', 'Joey', 'remember', ',', 'if', 'you', 'win', 'you', 'have', 'to', 'hug', 'me', '!', 'You', 'hug', 'me', '!', 'On', 'TV', '?', '!', 'Yeah', '!', 'Joey', '!', 'Why', 'did', 'we', 'have', 'to', 'rush', 'out', 'of', 'there', 'so', 'fast', '?', '!', 'Oh', 'my', 'God', ',', 'you', 'stole', 'her', 'award', '!', 'Joey', 'I', 'don�t', 'think', 'you', 'know', 'what', 'behalf', 'means', '.', 'Joey', ',', 'you', 'have', 'got', 'to', 'take', 'this', 'back', '!', 'No', '!', 'Joey', '!', 'Do', 'you', 'really', 'want', 'an', 'award', 'you', 'didn�t', 'win', '?', 'Joey', ',', 'it', 'says', 'Best', 'Supporting', 'Actress', '!', 'Joey', ',', 'no', ':', 'this', 'is', 'wrong', '!', 'You', 'have', 'to', 'take', 'it', 'back', ',', 'okay', '?', 'You', 'don�t', 'want', 'to', 'win', 'an', 'award', 'this', 'way', '.', 'You�re', 'very', 'talented', '.', 'And', 'someday', 'you�re', 'gon', 'na', 'win', 'one', 'of', 'these', 'for', 'real', ',', 'and', 'that', 'one', 'is', 'gon', 'na', 'mean', 'something', '.', 'All', 'right', '?', 'Thank', 'you', '.', 'Thank', 'you', '.', 'I', 'can', 'not', 'believe', 'I�m', 'gon', 'na', 'meet', 'Jessica', 'Ashley', '!', 'Okay', ',', 'I�m', 'totally', 'cool', '!', 'Hey', 'Jess', '.', '�Sup', '?', 'Absolutely', '.', 'I�ll', 'be', 'out', 'in', 'a', 'second', '.', 'Honey', ',', 'we', 'have', 'to', 'go', '.', 'Our', 'reservations', 'are', 'at', '8:00', '.', 'Okay', 'honey', ',', 'you', 'can', 'finish', 'this', 'later', 'we�re', 'gon', 'na', 'be', 'late', '.', 'We', 'got', 'ta', 'go', '.', 'Hi', '!', 'Hey', 'Pheebs', ',', 'can', 'I', 'talk', 'to', 'you', 'over', 'here', 'for', 'a', 'second', '?', 'Well', 'okay�Well', 'don�t', 'ruin', 'it', '!', 'Just', 'play', 'along', 'at', 'least', '!', 'Oh', 'my', 'God', '!', 'We', 'have', 'to', 'throw', 'her', 'a', 'shower', '?', '!', 'She', 'has', 'got', 'so', 'much', 'going', 'on', 'we-we', 'have', 'only', 'two', 'options', '.', 'We', 'have', 'Friday�', 'Yesterday', '!', 'Oh', 'my', 'God', ',', 'Phoebe', ',', 'this', 'is', 'impossible', '!', 'We', 'can�t', 'do', 'this', 'by', 'Friday', '!', 'We', 'have', 'to', 'find', 'a', 'place', '.', 'We', 'have', 'to', 'invite', 'people', '!', 'We', 'have', 'to', 'get', 'food', '!', 'There�s', 'just', 'too', 'much', 'to', 'do', '!', 'It�s', 'impossible', '!', 'We', 'can�t', 'do', 'it', '!', 'We', 'can', 'not', 'do', 'it', '!', 'We', 'can', 'not', 'do', 'it', '!', 'Okay', '.', 'I�m', 'sorry', '.', 'You�re', 'right', ',', 'you�re', 'right', '.', 'Phoebe', ',', 'I', 'already', ',', 'I', 'already', 'did', '.', 'Okay', '.', 'Okay', '.', 'I', 'think', 'we', 'can', 'do', 'this', 'if', 'we', 'just', 'get', 'organized', '.', 'All', 'right', '?', 'We', 'have', 'two', 'days', 'to', 'plan', 'this', 'party', '.', 'We', 'just', 'need', 'to', 'make', 'fast', 'decisions', '!', 'Okay', '?', 'All', 'right', ',', 'where', 'are', 'we', 'gon', 'na', 'have', 'it', '?', '4', 'o�clock', '.', 'Food', '?', 'Ooh', 'great', '!', 'Very', 'Monica', '.', 'Ah', 'you', 'went', 'one', 'too', 'far', '.', 'Uh', ',', 'flowers', 'or', 'balloons', '?', 'We�re', 'paying', 'for', 'this', 'y�know', '.', 'Okay', '.', 'Umm', ',', 'what', 'should', 'we', 'do', 'for', 'the', 'theme', '?', 'What', '?', 'Okay', '.', 'Okay', '.', 'All', 'right', ',', 'you', 'take', 'care', 'of', 'that', '.', 'And', 'meanwhile', ',', 'the', 'party', 'is', 'tomorrow', 'and', 'we', 'still', 'don�t', 'have', 'a', 'guest', 'list', '.', 'Hey', '!', 'What�s', 'up', 'Mon', '?', 'Have', 'at', 'it', '.', 'Are', 'you', 'makin�', 'him', 'a', 'sandwich', '?', 'We', 'have', 'to', 'get', 'her', 'a', 'present', '?', '!', 'Oh', 'my', 'God', 'you�re', 'amazing', '!', 'Did', 'you', 'just', 'pull', 'that', 'out', 'of', 'her', 'purse', '?', 'Yeah', '?', 'Well', ',', 'I', 'don�t', 'know', '.', 'I', 'called', 'all', 'the', 'people', 'in', 'Monica�s', 'phone', 'book', 'and', 'these', 'are', 'the', 'only', 'ones', 'who', 'could', 'show', 'up', 'on', '24', 'hours', 'notice', '.', 'Hi', '!', 'I�m', 'Rachel', '.', 'This', 'is', 'Phoebe', '.', 'I�m', 'the', 'maid', 'of', 'honor', '.', 'How', 'do', 'you', 'know', 'Monica', '?', 'Ohhhh', '!', 'That�s', 'great', '!', 'Excuse', 'us', 'for', 'a', 'minute', '.', 'You', 'didn�t', 'tell', 'her', 'to', 'come', '?', '!', 'No', 'I', 'wasn�t', '!', 'You', 'were', 'supposed', 'to', 'tell', 'her', 'to', 'come', ',', 'and', 'I', 'was', 'supposed', 'to', 'bring', 'the', 'cake', '!', 'Yes', '!', 'And', 'please', 'tell', 'her', 'to', 'bring', 'a', 'cake', '!', 'Oh', 'Monica', ',', 'we', 'are', 'so', 'sorry', '.', 'Well', 'first', ',', 'for', 'forgetting', 'to', 'throw', 'you', 'a', 'bridal', 'shower', '.', 'Yeah', ',', 'we', 'wanted', 'to', 'throw', 'you', 'a', 'big', 'surprise', 'and', 'a', 'great', 'shower', ',', 'and', 'now', 'you', 'don�t', 'have', 'either', '.', 'Ugh�', 'What', 'do', 'you', ',', 'what', 'do', 'you', 'mean', '?', 'Surprise�', '�Monica', '.', 'Hey', '!', 'Out', 'of', 'all', 'of', 'us', ',', 'who', 'do', 'you', 'think', 'is', 'gon', 'na', 'get', 'married', 'next', '?', 'Oh', 'my', 'God', ',', 'Melissa', 'Warburton', '.', 'I', 'don�t', 'think', 'I', 'have', 'the', 'energy', 'for', 'this', '.', 'Melissa', '!', 'Wh��Why', 'don�t', 'I', 'tell', 'you', 'over', 'here', '?', 'Oh', 'no-no', ',', 'no', '!', 'It�s', 'good', '!', 'It�s', 'all', 'good', '!', 'I-I', 'actually', 'work', 'at', 'Ralph', 'Lauren', '!', 'I', 'will', 'not', '!', 'I�m', 'the', 'divisional', 'head', 'of', 'men�s', 'sportswear', '!', 'Oh', 'please�', 'No', '.', 'Oh', 'tomorrow', ',', 'oh', 'I', 'don�t', 'know', '.', 'Um�', 'Shut', 'up', '.', 'Oh', ',', 'wow', 'thanks', '!', 'Oh', 'you�re', 'in', 'real', 'estate', '!', 'Wow', '!', 'What', 'do', 'you', 'do', 'now', '?', 'Okay', '!', 'Shut', 'up', ',', 'that', 'was', 'my', 'friend', 'Melissa', 'from', 'college', '.', 'She�s', 'actually', 'very', 'sweet', 'and', 'we', 'used', 'to', 'be', 'very', 'close', '.', 'Yes', '.', 'It�s', 'not', 'a', 'big', 'deal', '!', 'No', 'we', 'weren�t', '!', 'It', 'was', 'nothing', '!', 'It', 'was', 'one', 'night', ',', 'senior', 'year', 'we', 'went', 'to', 'a', 'party', ',', 'had', 'a', 'lot', 'of', 'sangria', 'and', 'y�know', ',', 'ended', 'up�kissing', 'for', 'a', 'bit', '.', 'Oh', 'wow', '.', 'Why', 'don�t', 'we', 'just', 'take', 'me', 'and', 'put', 'me', 'with', 'a', 'Manhattan', 'in', 'my', 'hand', ',', 'talking', 'to', 'the', 'cute', 'bartender', '.', 'These', 'pins', 'aren�t', 'for', 'playing', 'are', 'they', '?', 'Hey', '!', 'Stop', 'picturing', 'it', '!', '!', 'That', 'is', 'not', 'a', 'problem', '.', 'Oh', ',', 'get', 'out', 'of', 'here', '!', 'So', 'now', ',', 'these', 'are', 'all', 'the', 'tuxedos', 'that', 'we', 'make', 'and', 'if', 'there�s', 'anything', 'that', 'you', 'like', ',', 'we', 'can', 'make', 'you', 'a', 'deal', '.', 'Anything', 'at', 'all', '.', 'But', 'these', 'are', 'the', 'three', 'that', 'Monica', 'pre-approved', '.', 'I�m', 'Monica�s', 'maid', 'of', 'honor', '.', 'Okay', '?', 'Don�t', 'try', 'to', 'blue', 'pin', 'me', '!', 'Oh', 'they', 'are', 'nice', '.', 'We-we', 'custom-make', 'tuxedos', 'for', 'celebrities', 'and', 'then', 'when', 'they�re', 'done', 'with', 'them', 'they', 'just', 'send', '�em', 'back', '.', 'Some', 'of', 'them', '.', 'Honey', ',', 'might', 'I', 'suggest', 'watching', 'a', 'little', 'more', 'ESPN', 'and', 'a', 'little', 'less', 'E', '!', '?', 'Umm', ',', 'well', 'let�s', 'see', 'uh', ',', 'this', 'one', 'is', 'Tom', 'Brokaw', '.', 'This', 'one', 'is', 'uh', 'Paul', 'O�Neil', '.', 'He', 'plays', 'for', 'the', 'Yankees', '.', 'Seriously', ',', 'ESPN', '!', 'Just', 'once', 'and', 'a', 'while', ',', 'have', 'it', 'on', 'in', 'the', 'background', '.', 'Ooh', ',', 'this', 'one', 'was', 'Pierce', 'Brosnan', '!', 'Uh-huh', '.', 'Yeah', '.', 'Yeah', '.', 'It�s', 'a', 'pretty', 'cool', 'tux', '.', 'Hey', '!', 'So', 'Joey', ',', 'I', 'just', 'hooked', 'Ross', 'and', 'Chandler', 'up', 'with', 'some', 'tuxedos', 'for', 'the', 'wedding', ':', 'do', 'you', 'need', 'one', '?', 'Well', ',', 'what', 'are', 'you', 'going', 'to', 'wear', '?', 'Huh', '.', 'Does', 'Monica', 'know', 'about', 'this', '?', 'Can', 'I', 'please', 'be', 'there', 'when', 'you', 'tell', 'her', '?', 'Oh', ',', 'y�know', 'what', '?', 'I', 'can�t', '.', 'I', 'have', 'to', 'have', 'dinner', 'with', 'that', 'Melissa', 'girl', '.', 'Well', ',', 'do', 'you', 'want', 'to', 'hear', 'what', 'actually', 'happened', 'or', 'Joey�s', 'lewd', 'version', '?', 'Hey', ',', 'come', 'on', '!', 'I', 'had', 'this', 'friend', 'from', 'college', 'and', 'I', 'made', 'the', 'stupid', 'mistake', 'of', 'telling', 'Joey', 'that', 'one', 'time�she', 'and', 'I', 'y�know�kissed', 'a', 'little', 'bit', '.', 'It-it', 'did', '!', 'Yeah', ',', 'it', 'was', 'senior', 'year', 'in', 'college', '.', 'It', 'was', 'after', 'the', 'Sigma', 'Chi', 'luau', 'and', 'Melissa', 'and', 'I', 'got', 'very', 'drunk', '!', 'And', 'we', 'ended', 'up', 'kissing', '!', 'For', 'several', 'minutes', '!', 'Yeah', ',', 'why', 'is', 'it', 'so', 'hard', 'for', 'you', 'to', 'believe', '?', '!', 'I�m', 'not', 'saying', 'that', 'I�m', 'a', 'lesbian', '!', 'I�m', 'just', 'saying', 'that', 'this', 'happened', '!', 'Vanilla', '?', '!', 'I�m', 'not', 'vanilla', '!', 'I�ve', 'done', 'lots', 'of', 'crazy', 'things', '!', 'I', 'mean', 'I', 'got-I', 'got', 'drunk', 'and', 'married', 'in', 'Vegas', '!', 'All', 'right', ',', 'y�know', 'what', '?', 'If', 'you', 'don�t', 'want', 'to', 'believe', 'me', 'about', 'this', ',', 'why', 'don�t', 'you', 'just', 'come', 'with', 'me', 'to', 'dinner', 'tonight', 'and', 'she', 'will', 'tell', 'you', '.', 'Oh', '.', 'Oh', ',', 'that�s', 'great', '!', 'Anyway', ',', 'speaking', 'of', 'drinking', 'too', 'much', '.', 'I', 'was', 'uh', ',', 'tellin�', 'Phoebe', 'about', 'that', 'one', 'crazy', 'night', 'after', 'the', 'Sigma', 'Chi', 'luau', 'where', 'you', 'and', 'I', 'uh', ',', 'we', 'made', 'out', '.', 'Remember', '?', '!', 'We�come', 'on', ',', 'we', 'both', 'had', 'the', 'sarongs', 'on', ',', 'and', 'we', 'had', 'the-the', 'coconut', 'bikini', 'tops�', '�we', 'went', 'back', 'to', 'the', 'house', 'and', 'we', 'got', 'really', 'silly', 'and', 'we�we', 'made', 'out', '.', 'How', 'can', 'you', 'not', 'remember', 'us', 'kissing', '?', '!', 'Wh�', 'Come', 'on', '!', 'Remember', '?', 'We', 'were', 'on', 'the', 'sleeping', 'porch', '!', 'We', 'couldn�t', 'stop', 'giggling', '?', 'And', 'our', 'coconuts', 'kept', 'knockin�', 'together', '?', 'Yeah�but', 'come', 'on�Listen', ',', 'I�m', 'sorry', 'I', 'don�t', 'want', 'to', 'make', 'you', 'uncomfortable', ',', 'but', 'I', 'told', 'Phoebe', 'that', 'it', 'happened', 'and', 'she', 'doesn�t', 'believe', 'me', '.', 'No', '!', '!', 'Thank', 'you', 'Phoebe', '.', 'It', 'happened', '!', 'I', 'am', 'telling', 'you', 'it', 'happened', '!', 'What', '?', '!', 'Wait', 'a', 'minute', '!', 'No', 'wait', 'a', 'minute', '!', 'Okay', '?', 'Look', ',', 'that', 'night', 'was', 'the', 'one', 'wild', 'thing', 'I', 'have', 'ever', 'done', 'in', 'my', 'entire', 'life', ',', 'and', 'I�m', 'not', 'gon', 'na', 'let', 'you', 'take', 'that', 'away', 'from', 'me', '!', 'Okay', ',', 'so', 'if', 'you', 'don�t', 'remember', 'that', ',', 'maybe', 'you', 'will', 'remember', 'this', '!', 'What', '?', 'Whoa', '!', 'Whoa-whoa-whoa-whoa', '!', 'Whoa', '!', 'Whoa', '!', 'I-I-I-I�m', 'just�I�m', 'just', 'a', 'good', 'kisser', '!', 'I�m', 'sorry', '!', 'Wow', '!', 'I', 'mean', 'I', 'had', 'no', 'idea', 'that', 'that', 'was', 'gon', 'na', '�', 'What', 'the', 'hell', 'was', 'that', '?', '!', 'And', '?', 'Well', 'y�know', 'what', 'they', 'say', ',', 'the', '23rd', 'time�s', 'the', 'charm', '.', 'Aww', ',', 'look', 'at', 'you', 'all', 'handsome', '!', 'Oh', 'does', 'it', 'matter', '?', '!', 'All', 'that', 'matters', 'is', 'that', 'you', 'look', 'so', 'handsome', '.', 'I', 'don�t', 'want', 'to', 'say', '.', 'Diane', 'Keaton', '.', 'Monica', 'what', '?', 'What', 'is', 'the', 'emergency', '?', '!', 'Well', ',', 'I', 'like', 'the', 'pretty', 'little', 'drawing', 'of', 'you', 'in', 'the', 'wedding', 'dress', '.', 'Okay', '.', 'Okay', '.', 'Okay', '.', 'Umm', ',', 'maybe', 'you', 'can', 'start', 'with', ',', '``', 'Chandler', ',', 'even', 'though', 'we', 'were', 'friends', ';', 'there', 'was', 'a', 'part', 'of', 'me', 'that', 'always', 'knew', 'I', 'wanted', 'more', '.', \"''\", 'Well', ',', 'y�know', ',', 'sometimes', 'that', 'helps', '.', 'Hey', '!', 'Hey', ',', 'what', 'have', 'you', 'guys', 'been', 'up', 'to', '?', 'I', 'can�t', 'believe', 'they�ve', 'been', 'together', 'for', 'three', 'years', '.', 'I', 'don�t', 'know', 'why', 'they', 'didn�t', 'just', 'tell', 'us', '.', 'Arghh', '!', '!', 'What', '?', '!', 'Oh', 'my', 'God', '!', 'OH', 'MY', 'GOD', '!', '!', '!', 'Phoebe', '!', '!', 'Phoebe', '!', '!', 'It', \"'s\", 'okay', '!', '!', 'It', \"'s\", 'okay', '!', '!', 'I', 'KNOW', '!', '!', 'I', 'KNOW', '!', '!', 'I', 'KNOW', '!', 'Yes', ',', 'I', 'know', '!', 'And', 'Joey', 'knows', '!', 'But', 'Ross', 'does', \"n't\", 'know', ',', 'so', 'you', 'have', 'to', 'stop', 'screaming', '!', '!', 'HI', '!', '!', 'Hi', '!', 'Nothing', '!', 'Oh', 'God', ',', 'we', \"'re\", 'just', 'so', 'excited', 'that', 'you', 'want', 'to', 'get', 'this', 'apartment', '!', 'All', 'right', 'honey', ',', 'we', \"'d\", 'better', 'go', 'if', 'we', 'wan', 'na', 'catch', 'that', 'movie', '.', 'Are', 'you', 'kidding', '?', '!', 'I', 'can', 'not', 'believe', 'he', 'would', 'do', 'that', 'to', 'Mon�Whoa', '!', 'Joey', ',', 'do', 'they', 'know', 'that', 'we', 'know', '?', 'Joey', '!', 'Ugh', ',', 'I', 'knew', 'it', '!', 'Oh', 'I', 'can', 'not', 'believe', 'those', 'two', '!', 'Joey', 'look', ',', 'just', 'look', 'at', 'it', 'this', 'way', ',', 'the', 'sooner', 'Phoebe', 'breaks', 'Chandler', 'the', 'sooner', 'this', 'is', 'all', 'over', 'and', 'out', 'in', 'the', 'open', '.', 'Okay', '!', 'You', 'really', 'think', 'it', 'would', 'be', 'that', 'different', '?', 'Well', ',', 'things', 'change', '.', 'Hey', ',', 'who', \"'s\", 'this', 'little', 'naked', 'guy', '?', 'Aww', ',', 'look', 'at', 'the', 'little', 'thing', '.', 'Wow', ',', 'Monica', ',', 'you', 'look', 'just', 'like', 'your', 'grandmother', '.', 'How', 'old', 'was', 'she', 'there', '?', 'Well', ',', 'we', 'were', 'just', 'talkin�', 'about', 'you', 'guys', 'gettin�', 'married', 'and', 'how', 'great', 'it', 'is', '.', 'Oh', ',', 'can', 'we', 'read', 'them', '?', 'Okay', '.', 'Monica', ',', 'will-will', 'you', 'marry', 'me', '?', 'Wait', 'a', 'minute', '!', 'You', 'let', 'Ross', 'drive', 'the', 'Porsche', 'and', 'when', 'I', 'ask', 'you', ',', 'you', 'say', 'you�re', 'the', 'only', 'one', 'who�s', 'allowed', 'to', 'drive', 'it', '.', 'You', 'let', 'Joey', 'drive', 'it', '?', '!', 'Wow', '!', 'I', 'can�t', 'believe', 'you', 'lied', 'to', 'me', '.', 'Take', 'the', 'top', 'down', 'did', 'ya', '?', 'Come', 'on', 'Ross', 'give', 'me', 'the', 'keys', '!', 'Monica', 'does', 'not', 'know', 'what', 'she�s', 'talking', 'about', '!', 'I', 'am', 'an', 'excellent', 'driver', '!', 'Well', 'in', 'High', 'School', ',', 'that', 'added', 'up', 'to', 'head', 'cheerleader', '.', 'I', 'think', 'she�s', 'checking', 'out', 'your', 'beehive', 'Ross', '.', 'Gim', 'me', 'the', 'keys', '!', 'Well', 'no', 'brush', '!', 'Alimony', '.', 'Ahhh', '!', 'Ooh', ',', 'nice', '!', 'My', 'God', '!', 'Just', 'washing', 'the', 'windshield', '.', 'Oh', '.', 'Look', 'Ross', ',', 'if', 'you�re', 'so', 'freaked', 'out', ',', 'just', 'get', 'in', 'the', 'car', '!', 'All', 'right', '.', 'What', 'are', 'you', 'doing', '?', '!', 'Get', 'in', 'the', 'front', '!', 'Oh', 'my�', 'God', '.', 'I', 'forgot', 'how', 'much', 'I', 'love', 'driving', '.', 'I', 'have', 'got', 'to', 'get', 'my', 'license', 'renewed', '.', 'Oh', 'Ross', 'you�re', 'so', 'tense', '!', 'You', 'just', 'got', 'ta', 'relax', ',', 'okay', '?', 'Just', 'need', 'to', 'relax', 'all', 'right', '?', 'Just', 'need', 'to', 'relax�', 'I', 'am', 'not', 'horsing', 'around', ',', 'okay', '?', 'I', 'am', 'Porsching', 'around', '.', 'Uh-oh', '.', 'Really', '?', 'You', 'think', 'so', '?', 'Okay', '.', 'Switch', 'places', 'with', 'me', '!', 'Switch', 'places', 'with', 'me', '!', 'Come', 'on', '!', 'I�ll', 'go', 'under', ',', 'you', 'go', 'over', '!', 'Oh', 'come', 'on', 'Ross', '!', '!', 'Hi', 'officer', ',', 'was', 'I', 'going', 'a', 'little', 'too', 'fast', '?', 'Oh', 'yes', ',', 'absolutely', '!', 'Y�know', ',', 'it�s', 'weird', 'uh', ',', 'but', 'I', 'had', 'a', 'dream', 'last', 'night', 'where', 'I', 'was', 'stopped', 'by', 'a', 'policeman', '.', 'And', 'then', 'he', 'uh�well', 'I', 'probably', 'shouldn�t', 'tell', 'you', 'the', 'rest', '.', 'Yes', '.', 'Here', 'you', 'go', 'Officer', 'uh', ',', 'Handsome', '.', 'Oops', 'sorry', ',', 'my', 'mistake', '.', 'Really', '?', '!', 'You', 'think', 'so', '?', 'Y�know', ',', 'I', 'had', 'just', 'rolled', 'out', 'of', 'bed', '.', 'Y�know', 'you�re-you�re', 'probably', 'wondering', 'about', 'the', 'old', 'date', 'on', 'there', '.', 'Yeah', '.', 'I', 'bet', 'you�re', 'a', 'Gemini', '.', 'Taurus', '?', 'Virgo', '?', 'Sagittarius', '?', 'I', 'knew', 'it', '!', 'I', 'knew', 'it', ',', 'ahh�', '.', 'Yeah', '?', 'I', 'won�t', 'speed', '.', 'I', 'promise', '.', 'Yeah', '!', 'Oh', 'well�', 'Remind', 'me', 'to', 'introduce', 'you', 'to', 'someone', '!', 'Fourth', 'gear', '!', '!', 'Well', 'maybe', 'he', 'saw', 'your', 'hand', 'slip', 'briefly', 'from', 'the', 'ten', 'and', 'two', 'o�clock', 'position', '.', 'It�s', 'a', 'different', 'guy', '!', 'Oh', 'my', 'God', '!', 'You', 'have', 'a', 'son', '!', 'Op', '!', 'We', 'got', 'ta', 'go', '!', 'What\\x91cha', 'doing', 'Mon', '?', 'Hey', '!', 'Those', 'are', 'all', 'the', 'things', 'I\\x92m', 'responsible', 'for', '!', 'The', 'commercial', '?', 'Oh', 'that\\x92s', 'great', '!', 'Oh', ',', 'wait', 'Joey', '!', 'We', 'fought', 'the', 'Nazis', 'in', 'World', 'War', 'II', ',', 'not', 'World', 'War', 'I.', 'You\\x92re', 'gon', 'na', 'be', 'late', '!', 'Go', '!', 'Go', '!', 'Mexico', '?', 'Hi', '!', 'Oh', 'you', 'guys', 'look', 'so', 'beautiful', '!', 'Yeah', '!', 'But', 'I', 'don\\x92t', 'know', 'what', 'he', 'looks', 'like', '!', 'Man', 'in', 'the', 'black', 'dress', 'Hi', '!', 'I\\x92m', 'Rachel', '!', 'I\\x92m', 'a', 'friend', 'of', 'Monica', 'and', 'Chandler\\x92s', '!', 'Oh', 'I', 'get', 'it', '!', 'A', 'man', 'duh', '!', 'I\\x92ll', 'do', 'it', '.', 'I', 'said', 'I\\x92ll', 'do', 'it', '!', 'Monica', '!', 'I\\x92m', 'not', 'gon', 'na', 'screw', 'it', 'up', '!', 'Well', 'of', 'course', 'that', 'is', 'what', 'I\\x92m', 'here', 'for', '!', 'Ugh', '!', 'What', 'grandmother', '?', 'Hi', '!', 'She\\x92s', 'steaming', 'her', 'dress', ',', 'why', '?', 'What\\x92s', 'up', '?', 'What', '?', '!', 'Tell', 'Monica', 'I\\x92m', 'sorry', '.', 'Yeah', 'but', ',', 'maybe', 'it\\x92s', 'not', 'what', 'we', 'think', '.', 'Maybe', 'it\\x92s', 'tell', 'Monica', 'I\\x92m', 'sorry', 'I', 'drank', 'the', 'last', 'of', 'the', 'milk', '.', 'Okay', '.', 'Phoebe', ',', 'I-I', 'think', 'Ross', 'is', 'right', '.', 'What', 'are', 'we', 'gon', 'na', 'do', '?', 'Okay', '.', 'Ross', 'said', 'there\\x92s', 'still', 'no', 'word', 'from', 'Chandler', '.', 'Oh', 'but', 'he', 'did', 'say', 'that', 'they', 'found', 'the', 'grandmother', 'wandering', 'down', 'fifth', 'avenue', '.', 'God', '!', 'Don\\x92t\\x97We', 'can\\x92t', 'let', 'her', 'start', 'getting', 'ready', '!', 'This', 'is', 'too', 'awful', '!', 'Oh', 'God', ',', 'but', 'wait', 'she\\x92ll', 'be', 'in', 'the', 'gown', 'and', 'then', 'he', 'won\\x92t', 'show', 'up', 'and', 'then', 'she\\x92s', 'gon', 'na', 'have', 'to', 'take', 'off', 'the', 'gown', 'I\\x92m', 'sorry', '.', 'I\\x92m', 'sorry', '.', 'It\\x92s', 'just', 'It\\x92s', 'just', 'so', 'sad', '!', 'I', 'know', '.', 'I', 'know', '.', 'Oh', 'God', '.', 'There\\x92s', 'no', 'tissue', '!', 'Can', 'you', 'grab', 'me', 'some', 'toilet', 'paper', '?', 'Oh', '!', 'Okay', '.', 'Oh', 'thank', 'you', '!', 'Oh', 'God', '!', 'Can', 'I', 'have', 'another', 'one', '?', 'Oh', 'God', 'I', 'just', 'can', 'not', 'imagine', 'what', 'is', 'gon', 'na', 'happen', 'if', 'Chandler', 'doesn\\x92t', 'show', 'up', '!', 'Oh', ',', 'I', 'mean', 'she\\x92s', 'gon', 'na', 'be', 'at', 'the', 'wedding', 'waiting', 'for', 'him', 'and', 'people', 'will', 'be', 'whispering', ',', '``', 'Oh', 'that', 'poor', 'girl', '.', \"''\", 'Y\\x92know', '?', 'Then', 'she\\x92ll', 'have', 'to', 'come', 'back', 'here', 'and', 'live', 'all', 'alone', '.', 'What', '?', 'Oh', 'my', 'God', '!', 'Oh', 'my', 'God', '!', 'No', ',', 'she', 'had', 'to', 'have', 'just', 'taken', 'that', 'test', 'because', 'I', 'took', 'out', 'the', 'trash', 'last', 'night', '.', 'Okay', 'Phoebe', ',', 'we', 'can', 'not', 'tell', 'anyone', 'about', 'this', '.', 'Okay', '?', 'No', '.', 'Why', '?', 'Anything', '?', 'All', 'right', ',', 'we\\x92ve', 'got', 'to', 'tell', 'her', 'he\\x92s', 'gone', '.', 'Ross', ',', 'she\\x92s', 'gon', 'na', 'start', 'getting', 'ready', 'soon', '!', 'All', 'right', ',', 'well', 'how', 'much', 'time', 'do', 'you', 'need', '?', 'One', 'hour', '.', 'Then', 'why', 'do', 'you', 'ask', '?', '!', 'All', 'right', ',', 'I\\x92ll', 'see', 'you', 'guys', 'later', '.', 'I\\x92ll', 'figure', 'something', 'out', '.', 'Thanks', '.', 'Okay', 'uh', ',', 'but', 'before', 'you', 'do', 'that', '.', 'I-I', ',', 'I', 'need', 'you', 'to', 'talk', 'to', 'me', '.', 'Umm', 'I\\x92m', 'never', 'gon', 'na', 'getting', 'married', '!', 'No', 'Monica', '!', 'I\\x92m', 'serious', '!', 'Oh', ',', 'maybe', 'I', 'should', 'just', 'forget', 'about', 'it', '.', 'Become', 'a', 'lesbian', 'or', 'something', '.', 'Well', 'maybe', 'it', 'would', 'make', 'me', 'feel', 'better', 'if', 'I', 'slept', 'with', 'Joey', '.', 'The', 'nights', 'are', 'the', 'hardest', '.', 'But', 'then', 'the', 'day', 'comes', '!', 'And', 'that\\x92s', 'every', 'bit', 'as', 'hard', 'as', 'the', 'night', '.', 'And', 'then', 'the', 'night', 'comes', 'again', 'I', 'know', '.', 'At', 'dusk', '.', 'That\\x92s', 'such', 'a', 'hard', 'time', 'for', 'me', '.', 'Okay', '.', 'But', 'wait', '!', 'Let\\x92s', 'go', 'to', 'lunch', '.', 'Right', '.', 'Oh', 'good', 'God', '!', 'I\\x92ve', 'fallen', 'down', '!', 'Okay', '.', 'Alright', '.', 'Honey', 'listen', '.', 'When', 'I', 'tell', 'you', 'what', 'I\\x92m', 'about', 'to', 'tell', 'you', ',', 'I', 'need', 'you', 'to', 'remember', 'that', 'we', 'are', 'all', 'here', 'for', 'you', 'and', 'that', 'we', 'love', 'you', '.', 'We', 'can\\x92t', 'find', 'Chandler', '\\x97\\x91s', 'vest', '.', 'We', 'can\\x92t', 'find', 'Chandler\\x92s', 'vest', '.', 'Oh', '!', 'You', 'look', 'so', 'beautiful', '.', 'Hello', '?', 'Yeah', ',', 'we', 'got', 'him', 'back', '.', 'Everything\\x92s', 'fine', '.', 'What', '?', 'Why', '?', 'Where', 'are', 'you', '?', 'Joey', '!', 'The', 'wedding', 'is', 'in', 'less', 'than', 'an', 'hour', '!', 'Oh', 'my', 'God', '!', 'I\\x92m', 'gon', 'na', 'have', 'to', 'find', 'another', 'minister', '.', 'Ugh', '!', 'Joey', ',', 'I', 'have', 'to', 'go', '.', 'Well', 'Phoebe', ',', 'we', 'got', 'ta', 'do', 'something', '!', 'Well', ',', 'y\\x92know', '.', 'I', 'mean', 'there\\x92s', 'no', 'way', 'Joey\\x92s', 'gon', 'na', 'make', 'it', 'in', 'time', '.', 'So', 'I\\x92m', 'gon', 'na', 'go', 'through', 'the', 'hotel', 'and', 'see', 'if', 'there\\x92s', 'any', 'other', 'weddings', 'going', 'on', '.', 'Okay', '.', 'Anastassakis/Papasifakis', 'wedding', ',', 'excellent', '!', 'Congratulations', '.', 'Mazel', 'Tov', '!', 'Hi', '!', 'Oh', ',', 'great', 'hat', '.', 'Listen', 'umm', ',', 'I', 'need', 'you', 'to', 'perform', 'another', 'wedding', '.', 'Can', 'you', 'do', 'that', '?', 'Yeah', '!', 'Yeah', '.', 'They\\x92re', 'they\\x92re-they\\x92re', 'my', 'friends', ',', 'uh', ',', 'Monica', 'Stephanopolus', 'and', 'uh', ',', 'and', 'Chandler', 'Acidofolus', '.', 'As', 'are', 'you', 'Go', 'on', '!', 'Go', 'on', '.', 'Oh', 'my', 'God', ',', 'who', 'is', 'it', '?', '!', 'For', 'you', '.', 'Oh', ',', 'thank', 'you', 'for', 'doing', 'that', '.', 'I', 'just', 'can�t', 'deal', 'with', 'this', 'just', 'quite', 'yet', '.', 'You', 'said', 'that', 'she', 'was', ',', 'I', 'just', 'didn�t', 'disagree', 'with', 'you', '.', 'Oh', 'yeah', '.', 'Oh', '!', 'Oh', 'by', 'the', 'way', '?', 'James', 'Brolin', '?', 'Ed', 'Begley', 'Jr.', 'is', 'not', 'gay', '.', 'No', '.', 'No', '!', 'Thank', 'you', '.', 'Ugh', '!', 'Look', 'honey', 'y�know', 'what', '?', 'I', 'haven�t', 'told', 'him', 'yet', ',', 'so', 'until', 'I', 'do', 'I', 'don�t', 'think', 'I', 'should', 'tell', 'anybody', 'else', '.', 'Phoebe', '!', '!', 'Okay', '.', 'Honey', ',', 'stop', 'it', '!', 'I', 'am', 'not', 'going', 'to', 'tell', 'you', 'until', 'I', 'tell', 'him', '.', 'Oh', 'y�know', 'what', 'honey', '?', 'Let�s', 'not', 'talk', 'about', 'that', 'right', 'now', '?', 'Sure', ',', 'but', 'come', 'on', ',', 'as', 'big', 'as', 'your', 'wedding', '?', 'Yeah', '.', 'Hey', '!', 'Y�know', ',', 'sometimes', 'you', 'can', 'do', 'everything', 'right', ',', 'everyone', 'can', 'wear', 'everything', 'they�re', 'supposed', 'to', 'wear', ',', 'and', 'one', 'of', 'those', 'little', 'guys', 'just', 'gets', 'through', '!', 'I', 'don�t', 'know', '!', 'Maybe', 'they', 'have', 'tools', '.', 'Well', ',', 'maybe', 'that�s', ',', 'maybe', 'that�s', 'really', 'brave', '.', 'Maybe', 'she', 'hasn�t', 'really', 'thought', 'it', 'through', 'that', 'well', '.', 'I', 'don�t', 'know', '.', 'Uh-hmm', '.', 'I�m', 'just', 'thinking', 'about', 'Phoebe', ';', 'poor', 'knocked', 'up', 'Phoebe', '.', 'Oh', 'yes', '!', 'Thank', 'you', 'very', 'much', '!', 'Oh', 'that�s-that�s', 'actually', 'how', 'the', 'French', 'drink', 'it', '.', 'I', 'don�t', 'know', '.', 'I', 'don�t', 'know', 'how', 'I', 'feel', '.', 'This', 'is', 'all', 'happening', 'so', 'fast', '.', 'I', 'have', 'to', 'make', 'all', 'these', 'decisions', 'that', 'I', 'don�t', 'want', 'to', 'make', '.', 'Somebody', 'just', 'take', 'this', 'away', 'from', 'me', '!', '!', 'What', '?', '!', 'How', 'many', 'ways', 'are', 'there', 'to', 'do', 'that', '?', 'All', 'right', ',', 'I�ll-I�ll', 'take', 'it', 'again', 'when', 'I', 'get', 'home', '.', 'Okay', '.', 'Thank', 'you', '.', 'Oh', ',', 'you', 'guys', 'are', 'so', 'great', '.', 'Wh�Hey', ',', 'I', 'just', 'gave', 'you', 'peeing', 'on', 'a', 'stick', '.', 'How', 'much', 'longer', '?', '30', 'seconds', ',', 'okay', '.', 'Oh', 'I', 'know', '.', 'I', 'know', '.', 'Oh', 'wait', '!', 'Y�know', 'what', '?', 'I', 'can�t', ',', 'I', 'can�t', 'look', 'at', 'it', '.', 'I', 'can�t', '.', 'Somebody', 'else', 'tell', 'me', ',', 'somebody', 'tell', 'me', '.', 'Okay', '.', 'What', '?', 'Oh', '.', 'Oh', '.', 'Well', 'there', 'you', 'go', '.', 'Whew', '!', 'That', 'is�that�s', 'great�that', 'is', 'really', 'great-great', 'news', '.', 'Y�know', '�cause', 'the', 'whole', 'not', 'being', 'ready', 'and', 'kinda', 'the', 'financial', 'aspects', ',', 'all', 'that', '.', 'Whew', '.', 'Wow', ',', 'this', 'is', 'so', 'just', 'the', 'way', 'it', 'was', 'supposed', 'to', 'be', '.', 'God', '.', 'Thanks', '.', 'God', 'this', 'is', 'so', 'stupid', '!', 'How', 'could', 'I', 'be', 'upset', 'over', 'something', 'I', 'never', 'had', '?', 'It�s', 'negative', '?', 'What', '?', '!', 'Are', 'you', 'sure', '?', 'Oh', '!', 'Oh-oh', ',', 'that�s', 'a', 'risky', 'little', 'game', '!', 'Yeah', '.', 'I�m', 'gon', 'na', 'have', 'a', 'baby', '.', 'I�m', 'gon', 'na', 'have', 'a', 'baby', '.', 'I�m', 'gon', 'na', 'have', 'a', 'baby', '!', 'Ah', ',', 'it�s', 'still', 'not', 'the', 'time', '.', 'Listen', 'y�know', 'what', 'sir', '?', 'For', 'the', 'last', 'time', ',', 'I', 'don�t', 'care', 'what', 'the', 'computer', 'says', ',', 'we', 'did', 'not', 'take', 'a', 'bag', 'of', 'Mashuga', 'nuts', 'from', 'the', 'mini-bar', 'and', 'we', 'did', 'not', 'watch', 'Dr.', 'Do-Me-A-Little', '!', 'Are', 'you', 'joking', '?', 'Check', 'out', 'is', 'not', '�til', 'noon', 'and', 'he', 'has', 'a', 'good', 'eleven', 'minutes', 'left', '.', 'Yeah', ',', 'one', 'time', ',', 'when', 'we', 'were', 'dating', ',', 'uh', 'we', 'got', 'a', 'late', 'checkout', ',', 'he', 'got', 'so', 'excited', 'it', 'was', 'the', 'best', 'sex', 'we', 'ever', 'had', '.', 'Until', 'y�know', ',', 'he', 'screamed', 'out', 'Radisson', 'at', 'the', 'end', '.', 'Hi', '.', 'Shh-shh-shh', '!', 'The', 'guys', 'don�t', 'know', 'yet', 'do', 'they', '?', 'Don�t', 'worry', 'I', 'promise', 'that', 'you', 'will', 'only', 'have', 'to', 'be', 'pregnant', 'for', 'a', 'few', 'more', 'hours', ',', '�cause', 'I�m', 'going', 'to', 'tell', 'the', 'father', 'today', '.', 'Ew', '!', 'No', '!', 'Well', 'then', 'you', 'have', 'his', 'baby', '.', 'Yeah', '.', 'Uh-huh', ',', 'I', 'guess', 'it', 'is', 'pretty', 'big', 'news', '.', 'Well', 'it�s', 'only', 'different', 'if', 'he', 'wants', 'it', 'to', 'be', '.', 'I', 'mean', ',', 'I�m', 'not', 'gon', 'na', 'ask', 'him', 'for', 'anything', '.', 'Hey', 'Joey', ',', 'what', 'would', 'you', 'do', 'if', 'someone', 'that', 'you', 'slept', 'with', 'told', 'you', 'that', 'she', 'was', 'pregnant', '?', 'Oh', 'Joey', '!', 'Joey', '!', 'No', ',', 'it�s', 'not', 'you', '!', 'You', 'didn�t', 'get', 'anybody', 'pregnant', '!', 'Not', 'yet', '.', 'No', '!', 'Phoebe', ',', 'it�s', 'not', 'Gunther', '.', 'Phoebe', 'the', 'father', 'is', 'not', 'here', 'okay', '?', 'I', 'haven�t', 'told', 'him', 'yet', 'and', 'I', 'don�t', 'think', 'I', 'can', 'tell', 'him', 'at', 'all', 'now', '!', 'I', 'don�t', 'know', ',', 'let', 'me', 'think', '.', 'I', 'was', 'walking', 'down', 'the', 'street', 'thinking', ',', '�I�m', 'gon', 'na', 'tell', 'the', 'father', 'today�', 'and', 'then', 'bam', '!', 'No', ',', 'you', '!', 'Phoebe', 'you', 'freaked', 'me', 'out', '.', 'You', 'kept', 'saying', 'how', 'huge', 'this', 'all', 'is', '!', 'I', 'know', ',', 'but', 'I', 'was', 'just', 'thinking', 'about', 'how', 'huge', 'this', 'is', 'for', 'me', '.', 'I', 'didn�t', 'even', 'go', 'to', 'how', 'huge', 'this', 'was', 'going', 'to', 'be', 'for', 'the', 'father', '.', 'What', '?', 'Hey', 'wait', 'a', 'minute', '!', 'Phoebe', ',', 'how', 'do', 'you', 'even', 'know', 'who', 'the', 'father', 'is', '?', 'Oh', 'God�', 'Oh', ',', 'he�s', 'in', 'there', 'right', 'now', '?', 'Uh', ',', 'let�s', 'rip', '!', 'Oh', 'Phoebe', '!', 'Nothing', '!', 'Phoebe', 'kinda', 'made', 'a', 'mistake', '.', 'But', 'y�know', 'you', 'do', 'wear', 'that', 'sweater', 'a', 'lot', ',', 'are', 'you', 'involved', 'in', 'some', 'kind', 'of', 'dare', '?', 'Oh', ',', 'it�s', 'just', 'not', 'the', 'right', 'time', '.', 'Okay', '.', 'Tag�', 'I�m', 'having', 'a', 'baby', '.', 'You', 'can', 'go', '.', 'Tag', 'is', 'not', 'the', 'father', '!', 'And', 'Joey', 'knows', 'now', '?', 'Oh', 'wow', ',', 'you', 'didn�t', 'even', 'try', 'to', 'unhook', 'my', 'bra', '!', 'No', ',', 'I', 'will', '.', 'I�m', 'just', 'not', 'up', 'for', 'it', 'tonight', '.', 'I�m', 'not', '?', 'What', '?', 'No', '!', 'Joey', ',', 'oh', 'you�re', 'so', 'sweet', '.', 'You�re', 'so-so', 'sweet', ',', 'honey', '.', 'But', 'I�m', 'not', ',', 'I�m', 'not', 'looking', 'for', 'a', 'husband', '.', 'Now', ',', 'if', 'you', 'will', 'excuse', 'me', 'I', 'am', 'going', 'to', 'go', 'and', 'lie', 'down', '.', 'Oh', 'good', 'you�re', 'still', 'here', '!', 'I', 'want', 'to', 'tell', 'you', 'to', 'have', 'a', 'good', 'honeymoon', '!', 'And', 'I', 'also', 'wanted', 'you', 'guys', 'to', 'know', 'that', 'I', 'am', 'telling', 'the', 'father', 'today', '.', 'What', '?', 'What', '?', 'What', '?', 'How', '?', '!', 'How', 'do', 'you', 'know', '?', 'Oh', ',', 'I', 'so', 'wanted', 'Ross', 'to', 'know', 'first', ',', 'but', 'I�m', 'so', 'relieved', 'you', 'guys', 'know', '.', 'I', 'know', '!', 'You�re', 'all', 'gon', 'na', 'be', 'aunts', 'and', 'uncles', '.', 'Okay', '.', 'Great', '!', 'So', 'now', 'that', 'you', 'guys', 'all', 'know', 'you', 'can', 'help', 'me', '.', 'Give', 'me', 'some', 'advice', 'on', 'how', 'I�m', 'gon', 'na', 'tell', 'Ross', '!', 'Well', 'I', 'was', 'gon', 'na', 'tell', 'him', 'that', 'I�m-I�m', 'gon', 'na', 'have', 'the', 'baby', 'and', 'he', 'can', 'be', 'as', 'involved', 'as', 'he', 'wants', '.', 'Yeah', 'but', 'how', 'do', 'I', 'start', '?', 'I', 'mean', ',', 'what�s-what�s', 'the', 'first', 'thing', 'that', 'I', 'say', '?', 'Okay', 'great', '!', 'Thanks', '.', 'Hi', '!', 'Hi', '.', 'Umm', ',', 'I', 'think', 'there�s', 'something', 'that', 'we', 'really', 'need', 'to', 'talk', 'about', '.', 'You', 'do', '?', 'Okay', '.', 'What', '?', 'Seriously', '.', 'What', '?', '!', 'Okay', ',', 'y�know', 'what', '?', 'Can', 'I', ',', 'can', 'I', 'talk', 'now', '?', 'I�m', 'pregnant', '.', 'Ross', '?', 'Ross', '?', 'Okay', ',', 'whenever', 'you�re', 'ready', '.', 'And', 'you�re', 'the', 'father', 'by', 'the', 'way�but', 'you', 'got', 'that�', 'Can', 'I', 'get', 'you', 'some', 'water', '?', 'Ross', ',', 'there', 'is', 'no', 'pressure', 'on', 'you', '.', 'Okay', '?', 'I', 'mean', 'you', 'can', 'as', 'involved', 'as', 'you', 'want', '.', 'I', 'know', '.', 'I', 'know', ',', 'but', 'y�know', 'condoms', 'only', 'work', 'like', '97', '%', 'of', 'the', 'time', '.', 'They', 'do', '!', 'Okay', 'Ross', 'come', 'on', 'let�s', 'just', 'forget', 'about', 'the', 'condoms', '.', 'Listen', ',', 'y�know', 'what', '?', 'I', 'was', 'really', 'freaked', 'out', 'too', 'when', 'I', 'found', 'out�', 'Y�know', 'what', '?', 'Let�s', ',', 'let�s', 'talk', 'later', '.', 'Okay', ',', 'y�know', 'maybe', 'I', 'should', 'come', 'back�', 'Okay', '.', 'If', 'I', 'said', 'I', 'was', ',', 'would', 'you', 'judge', 'me', '?', 'Okay', '.', 'Oh', 'man', ',', 'I', 'swear', 'if', 'they', 'sold', 'these', 'at', 'Pottery', 'Barn�', 'Hi', '!', 'Uh-uh-uh', ',', 'right', 'now', '?', 'Because', 'I�ve', 'kinda', 'got', 'an', 'el', 'fresco', 'situation', 'going', 'on', 'over', 'here', '.', 'Okay', 'Ross', 'that�s', 'fine', ',', 'but', 'can', 'you', 'please', 'stand', 'near', 'my', 'head', '?', 'Okay', '.', 'Head', 'Ross', '!', 'Head', 'Ross', '!', 'Head', 'Ross', '!', 'What', 'married', '?', 'What', ',', 'because', 'that�s', 'your', 'answer', 'to', 'everything', '?', 'Yeah', ',', 'maybe', 'if', 'you�re', 'in', 'love', '.', 'But', 'Ross', ',', 'we', 'are', 'not', 'in', 'love', ',', 'are', 'we', '?', 'Excuse', 'me', '?', 'What', '?', '!', 'I', 'can', 'too', 'eat', 'by', 'myself', '!', 'When', 'certain', 'people', 'leave', 'the', 'table', 'and', 'I', 'am', 'not', 'finished', '!', 'Oh', 'please', ',', 'you', 'inhale', 'your', 'food', '!', 'Oh', 'no', 'Dr.', 'Long', ',', 'please', 'come', 'in', '.', 'This', 'is', 'Ross', ',', 'he', 'is', 'the', 'father', '.', 'I', 'do', 'need', 'you', '!', 'I', 'need', 'you', 'to', 'stand', 'near', 'my', 'head', '!', 'Wow', '.', 'There', 'it', 'is', ',', 'I', 'see', 'it', '.', 'Okay', '.', 'I', 'don�t', 'see', 'it', '!', 'I', 'can�t', 'see', 'it', '!', 'I', 'know', ',', 'I', 'lied', '!', 'I', 'didn�t', 'want', 'her', 'to', 'think', 'I', 'was', 'a', 'terrible', 'mother', '!', 'I', 'can�t', 'even', 'see', 'my', 'own', 'baby', '!', 'Oh', '.', 'Oh', ',', 'it�s', 'beautiful', '.', 'I', 'see', 'it', 'now', '.', 'No', ',', 'I', 'don�t', 'see', 'it', '!', 'Yeah', '.', 'That�s', 'it', '?', 'Well', 'I', 'saw', 'that', '!', 'Ohh-ohh-oh', ',', 'thank', 'you', '.', 'Wow', '!', 'I', 'can�t', 'believe', 'that�s', 'our', 'baby', '.', 'Hi', '.', 'Oh', ',', 'everything', 'went', 'great', '.', 'Oh', 'no', ',', 'I', 'know', 'I', 'couldn�t', 'see', 'it', 'either', 'at', 'first', ',', 'but', 'it�s', 'right', 'umm�', 'Ross', ',', 'I', 'lost', 'it', 'again', '.', 'Hi', '!', 'Welcome', 'home', '.', 'Oh', '!', 'Look', '!', 'I', 'have', 'a', 'sonogram', 'picture', '!', 'Well', 'it', 'happened', 'about', 'six', 'weeks', 'ago', ',', 'and', 'uh', 'I', 'had', 'just', 'got', 'home', 'from', 'work', 'and', 'Ross', 'was', 'already', 'there', '�cause', 'I', 'guess', 'he', 'had', 'been', 'hanging', 'out', 'with', 'Joey', '.', 'And', 'so', 'I', 'had', 'a', 'lot', 'of', 'work', 'to', 'do', 'so', 'Ross', ',', 'nice', 'guy', 'that', 'he', 'is', ',', 'offered', 'to', 'help', 'me', 'out', '.', 'And', 'then', 'we', 'had', 'a', 'little', 'wine', ',', 'we', 'got', 'to', 'talking', ',', 'and', 'the', 'next', 'thing', 'you', 'know', 'out', 'of', 'nowhere', 'Ross', 'comes', 'on', 'to', 'me', '.', 'What', 'is', '?', 'That-that', 'you', 'came', 'on', 'to', 'me', '?', 'But', 'you', 'did', '!', 'I', 'mean', ',', 'let�s', 'be', 'honest', '.', 'You', 'know', 'you', 'kissed', 'me', 'first', '.', 'I', 'was', 'sending', 'you', 'signals', '?', 'Oh', 'please', '.', 'Okay', ',', 'anyone', 'in', 'this', 'room', 'think', 'that', 'I', 'would', 'send', 'Ross', 'begging', 'symbols', ',', 'please', 'show', 'of', 'hands', '.', 'Okay', '.', 'So', 'these', 'signals', 'Ross', ',', 'explain', 'this', 'to', 'me', ',', '�cause', 'maybe', 'I', 'need', 'to', 'be', 'more', 'careful', '.', 'I', 'mean', ',', 'am', 'I', 'sending', 'you', 'these', 'signals', 'right', 'now', '?', 'No', 'please', ',', 'show', 'me', 'how', 'I', 'begged', 'you', '!', 'Oh', 'Ross', '!', 'Thank', 'God', 'you�re', 'here', '!', 'You', 'have', 'to', 'help', 'me', '!', 'Were', 'you', 'just', 'talking', 'to', 'yourself', '?', 'Hey', '!', 'Is', 'Ross', 'still', 'here', '?', 'Oh', 'really', '?', 'Well', 'how', 'would', 'you', 'like', 'it', 'if', 'I', 'had', 'sex', 'with', 'you', 'and', 'I', 'taped', 'it', '?', 'Oh', 'forget', 'it', '!', 'Oh', 'there', 'he', 'is', 'now', ',', 'the', 'father', 'of', 'my', 'child', ',', 'the', 'porn', 'king', 'of', 'the', 'west', 'village', '.', 'Thank', 'you', '.', 'What', '?', 'You', 'don�t', 'want', 'to', 'see', 'this', 'do', 'you', '?', 'I', 'am', 'not', 'gon', 'na', 'show', 'you', 'this', '!', 'I', 'wan', 'na', 'see', 'it', '.', 'Clearly', 'you', 'don�t', 'want', 'people', 'to', 'see', 'this', 'tape', '.', 'Now', 'I', 'don�t', 'want', 'people', 'to', 'see', 'this', 'tape', 'either', ',', 'but', 'you', 'so', 'badly', 'don�t', 'people', 'to', 'see', 'it', 'makes', 'me', 'want', 'to', 'see', 'it', '.', 'You', 'see', '?', 'Ahh', ',', 'I', 'don�t', 'believe', 'you', '.', 'I', 'think', 'you', 'don�t', 'want', 'them', 'to', 'see', 'you', 'begging', 'me', '.', 'Ah', ',', 'a', 'little', 'preview', '!', 'Okay', ',', 'here', 'we', 'go', '.', 'Oh', ',', 'thank', 'God', 'you�re', 'here', '!', 'You', 'have', 'to', 'help', 'me', '!', 'Were', 'you', 'just', 'talking', 'to', 'yourself', '?', 'There', 'I', 'am', '.', 'I', 'screwed', 'up', 'so', 'bad', ',', 'I', 'told', 'Monica', 'that', 'I', 'would', 'stuff', 'and', 'send', 'all', 'these', 'wedding', 'invitations', 'like', 'weeks', 'ago', 'and', 'I-I�', 'I-I', 'know�I', 'had', 'put', 'them', 'in�in-in', 'my', 'desk', 'at', 'work', 'and', 'I', 'completely', 'forgot', 'about', 'them', 'until', 'today', '.', 'Kinda', 'hurtin�', 'my', 'hand', 'though', '.', 'I', 'can', 'not', 'believe', 'that', 'I', 'did', 'this', '.', 'Especially', 'after', 'Monica', 'just', 'went', 'on', 'and', 'on', 'and', 'on', 'about', 'it', '!', '``', 'Okay', 'Rachel', '!', 'Here', 'are', 'the', 'invitations', 'Rachel', '!', 'Now', 'be', 'very', 'careful', 'Rachel', '!', 'Please', ',', 'drinking', 'no', 'liquids', 'around', 'the', 'invitations', 'Rachel', '!', \"''\", 'Whoa', 'oh', '!', 'Oh-oh-oh', '!', 'Oh�oh-oh-oh�', 'Can', 'you', 'believe', 'this', 'is', 'already', 'happening', '?', 'I', 'mean', 'it', 'seems', 'like', 'yesterday', 'they', 'just', 'got', 'engaged', '.', 'Oh', ',', 'I', 'remember', 'how', 'we', 'almost', '.', 'Do', 'you', 'think', 'we', 'would�ve', 'gone', 'through', 'with', 'it', '?', 'Y�know', ',', 'if', 'we', 'hadn�t', 'gotten', 'caught', '.', 'Do', 'you', 'think', 'we', 'would�ve', 'done', 'it', '?', 'Oh', 'I', 'wanted', 'to', '.', 'Interesting', '.', 'Oh', 'yeah', ',', 'sure', '.', 'Okay', ',', 'in', 'about', 'ten', 'seconds', 'you�re', 'gon', 'na', 'see', 'him', 'kiss', 'me', '.', 'Ross', 'did', 'I', 'ever', 'tell', 'you', 'about', 'the', 'time', 'that', 'I', 'went', 'backpacking', 'through', 'Western', 'Europe', '?', 'Okay', ',', 'get', 'ready', 'to', 'see', 'some', 'beggin�', '!', 'What', '?', '!', 'What', 'are', 'you', 'talking', 'about', '?', '!', 'How', 'do', 'you', 'know', 'about', 'that', 'story', '?', '!', 'I', 'heard', 'it', 'from', 'my', 'friend', 'Irene', 'who', 'heard', 'it', 'from', 'some', 'guy', '!', 'No', '.', 'No', ',', 'she', 'told', 'me', 'his', 'name', 'was', 'Ken', 'Adams', '.', 'So', 'uh', ',', 'apparently', 'people', 'are', 'familiar', 'with', 'the', 'Europe', 'story', '?', 'It', 'was', 'an', 'amazing', 'night', '.', 'You', 'think', 'it', 'looked', 'amazing', '?', 'Yeah', ',', 'me', 'neither', '.', 'Yet�', 'Yeah', ',', 'it', 'would', 'be', 'really', 'weird', '.', 'Good', 'luck', 'to', 'you', '.', 'Oh', 'please', '.', 'You', 'are', 'undressing', 'very', 'quickly', '.', 'That�s', 'what', 'I', 'was', 'gon', 'na', 'say', '.', 'Thank', 'you', '!', 'I', 'had', 'just', 'gone', 'to', 'the', 'beach', 'that', 'weekend', '.', 'Have', 'you', 'been', 'working', 'out', '?', 'Really', '?', 'Wow', ',', 'this', 'is', 'so', 'much', 'better', 'than', 'I�', 'Oh', '!', 'Oh', '!', 'Oh', 'God', '!', 'Oh', ',', 'make', 'it', 'stop', '!', 'Make', 'it', 'stop', '!', '!', 'Have', 'to', 'make', 'it', 'stop', '!', '!', 'Well', 'don�t�What', 'happened', 'to', 'Jessica�s', 'body', '?', '!', 'You', 'don�t', 'know', 'do', 'you', '?', 'Oh', '!', 'Hi', '.', 'Well', ',', 'Joey', 'probably', 'thinks', 'I�ll', 'just', 'embarrass', 'him', '.', 'Y�know', ',', 'he', 'thinks', 'I�m', 'some', 'kind', 'of', 'a', 'soap', 'opera', 'nut�Which', 'I�m', 'not', '!', 'I�m', 'not', '.', 'Although', 'I', 'do', 'know', 'that', 'your', 'uh', ',', 'your', 'favorite', 'ice', 'cream', 'flavor', 'is', 'butter', 'pecan', '.', 'And', 'uh', ',', 'and', 'that', 'your-your', 'dog�s', 'name', 'is', 'Wally', '.', 'Well', 'look', 'at', 'that', ',', 'I�m', 'just', 'stroking', 'your', 'arm', '.', 'Oh', ',', 'we�re', 'leaving', '.', 'Bye', 'Kash', '.', 'Say', 'hi', 'to', 'Wally', '.', 'Hi', '!', 'I', 'thought', 'I', 'was', 'a', 'complete', 'idiot', '.', 'Oh', '!', 'Oh', ',', 'I', 'think', 'I�m', 'gon', 'na', 'throw', 'up', 'a', 'little', 'bit', '.', 'What', 'did', 'you', 'say', '?', 'What', '?', '!', 'Okay', 'Joey', ',', 'first', 'of', 'all', 'Kash', 'Ford', 'is', 'not', 'people', '.', 'Second', 'of', 'all', ',', 'what', 'did', 'he', 'say', 'when', 'you', 'told', 'him', 'I', 'was', 'pregnant', '?', 'Good-good', ',', 'don�t', 'tell', 'him', '.', 'Don�t', 'tell', 'him', '.', 'Just', 'have', 'him', 'call', 'me', 'okay', '?', 'Okay', ',', 'you', 'go', 'do', 'it', '!', 'I�ll', 'come', 'back', 'to', 'that', 'set', '!', 'I�ll', 'meet', 'more', 'actors', '!', 'I�ll', 'meet', '�em', 'all', '!', 'Hey', ',', 'what', 'do', 'you', 'think', 'is', 'a', 'better', 'excuse', 'for', 'why', 'I�m', 'not', 'drinking', 'on', 'this', 'date', 'tonight', '.', '``', 'Umm', ',', 'I�m', 'a', 'recovering', 'alcoholic', '.', 'I�m', 'a', 'Mormon', ',', \"''\", 'or', '``', 'I', 'got', 'so', 'hammered', 'last', 'night', 'I�m', 'still', 'a', 'little', 'drunk', '?', \"''\", 'Hi', '!', 'Oh', 'no', ',', 'I', 'can�t', '.', 'I', 'got', 'a', 'date', '.', 'Yeah', '.', 'Why', '?', 'Is', 'that', 'weird', 'for', 'you', '?', 'Yeah�Ooh', '!', 'Earrings', '!', 'Hey', 'guys', 'do', 'you', 'think', 'this', 'is', 'too', 'slutty�Hi', 'Kash', '!', 'Yeah', '!', 'All', 'right', ',', 'I�ll', 'see', 'you', 'guys', 'later', '.', 'Thank', 'you', '.', 'Hi', '!', 'Well', 'I�m', 'alone', 'and', 'I', 'just', 'bought', 'fifteen', 'dollars', 'worth', 'of', 'candy', 'bars', ',', 'what', 'do', 'you', 'think', '?', 'I', 'made', 'the', 'mistake', 'of', 'telling', 'him', 'that', 'I', 'was', 'pregnant', '.', 'Well', 'better', 'than', 'you', ',', 'but', 'y�know', 'still', 'not', 'what', 'you', 'want', '.', 'He', 'got', 'all', 'weird', 'and', 'sputtery', 'and', 'then', 'he', 'said', 'uh', ',', '``', 'Yeah', ',', 'I', 'hear', 'those', 'hemorrhoids', 'are', 'a', 'bitch', '.', \"''\", 'Doesn�t', 'he', '?', 'Yes', '.', 'Okay', '.', 'Chandler', 'M.', 'Bing', '?', 'Oh', 'my', 'God', '.', 'Oh', 'it�s', 'all', 'right', '.', 'I�m', 'guess', 'I�m', 'just', 'done', 'with', 'the', 'whole', 'dating', 'thing', '.', 'It�s', 'one', 'more', 'thing', 'in', 'my', 'life', 'that�s', 'suddenly', 'completely', 'different', '.', 'This', 'is', 'hard', '.', 'Thanks', 'sweetie', '.', 'Oh', 'no', ',', 'I', 'think', 'I�m', 'gon', 'na', 'go', 'home', 'and', 'eat', 'ten', 'candy', 'bars', '.', 'Oh', 'you', 'did', ',', 'there', 'are', 'twenty', 'in', 'here', '.', 'Good', 'night', '.', 'Please', 'tell', 'me', 'you�re', 'not', 'gon', 'na', 'dress', 'up', 'like', 'a', 'dinosaur', '.', 'Hi', '!', 'I', 'am', '!', 'I', 'am', 'a', 'woman', 'who', 'spent', 'a', 'lot', 'of', 'money', 'on', 'a', 'dress', 'and', 'she', 'wants', 'to', 'wear', 'it', ',', 'because', 'soon', 'she', 'won�t', 'be', 'able', 'to', 'fit', 'into', 'it', '.', 'Ahh', '!', 'Okay', '.', 'Oh', '!', 'Oh', '!', 'Can', 'I', 'give', 'out', 'the', 'candy', '?', 'I', 'really', 'want', 'to', 'be', 'with', 'the', 'kids', 'right', 'now', '.', 'Y�know', ',', 'ever', 'since', 'I', 'got', 'pregnant', 'I-I', 'have', 'the', 'strongest', 'maternal', 'instincts', '.', 'Just', 'a', 'minute', '!', '!', '!', 'Look', 'at', 'you', 'guys', '!', 'Wow', '!', 'You', 'are', 'a', 'very', 'scary', 'witch', '.', 'And', 'you', 'are', 'a', 'very', 'funny', 'clown', '.', 'And', 'you', 'are', 'so', 'in', 'style', 'right', 'now', '.', 'Y�know', ',', 'I', 'work', 'at', 'Ralph', 'Lauren', 'and', 'the', 'whole', 'fall', 'line', 'has', 'got', 'this', 'like', 'equestrian', 'theme', 'going', 'on', '.', 'I', 'don�t', 'suppose', 'you', 'saw', 'the', 'cover', 'of', 'British', 'Vogue', ',', 'but�', 'Yeah', '.', 'Sure', '.', 'Oh', ',', 'you', 'did', 'this', 'to', 'him', '?', 'Oh', '!', 'Well', 'you�re', 'just', 'the', 'prettiest', 'ballerina', 'I�ve', 'ever', 'seen', '.', 'Oh', 'wow', '!', 'That', 'deserves', 'another', 'piece', 'of', 'candy', '.', 'Well', ',', 'I', 'have', 'to', 'say', 'that', 'earns', 'tutu', 'pieces', 'of', 'candy', '.', 'Ohh�', 'Oh', ',', 'honey', 'here', '.', 'Take', 'it', 'all', '.', 'Monica', '!', 'We', 'need', 'more', 'candy', '?', 'Yeah', 'I', 'know', ',', 'but', 'one', 'of', 'them', 'just', 'said', 'that', 'she', 'loved', 'me', 'so', 'I', 'just', 'gave', 'her', 'everything', '.', 'Hey', '.', 'Hi', '!', 'Y�know', 'what', 'honey', ',', 'we�re', 'actually', 'out', 'of', 'candy', 'right', 'now', '.', 'But', 'someone', 'just', 'went', 'out', 'to', 'get', 'some', 'and', 'I', 'have', 'been', 'giving', 'out', 'money', 'but', 'I�m', 'out', 'of', 'that', 'too', '.', 'Hey', ',', 'can', 'I', 'write', 'you', 'a', 'check', '?', 'Okay', ',', 'what�s', 'your', 'name', '?', 'Okay', ',', 'I�m', 'just', 'gon', 'na', 'write', 'this', 'out', 'to', 'cash', '.', 'Hey', 'Mona', '!', 'Oh', 'Gunther', '!', 'You', 'brought', 'candy', '!', 'Thank', 'you', 'so', 'much', 'for', 'picking', 'this', 'up', '!', 'You', 'are', 'so', 'sweet', '.', 'Honey', ',', 'someday', 'you', 'are', 'gon', 'na', 'make', 'some', 'man', 'the', 'luckiest', 'guy', 'in', 'the', 'world', '.', 'Got', 'ta', 'go', '!', 'Hi', '!', 'Wow', '!', 'There', 'you', 'go', '!', 'Oh', 'yeah', ',', 'we', 'were', 'but', 'umm', ',', 'now', 'we�ve', 'got', 'candy', '.', 'Well', ',', 'that-that�s', 'not', 'your', 'choice', '.', 'Happy', 'Halloween', '!', 'Well', 'is', 'it', 'fair', 'that', 'all', 'you', 'did', 'was', 'put', 'on', 'a', 'cape', 'and', 'I', 'got', 'ta', 'give', 'you', 'free', 'stuff', '?', 'You', 'shut', 'up', '!', 'Uh', ',', 'I', 'think', 'I', 'just', 'did', '.', 'And', 'uh-oh', ',', 'here', 'it', 'comes', 'again', '.', 'Shut', 'up', '!', 'Yeah', 'I', 'know�I�m', 'good�I', 'got', 'it', '!', 'Now', 'wait', 'a', 'minute', ',', 'I�ve', 'got', 'one', 'more', 'thing', 'I', 'have', 'to', 'say', 'to', 'you�oh', 'right', '!', 'Shut', 'up', '!', 'No', '!', 'Wait', 'no', '!', 'Shut', 'up�I', 'mean', 'don�t', 'cry', '!', 'Let', 'me', 'get', 'my', 'checkbook', '!', 'Hey', '!', 'Well', ',', 'I', 'had', 'to', 'give', 'the', 'kid', 'fifty', 'bucks', 'to', 'stop', 'crying', '.', 'No', ',', 'I', 'also', 'had', 'to', 'go', 'to', 'a', 'couple', 'houses', 'with', 'him', 'as', 'his', 'girlfriend', '.', 'Oh', ',', 'I', 'am', 'just', 'awful', 'with', 'children', '!', 'Really', '?', 'You', 'think', 'that�s', 'all', 'it', 'is', '?', 'Wow', '!', 'What', 'did', 'he', 'do', '?', 'I', 'can\\x92t', '.', 'I\\x92m', 'busy', '.', 'I\\x92m', 'apartment', 'hunting', '.', 'Yeah', ',', 'I', 'can\\x92t', 'live', 'with', 'Joey', 'once', 'the', 'baby', 'comes', '.', 'I', 'don\\x92t', 'want', 'my', 'child\\x92s', 'first', 'words', 'to', 'be', ',', '``', 'How', 'you', 'doin\\x92', '?', \"''\", 'Well', ',', 'I', 'haven\\x92t', 'discussed', 'it', 'with', 'him', 'yet', ',', 'but', 'I', 'know', 'he\\x92s', 'gon', 'na', 'be', 'relieved', '.', 'Last', 'week', ',', 'he', 'brought', 'this', 'girl', 'over', 'and', 'I', 'started', 'talking', 'to', 'her', 'about', 'morning', 'sickness', 'and', 'then', 'I', 'showed', 'her', 'pictures', 'from', 'my', 'pregnancy', 'book', '.', 'Not', 'so', 'much', '.', 'Oh', 'my', 'God', '!', 'Was', 'she', 'old', '?', 'Does', 'she', 'have', 'a', 'view', '?', 'Yeah', 'that', 'would', 'really', 'be', 'great', '.', 'Well', 'can', 'we', 'see', 'it', '?', '!', 'Oh', 'maybe', 'we', 'shouldn\\x92t', '.', 'I', 'mean', 'if', 'she', 'just', 'died', 'this', 'morning', 'out', 'of', 'respect', '.', 'Shall', 'we', '?', 'And', 'I\\x92m', 'Rachel', ',', 'an', 'admirer', 'of', 'the', 'building', '.', 'Ahh', '.', 'So', 'she\\x92s', 'really', 'not', 'dead', '.', 'Hmm', '.', 'Do', 'you', 'think\\x97Could', 'you', 'tell', 'me', 'if', 'she\\x92s', 'hanging', 'in', ',', 'in', 'a', 'one', 'bedroom', 'or', 'a', 'two', '?', 'Hey', '!', 'How', 'was', 'the', 'game', '?', 'Oh', '.', 'Oh', 'yeah', '!', 'Hopefully', 'across', 'the', 'street', 'if', 'certain', 'Dutch', 'people', 'would', 'just', 'let', 'go', '.', 'Oh', 'but', 'Joey', ',', 'I', 'have', 'to', 'go', '.', 'There\\x92s', 'no', 'room', 'for', 'a', 'baby', 'here', '.', 'Honey', ',', 'it\\x92s', 'not', 'just', 'a', 'matter', 'of', 'where', 'you', 'put', 'it', '.', 'I', 'mean', 'a', 'baby', 'changes', 'everything', '.', 'They', 'cry', 'all', 'the', 'time', '.', 'I', 'mean', 'imagine', 'bringing', 'home', 'some', 'girl', 'and', 'trying', 'to', 'score', 'when', 'there\\x92s', 'a', 'screaming', 'baby', 'around', '.', 'Honey', ',', 'it\\x92s', 'so', 'sweet', 'that', 'you', 'want', 'me', 'to', 'stay', ',', 'but', 'I-I', 'can\\x92t', 'do', 'that', 'to', 'you', '.', 'I', 'mean', 'it', 'would', 'disrupt', 'your', 'entire', 'life', '.', 'I', 'know', '.', 'I', 'do', 'too', 'a', 'little', 'bit', '.', 'Hi', '!', 'You', 'gave', 'them', 'to', 'me', '!', 'All', 'right', ',', 'I', 'took', 'them', '.', 'But', 'I', 'figured', 'it', 'would', 'be', 'okay', 'because', 'you', 'got', 'a', 'big', 'ink', 'stain', 'on', 'the', 'crotch', '.', 'What', 'bra', '?', 'You', 'mean', 'the', 'one', 'that', 'you\\x92re', 'wearing', '?', 'What', 'is', 'this', '?', 'You\\x92re', 'so', 'sweet', '.', 'Oh', 'my', 'God', '!', 'And', 'you', 'gave', 'the', 'baby', 'Hugsy', '!', 'But', 'Joey', 'the', 'baby', 'is', 'going', 'to', 'be', 'crying', ',', 'it\\x92s', 'going', 'to', 'be', 'loud', '.', 'It\\x92s', 'gon', 'na', 'be', 'up', 'all', 'night', '!', 'It\\x92s', 'gon', 'na', 'poop', '!', 'What', 'about', 'all', 'the', 'women', 'you', 'want', 'to', 'bring', 'home', '?', 'Joey', ',', 'are', 'you', 'sure', '?', 'I', 'want', 'me', 'to', 'stay', 'too', '.', 'Thank', 'you', '.', 'Oh', 'Joey', 'and', 'look', 'at', 'this', 'crib', '!', 'It\\x92s', 'so', 'cute', '!', 'Are', 'you', 'serious\\x97Really', '?', '!', 'It\\x92s', 'in', 'such', 'good', 'condition', '.', 'Wow', '!', 'Whoa-whoa', 'what\\x92s', 'under', 'the', 'covers', '?', 'It\\x92s', 'moving', '.', 'It\\x92s', 'still\\x97\\x97It\\x92s', 'got', 'a', 'tail', '!', 'Get', 'it', 'out', 'of', 'here', '!', 'Get', 'it', 'out', 'of', 'here', '!', '!', 'Hey', 'Pheebs', '?', 'I\\x92m', 'having', 'dinner', 'with', 'my', 'dad', 'tomorrow', 'night', ',', 'do', 'you', 'wan', 'na', 'come', '?', 'Oh', 'no', ',', 'no', ',', 'I\\x92ll', 'be', 'there', 'too', '.', 'No', 'Phoebe', '!', 'I', 'just', 'need', 'you', 'there', 'for', 'support', '.', 'I', 'haven\\x92t', 'told', 'him', 'I\\x92m', 'pregnant', 'yet', '.', '\\x91Cause', 'I', 'know', 'he\\x92s', 'gon', 'na', 'flip', 'out', 'and', 'I', 'hate', 'it', 'when', 'he\\x92s', 'angry', '.', 'What', 'Phoebe', '?', 'Wait', '!', 'One', 'time', 'he', 'caught', 'me', 'smoking', 'he', 'said', 'if', 'he', 'ever', 'saw', 'me', 'doing', 'that', 'again', 'he\\x92d', 'make', 'me', 'eat', 'the', 'entire', 'pack', '.', 'Thank', 'you', '.', 'No', 'you', 'don\\x92t', '.', 'Well', 'you', 'could\\x92ve', 'untied', 'it', 'with', 'your', 'hands', '.', 'Well', 'actually', 'umm', 'In', 'case', 'you', 'didn\\x92t', 'notice', ',', 'that', 'is', 'a', 'scary', 'man', '.', 'This', 'was', 'such', 'a', 'huge', 'mistake', '.', 'I', 'can\\x92t', 'tell', 'him', 'Phoebe', '.', 'I', 'can\\x92t', ',', 'I', 'can\\x92t', ',', 'I', 'can\\x92t', ',', 'I', 'can\\x92t', 'No', 'it\\x92s', 'okay', ',', 'this', 'is', 'what\\x92s', 'gon', 'na', 'happen', '.', 'I\\x92m', 'gon', 'na', 'wait', 'a', 'couple', 'years', 'and', 'then', 'the', 'baby', 'will', 'tell', 'him', '.', 'Hey', ',', 'that', 'is', 'the', 'baby\\x92s', 'problem', '.', 'Oh', ',', 'everything', 'okay', 'with', 'the', 'waiter', '?', 'Well', 'Umm', ',', 'I', 'got', '<', 'i', '>', 'TiVo', '<', '/i', '>', '.', 'Phoebe', '!', 'Well', 'uh', ',', 'yes', 'and', 'no', '.', 'Except', 'not', 'no', '.', 'So', 'to', 'sum', 'it', 'up', ',', 'yeah', '.', 'No', ',', 'it\\x92s', 'Ross', '.', 'It\\x92s', 'Ross', '.', 'You', 'like', 'Ross', '.', 'Oh', 'daddy', ',', 'I', 'hope', 'you\\x92re', 'okay', 'with', 'all', 'of', 'this', '.', 'I', 'mean', 'think', 'about', 'it', ',', 'this', 'is', 'a', 'good', 'thing', '.', 'You\\x92re', 'gon', 'na', '\\x97This', 'is', 'your', 'first', 'grandchild', '!', 'You\\x92re', 'gon', 'na', 'be', 'a', 'poppy', '!', 'Yeah', '.', 'Who', '?', 'February', '2', '<', 'sup', '>', 'nd', '<', '/sup', '>', '!', 'I', 'know', '.', 'I', 'know', '.', 'I', 'panicked', ',', 'I', 'panicked', '.', 'I', 'didn\\x92t', 'want', 'him', 'to', 'start', 'yelling', 'at', 'me', 'like', 'I', 'was', 'some', '\\x9274', 'Latour', '.', 'All', 'right', 'here', 'he', 'comes', '.', 'I\\x92m', 'gon', 'na', 'do', 'this', ',', 'I\\x92m', 'gon', 'na', 'tell', 'him', ',', 'I\\x92m', 'gon', 'na', 'be', 'strong', '.', 'Yeah', '?', 'Really', '?', '!', '<', 'i', '>', 'The', 'Plaza', '<', '/i', '>', '?', '!', '!', 'Oh', 'daddy', '!', '!', 'Right', '.', 'Daddy', ',', 'I', 'need', 'to', 'talk', 'to', 'you', '.', 'Please', ',', 'sit', 'down', '.', 'There\\x92s', 'not', 'gon', 'na', 'be', 'a', 'wedding', '.', 'Ross', 'and', 'I', 'are', 'not', 'getting', 'married', '.', 'I\\x92m', 'sorry', 'daddy', '.', 'Oh', 'now', 'daddy', ',', 'stay', 'calm', '.', 'Please', '.', 'Yes', '.', 'Yes', ',', 'he', 'says', 'I\\x92m', 'damaged', 'goods', '.', 'Oh', 'no', 'Ross', 'I\\x92m', 'so', 'sorry', '.', 'Okay', '.', 'I-I', 'will', 'promise', 'I', 'will', 'straighten', 'this', 'out', 'with', 'him', 'tomorrow', 'in', 'person', ',', 'or', 'via', 'e-mail', '.', 'Oh', 'okay', ',', 'I\\x92ll', 'fix', 'that', 'to', '.', 'What\\x92s', 'her', 'e-mail', 'address', '?', 'All', 'right', ',', 'I', 'promise', '.', 'I\\x92ll', 'fix', 'this', '.', 'I', 'swear', '.', 'I\\x92ll-I\\x92ll-I\\x92ll-I\\x92ll', 'talk', 'to', 'her', '.', 'Okay', '.', 'I', 'know', 'Mona', ',', 'just', 'hear', 'me', 'out', '.', 'First', 'of', 'all', ',', 'I\\x92m', 'so', 'sorry', 'about', 'my', 'father', 'yelling', 'at', 'you', ',', 'but', 'I', 'heard', 'you', 'totally', 'held', 'your', 'own', '.', 'You\\x92re', 'gon', 'na', 'have', 'to', 'tell', 'me', 'how', 'you', 'did', 'that', '.', 'Okay', '.', 'Um', 'But\\x97Okay', ',', 'yes', 'Ross', 'and', 'I', 'used', 'to', 'date', '.', 'And', 'yes', 'we', 'are', 'gon', 'na', 'have', 'a', 'baby', '.', 'But', 'we', 'are', 'definitely', 'not', 'getting', 'back', 'together', '.', 'Oh', 'we', 'just\\x97we', 'drove', 'each', 'other', 'crazy', '!', 'I', 'mean', 'he', 'was', 'possessive', ',', 'he', 'was', 'jealous', ',', 'he', 'could', 'never', 'just', 'let', 'the', 'little', 'things', 'go', '!', 'Right', '!', 'But', ',', 'none', 'of', 'that', 'compared', 'to', 'how', 'kind', 'and-and', 'how', 'gentle', 'and', 'thoughtful', 'he', 'is', '.', 'I', 'know', ',', 'I', 'get', 'it', ',', 'but', 'Mona', ',', 'what', 'relationship', 'is', 'not', 'complicated', '?', 'I', 'mean', 'we', 'all', 'have', 'our', 'baggage', '!', 'You', 'must', 'too', '!', 'Why', 'else', 'would', 'you', 'still', 'be', 'single', '?', 'I', 'am', 'so', 'gon', 'na', 'leave', 'right', 'now', '.', 'Forgot', 'my', 'purse', '!', 'Oh', ',', 'you', 'guys', 'made', 'up', '.', 'He\\x92s', 'a', 'good', 'kisser', 'isn\\x92t', 'he', '?', 'I\\x92m', 'going', '!', 'Oh', 'my', 'God', '!', 'Let', 'me', 'see', 'that', '!', 'Hi', '!', 'Oh', 'Pheebs', 'that\\x92s', 'so', 'sweet\\x97\\x97Ooh', ',', 'those', 'are', 'so', 'cute', '!', 'No', '.', 'Wow', '!', 'I', 'don\\x92t', 'remember', 'him', '.', 'Honey', ',', 'are', 'you', 'sure', 'you\\x92re', 'not', 'talking', 'about', 'your', 'imaginary', 'boyfriend', '.', 'Oh', 'that\\x92s', 'nice', '.', 'Remember', 'I', 'had', 'to', 'leave', 'the', 'room', 'the', 'other', 'day', 'when', 'you', 'had', 'that', 'roast', 'chicken', '?', 'Hi', '!', 'Oh', 'my', 'God', 'Monica', ',', 'who', 'is', 'that', '?', 'Oh', '!', 'I', 'do', 'not', 'remember', 'him', '!', 'Wow', '!', 'He', \"'s\", 'really', 'got', 'that', 'sexy', ',', 'smoldering', 'thing', 'going', 'on', '.', 'Oh', 'my', 'God', ',', 'he\\x92s', 'Look', 'at', 'the', 'way', 'he\\x92s', 'just', 'staring', 'at', 'me', '.', 'I', 'think', 'he\\x92s', 'trying', 'to', 'mouth', 'something', 'to', 'me', ',', 'but', 'I', 'can\\x92t', 'make', 'it', 'out', '.', 'Hi', '!', 'Will', ',', 'right', '?', 'Hi', '!', 'I\\x92m', 'Rachel', 'Green', '.', 'Really', '?', '!', 'Aren\\x92t', 'you', 'sweet', '!', 'I', 'got', 'ta', 'tell', 'you', 'though', ',', 'I', 'am', ',', 'I', 'am', 'having', 'the', 'hardest', 'time', 'placing', 'you', '.', 'Oh-oh', 'hang', 'on', '!', 'Did', 'we', 'umm', ',', 'did', 'we', 'fool', 'around', 'at', 'Lance', 'Davis\\x92', 'graduation', 'party', '?', 'Thank', 'you', '!', 'All', 'right', ',', 'who', 'would', 'uh', ',', 'like', 'some', 'yams', '?', 'Will', '?', 'What', '?', 'Oh', 'y\\x92know', 'what', '?', 'Can', 'we', 'please', 'keep', 'the', 'chicken', 'and', 'the', 'turkey', 'and', 'everything', 'on', 'the', 'other', 'side', 'of', 'the', 'table', '?', 'The', 'smell', 'is', 'just', 'yuck', '!', 'I\\x92m', 'sorry', '.', 'What', '?', 'Umm', ',', 'I\\x92m', 'sorry', '.', 'Do', 'you-do', 'you', 'have', 'a', 'problem', 'with', 'me', '?', 'I\\x92m-I\\x92m\\x97I', 'had', 'no', 'idea', '.', 'I\\x92m', 'sorry', '.', 'I', 'Uh', 'Will', 'umm', ',', 'I', 'just', 'want', 'to', 'say', 'that', 'I\\x92m', 'real', 'sorry', 'for', 'whatever', 'I-I', 'did', 'to', 'you', 'in', 'high', 'school', 'You', 'had', 'a', 'club', '?', '!', 'Whoa', '!', 'My', 'God', '!', 'So', 'what', ',', 'you', 'all', 'just', 'joined', 'together', 'to', 'hate', 'me', '?', '!', 'Who', 'else', 'was', 'in', 'this', 'club', '?', 'So', 'you', 'were', 'in', 'an', 'I', 'Hate', 'Rachel', 'club', '?', 'So', 'who', 'else', 'was', 'in', 'this', 'club', '?', 'So', 'Ross', ',', 'we', 'went', 'out', 'for', 'two', 'years', ',', 'and', 'you', 'never', 'told', 'me', 'you', 'were', 'in', 'an', 'I', 'Hate', 'Rachel', 'club', '.', 'Okay', 'Monica', ',', 'did', 'you', 'know', 'about', 'this', '?', '!', 'Okay', '.', 'So', 'what', '?', 'You', 'guys', 'would', 'just', 'like', 'get', 'together', 'and', 'like', 'just', 'say', 'mean', 'things', 'about', 'me', '?', 'What', 'rumor', '?', 'Ross', '!', 'What', '?', '!', 'Oh', 'my', 'God', '!', 'What', '?', '!', 'You', 'heard', 'that', '?', '!', 'Oh', 'no', '!', '!', '!', '!', 'Oh', 'my', 'God', '!', '!', 'This', 'is', 'all', 'making', 'so', 'much', 'sense', 'to', 'me', 'now', '!', 'This', 'is', 'why', 'Adam', 'Carter', 'wouldn\\x92t', 'go', 'out', 'with', 'me', '!', 'This', 'is', 'why', 'Billy', 'Tratt', 'would', 'just', 'stay', 'in', 'this', 'region', '!', 'Monica', ',', 'how', 'come', 'you', 'never', 'told', 'me', 'this', '?', '!', 'Joey', 'stop', 'staring', '!', 'There\\x92s', 'nothing', 'there', '!', 'It\\x92s', 'not', 'true', '!', 'Oh', '!', 'Okay', '!', 'Okay', '!', 'Listen', 'to', 'what', 'Sean', 'McMahon', 'wrote', 'in', 'my', 'yearbook', 'senior', 'year', ',', '``', 'Dear', 'Rach', ',', 'you\\x92re', 'such', 'a', 'good', 'person', '.', \"''\", 'Not', 'girl', '!', 'Person', '!', '``', 'Dear', 'Rach', ',', 'you\\x92re', 'a', 'great', 'person', '.', 'Sorry', 'about', 'your', 'tiney-wienie', '.', \"''\", 'Yes', '!', 'I', 'don\\x92t', 'care', 'how', 'long', 'ago', 'it', 'was', '!', 'You', 'told', 'people', 'that', 'I', 'was', 'half', 'and', 'half', '!', 'Y\\x92know', 'what', '?', 'I', 'just', 'want', 'to', 'point', 'out', 'I', 'never', 'did', 'anything', 'to', 'hurt', 'you', 'in', 'high', 'school', '.', 'What', '?', 'Yes', 'it', 'is', '!', 'I', 'saw', 'you', 'guys', 'going', 'at', 'it', 'behind', 'the', 'card', 'catalog', '!', 'Ohh', ',', 'there\\x92s', 'a', 'picture', 'of', 'her', 'in', 'the', 'yearbook', 'actually', '.', 'Wh\\x97Phoebe', '!', '!', 'All', 'right', ',', 'y\\x92know\\x97Fine', '!', 'You', 'guys', 'have', 'your', 'stupid', 'little', 'club', ',', 'but', 'I', 'would', 'just', 'like', 'to', 'say', 'is', 'what', 'you', 'did', 'to', 'me', 'is', 'way', 'worse', 'than', 'what', 'I', 'did', 'to', 'you', '!', 'You', 'gave', 'me', 'a', 'tiney-wienie', '!', 'Wow', 'She\\x92s', 'right', '.', 'Hi', '!', 'Oh', 'my', 'God', '!', 'Oh', 'Monica', '!', 'Those', 'boots', 'are', 'amazing', '!', 'Return', 'them', '?', '!', 'Shh', '!', 'They\\x92re', 'gon', 'na', 'hear', 'you', '!', 'He\\x92s', 'talking', 'to', 'the', 'baby', '.', 'Okay', '.', 'Well', ',', 'I', 'got', 'ta', 'go', 'you', 'guys', '.', 'I\\x92ll', 'see', 'you', 'later', '.', 'Bye', '.', 'Hi', '.', 'No', ',', 'forget', 'it', '!', 'No', 'way', '!', 'I', 'am', 'not', 'sending', 'anymore', '<', 'i', '>', 'Ralph', 'Lauren', '<', '/i', '>', 'clothes', 'to', 'prison', '.', 'It', 'is', 'a', 'waste', '.', 'I', 'guess', 'I', 'can', 'talk', 'to', 'one', 'of', 'my', 'supervisors', 'Really', '?', '!', 'Oh', 'my', 'God', '!', 'I\\x92m', 'successful', '!', 'Yes', '!', 'I\\x92d', 'love', 'to', '!', 'Have', 'her', 'come', 'by', 'the', 'office', '.', 'Yeah', '.', 'Hi', 'Monica', '!', 'Hi', 'boots', '.', 'Ahh', 'Well-well', 'you', 'can', 'give', 'them', 'to', 'me', '!', 'I', 'haven\\x92t', 'felt', 'my', 'feet', 'in', 'years', '!', 'Oh', 'Joey', ',', 'I\\x92m', 'hardly', 'a', 'Right', '!', 'Hi', 'Dina', '!', 'Nice', 'to', 'meet', 'you', '.', 'Okay', '.', 'All', 'right', 'Dina', ',', 'well', 'let\\x92s', 'talk', 'about', 'the', 'different', 'areas', 'of', 'fashion', 'that', 'you', 'could', 'get', 'involved', 'in', '.', 'Let\\x92s', 'see', ',', 'there\\x92s', 'design', ',', 'but', 'you', 'may', 'need', 'a', 'whole', 'other', 'degree', 'for', 'that', '.', 'Uh', ',', 'there\\x92s-there\\x92s', 'sales', ',', 'which', 'is', 'great', 'because', 'you', 'get', 'to', 'travel', 'And', 'there\\x92s', 'marketing', 'Honey', ',', 'it\\x92s', 'going', 'to', 'be', 'okay', '.', 'He\\x92s', 'been', 'incredibly', 'supportive', 'of', 'me', ',', 'and', 'if', 'he', 'gets', 'a', 'little', 'upset', ';', 'that\\x92s', 'what', 'the', 'meatball', 'sub', 'is', 'for', '.', 'Okay', '.', 'Honey', ',', 'why', 'don\\x92t', 'you', 'sit', 'down', '?', 'Dina', 'has', 'something', 'that', 'she', 'wants', 'to', 'tell', 'you', '.', 'Joey', 'there\\x92s', 'something', 'that', 'you', 'should', 'know', '.', 'Dina', '?', 'Now', '!', 'Give', 'him', 'the', 'sandwich', '!', 'Give', 'him', 'the', 'sandwich', '!', 'What', '?', '!', 'Dina', 'I', 'know', '.', 'What', 'college', 'was', 'that', 'Dina', '?', 'Joey', ',', 'what', 'are', 'you', 'doing', '?', 'Oh', 'Joey', 'this', 'is', 'crazy', '!', 'All', 'right', 'Joey', '!', 'That', 'is', 'enough', '!', 'Listen', ',', 'as', 'beautiful', 'and', 'moving', 'as', 'this', 'ceremony', 'is', ',', 'it\\x92s', 'not', 'legal', '.', 'Okay', '?', 'They-they', 'don\\x92t', 'have', 'a', 'marriage', 'license', ',', 'they', 'don\\x92t', 'have', 'any', 'witnesses', ',', 'and', 'the', 'groom', 'only', 'has', 'on', 'one', 'shoe', '!', 'You\\x92re', 'supposed', 'to', 'realize', 'that', 'they', 'are', 'adults', '!', 'And', 'that', 'they', 'can', 'make', 'their', 'own', 'decisions', '.', 'Heyyyyy', '!', 'Contraceptives', 'are', 'not', 'always', 'effective', '!', 'Right', '?', 'Oh', ',', 'come', 'on', 'kids', '!', 'A', 'little', 'help', 'here', '!', 'Joey', ',', 'just', 'because', 'they\\x92re', 'not', 'getting', 'married', 'doesn\\x92t', 'mean', 'this', 'is', 'going', 'to', 'be', 'a', 'disaster', '.', 'Maybe', 'they', 'have', 'a', 'plan', '!', 'Hey', ',', 'now', 'wait', 'a', 'minute', '!', 'I', 'get', 'when', 'you', 'told', 'people', 'at', 'first', 'that', 'you', 'wanted', 'to', 'be', 'an', 'actor', 'they', 'laughed', 'at', 'you', '!', 'Now', 'come', 'on', 'Bobby', ',', 'why', 'don\\x92t', 'you', 'tell', 'us', 'a', 'little', 'bit', 'about', 'your', 'band', '?', 'Really', '?', 'Oh', 'excuse', 'me', '!', 'Am', 'I', 'ruining', 'my', 'life', '?', 'So', 'forcing', 'her', 'to', 'marry', 'Bobby', 'is', 'gon', 'na', 'make', 'that', 'happen', '?', 'Okay', 'Bobby', ',', 'why', 'don\\x92t', 'we', 'just', 'come', 'over', 'here', 'and', 'let', 'them', 'have', 'a', 'little', 'moment', '.', 'No', '!', 'Seriously', '!', 'What\\x92s', 'wrong', 'with', 'you', '?', '!', 'Phoebe', '?', 'Look', 'at', 'that', 'guy', 'by', 'the', 'window', ',', 'wow', '!', 'Oh', ',', 'what', 'is', 'wrong', 'with', 'me', 'lately', '?', 'I', 'mean', 'it\\x92s', 'like', 'every', 'guy', 'I', 'see\\x97I', 'mean', 'look', 'here', '.', 'Look', 'at', 'that', 'guy', 'for', 'example', ',', 'I', 'mean', 'normally', 'that\\x92s', 'not', 'someone', 'I', 'would-would', 'be', 'attracted', 'to', ',', 'but', 'right', 'now', ',', 'with', 'the', 'way', 'I\\x92m', 'feeling', ',', 'all', 'I', 'want', 'to', 'do', 'is', 'rip', 'off', 'his', 'sweatpants', 'and', 'fanny', 'pack', '.', 'Yeah', '.', 'Really', '?', '!', 'So', 'this', 'has', 'happened', 'to', 'you', '?', 'Wow', '!', 'This', 'explains', 'so', 'much', '!', 'Last', 'weekend', ',', 'I', 'went', 'from', 'store', 'to', 'store', 'sitting', 'on', 'Santa\\x92s', 'lap', '.', 'Ah', '.', 'Well', ',', 'y\\x92know', 'what', '?', 'I', 'go', 'see', 'my', 'doctor', 'tomorrow', ',', 'I\\x92ll', 'ask', 'her', 'about', 'this', '.', 'Maybe', 'she', 'can', 'give', 'me', 'a', 'pill', 'or', 'something', '.', 'Hi', '!', 'Oh', ',', 'okay', '.', 'Hey', ',', 'can', 'I', 'ask', 'you', 'a', 'question', '?', 'Was', 'it', 'me', ',', 'or-or', 'was', 'the', 'guy', 'who', 'took', 'my', 'blood', 'sample', 'really', 'cute', '?', 'Y\\x92know', 'who', 'I\\x92m', 'talking', 'about', ',', 'bald', 'haircut', ',', 'hairy', 'fingers', 'Yes', ',', 'you', 'are', '.', 'Oh', ',', 'really', ',', 'really', 'good', '.', 'But', 'enough', 'about', 'me', ',', 'come', 'on', '!', 'Where-where', 'are', 'you', 'from', '?', 'What', 'do', 'you', 'do', '?', 'Right', '!', 'Right', '!', 'I-I', 'actually', 'meant', 'in', 'your', 'spare', 'time', ',', 'do', 'you', 'cook', '?', 'Do', 'you', 'ski', '?', 'Or', 'do', 'you', 'just', 'hang', 'out', 'with', 'your', 'wife', 'or', 'girlfriend', '?', 'Oh', ',', 'I', 'love', 'to', 'ski', '!', 'How', 'amazing', 'is', 'this', '?', '!', 'No', '.', 'I\\x92m', 'very', 'comfortable', '.', 'No', '!', 'Shoot', ',', 'Dr.', 'Schiff', 'what', 'kind', 'of', 'question', 'is', 'that', '?', '!', 'Well', 'would', 'you', 'like', 'me', 'to', 'lie', 'down', 'on', 'the', 'table', '?', 'Do', 'you', 'feel', 'it', 'too', '?', 'Hi', '.', 'Well', ',', 'let\\x92s', 'see', '.', 'Uh', ',', 'they', 'gave', 'me', 'cute', 'doctor', 'today', 'and', 'in', 'the', 'middle', 'of', 'the', 'exam', 'I', 'put', 'my', 'pinky', 'in', 'his', 'chin', 'dimple', '.', 'Okay', ',', 'even', 'this', 'is', 'turning', 'me', 'on', '!', 'Oh', 'hey', '!', 'Hey', 'Ross', '!', 'Hey', 'how\\x92s', 'it', ',', 'how\\x92s', 'it', 'going', 'with', 'you', 'and', 'Mona', '?', 'Are', 'you', 'guys', 'still', 'together', '?', 'Uh', 'Ross', '?', 'You', 'asked', 'me', 'that', '.', 'I', 'think', ',', 'if', 'it', 'was', 'a', 'little', 'colder', 'in', 'here', 'I', 'could', 'see', 'your', 'nipples', 'through', 'that', 'sweater', '.', 'You', 'gave', 'her', 'a', 'key', 'to', 'your', 'apartment', '?', '!', 'Hey', '!', 'Yeah', '.', 'What', '?', 'Phoebe', 'no', '!', 'No', '!', 'I', 'do', 'not', 'care', 'what', 'my', 'hormones', 'are', 'doing', ',', 'I', 'am', 'not', 'going', 'to', 'just', 'do', 'it', 'with', 'some', 'random', 'guy', '!', 'Yes', '.', 'Hi', ',', 'I\\x92d', 'like', 'to', 'order', 'a', 'pizza', '.', 'Okay', ',', 'can', 'I', 'ask', 'you', 'a', 'question', '?', 'Is-is', 'the', 'cute', 'blond', 'guy', 'delivering', 'tonight', '?', 'Very', '<', 'i', '>', 'Ambercrombie', '&', 'amp', ';', 'Fitch', '<', '/i', '>', '.', 'I\\x92ll', 'call', 'you', 'back', '.', 'It\\x92s', 'just', 'the', 'pizza', 'place', '.', 'I\\x92m', 'sorry', 'honey', ',', 'I\\x92m', 'just', 'having', 'a', ',', 'having', 'a', 'rough', 'day', '.', 'Oh', 'you', 'really', ',', 'you', 'really', 'just', 'don\\x92t', 'want', 'to', 'hear', 'about', 'it', '.', 'Okay', ',', 'it\\x92s', 'just\\x97and', 'this', 'is', 'really', 'embarrassing\\x97but', 'lately', 'with', 'this', 'whole', 'pregnancy', 'thing', 'I\\x92m', 'just', 'finding', 'myself', 'how', 'do', 'I', 'put', 'this', 'umm', ',', 'erotically', 'charged', '.', 'Yeah', '.', 'So', 'y\\x92know', ',', 'I', 'have', 'all', 'of', 'these', 'feelings', 'and', 'I', 'don\\x92t', 'know', 'what', 'to', 'do', 'about', 'them', ',', 'because', 'I', 'can\\x92t', 'date', 'like', 'a', 'normal', 'person', ',', 'which', 'is', 'fine', 'because', 'I', 'don\\x92t', 'need', 'a', 'relationship', ',', 'I', 'mean', 'all', 'I', 'really', 'want', 'is', 'one', 'great', 'night', '.', 'Just', 'sex', ',', 'y\\x92know', '?', 'No', 'strings', 'attached', ',', 'no', 'relationship', ',', 'just', 'with', 'someone', 'that', 'I', 'feel', 'comfortable', 'with', 'and', 'who', 'knows', 'what', 'he\\x92s', 'doing', '.', 'For', 'just', 'one', 'great', 'night', ',', 'I', 'mean', 'is', 'that', 'really', 'so', 'hard', 'to', 'find', '.', 'So', 'how', 'was', 'your', 'day', '?', 'Well', ',', 'I', 'got', 'ta', 'get', 'up', 'early', 'and', 'it\\x92s', 'almost', 'seven', 'o\\x92clock', '.', 'Okay', ',', 'good', 'night', '!', 'I', 'didn\\x92t', 'ask', 'you', 'to', 'do', 'it', '!', 'You\\x92re', 'Joey', '!', 'Right', 'back', 'at', 'ya', '!', 'And', 'so', 'bad', '.', 'I', 'don\\x92t', 'even', 'know', 'what', 'you\\x92re', 'talking', 'about', 'because', 'I', 'didn\\x92t', 'ask', 'you', 'to', 'do', 'anything', '!', 'No', '!', 'That\\x92s', 'the', 'end', 'of', 'this', 'conversation', '!', 'They', 'made', 'you', 'head', 'of', 'the', 'department', '!', 'Yeah', '.', 'Uh', ',', 'Paul\\x92s', 'Café', '.', 'They', 'got', 'great', 'food', 'and', 'it\\x92s', 'really', 'romantic', '.', 'Yeah', '!', 'Oh', ',', 'and', 'then', 'afterwards', 'you', 'can', 'take', 'her', 'to', 'the', '<', 'i', '>', 'Four', 'Seasons', '<', '/i', '>', 'for', 'drinks', '.', 'Or', 'you', 'go', 'downtown', 'and', 'listen', 'to', 'some', 'jazz', '.', 'Or', 'dancing\\x97Oh', '!', 'Take', 'her', 'dancing', '!', 'Ooh', ',', 'I', 'miss', 'dating', '.', 'Gettin\\x92', 'all', 'dressed', 'up', 'and', 'going', 'to', 'a', 'fancy', 'restaurant', '.', 'I\\x92m', 'not', 'gon', 'na', 'be', 'able', 'to', 'do', 'that', 'for', 'so', 'long', ',', 'and', 'it\\x92s', 'so', 'much', 'fun', '!', 'I', 'mean', 'not', 'that', 'sitting', 'at', 'home', 'worrying', 'about', 'giving', 'birth', 'to', 'a', 'sixteen', 'pound', 'baby', 'is', 'not', 'fun', '.', 'Huh', '?', 'What', '?', '!', 'Joey', ',', 'you', 'don\\x92t', 'want', 'to', 'go', 'on', 'a', 'date', 'with', 'a', 'pregnant', 'lady', '.', 'Okay', '!', 'I\\x92ll', 'go', 'with', 'ya', '!', 'I\\x92ll', 'go', '!', 'I\\x92ll', 'go', 'with', 'ya', '.', 'All', 'right', '?', 'Joey', '?', 'Could', 'you', 'get', 'that', '?', 'What', 'are', 'you', 'doing', 'here', '?', 'I', 'thought', 'you', 'were', 'in', 'your', 'room', '?', 'Ohh', ',', 'Lilies', '.', 'Joey', ',', 'they\\x92re', 'my', 'favorite', '.', 'Thank', 'you', '.', 'Oh', 'man', '!', 'This', 'is', 'so', 'great', '!', 'I', 'actually', 'feel', 'like', 'I\\x92m', 'going', 'on', 'a', 'real', 'date', '!', 'Although', ',', 'I', 'have', 'a', 'hint', 'of', 'morning', 'sickness', ',', 'and', 'I\\x92m', 'wearing', 'underwear', 'that', 'goes', 'up', 'to', 'about', 'there', '.', 'Yeah', ',', 'actually', 'that\\x92s', 'my', 'roommate\\x92s', '.', 'Ah', 'yes', ',', 'but', 'he\\x92s', 'very', 'protective', 'of', 'me', 'so', 'you\\x92d', 'better', 'watch', 'yourself', '.', 'Hm-mmm', '.', 'Yeah', ',', 'but', 'I\\x92m', 'pretty', 'sure', 'he\\x92s', 'gay', '.', 'Now', 'the', 'filet', 'mignon', ',', 'what', 'comes', 'with', 'that', '?', 'Emmm', '.', 'Now', ',', 'instead', 'of', 'the', 'vegetables', ',', 'is', 'there', 'anyway', 'I', 'can', 'substitute', 'the', 'three-pound', 'lobster', '?', 'Wow', '!', 'This', 'is', 'shaping', 'up', 'to', 'be', 'a', 'pretty', 'good', 'date\\x97Oh', ',', 'I', 'almost', 'forgot', '.', 'I', 'didn\\x92t', 'pay', 'you', 'the', 'rent', 'check', '.', 'Okay', '.', 'Wow', '!', 'So', 'I', 'get', 'to', 'see', 'what', 'Joey', 'Tribbiani', 'is', 'like', 'on', 'a', 'date', '.', 'So', 'do', 'you', 'have', 'any', 'moves', '?', 'I', 'knew', 'it', '!', 'I', 'knew', 'it', '.', 'Come', 'on', 'tell', 'me', 'your', 'moves', '.', 'Oh', 'my', 'God', '.', 'And', 'that', 'works', '?', '!', 'Oh', ',', 'you', 'poor', 'little', 'famous', 'man', '.', 'Oh', 'my', 'God', '!', 'Wow', '!', 'That', 'was', 'fantastic', ',', 'I', 'almost', 'leaned', 'in', '.', 'I', 'really', 'almost', 'did', '!', 'Alright', '.', 'So', 'where\\x92d', 'you', 'grow', 'up', '?', 'Come', 'on', ',', 'just', 'answer', 'the', 'question', '!', 'And', 'so', 'were-were', 'you', 'close', 'to', 'your', 'parents', '?', 'Why', 'not', '?', 'Oh', '.', 'It\\x92s', 'got', 'ta', 'be', 'rough', '.', 'Huh', '?', 'Thank', 'you', '!', 'And', 'now', 'if', 'you\\x92ll', 'excuse', 'me', ',', 'I', 'have', 'to', 'go', 'to', 'the', 'rest', 'room', '.', 'And', 'now', 'you\\x92re', 'watching', 'me', 'walk', 'away', '.', 'I', 'am', 'not', 'gon', 'na', 'answer', 'that', '!', 'No', 'one', '!', 'They', 'are', 'my', 'friends', ',', 'I', 'wouldn\\x92t', 'punch', 'any', 'of', 'them', '.', 'Yeah', ',', 'but', 'I', 'don\\x92t', 'know', 'why', '.', 'Look', 'at', 'me', ',', 'I\\x92m', 'having', 'such', 'a', 'wonderful', 'time', '!', 'I', 'know', '!', 'Joey', ',', 'I', 'think', 'everyone', 'saw', 'the', 'wine', 'come', 'out', 'of', 'your', 'nose', '.', 'Well', 'that', 'is', 'because', 'you', 'have', 'never', 'been', 'on', 'a', 'date', 'with', 'me', 'before', '.', 'All', 'right', ',', 'now', 'don\\x92t', 'judge', 'me', '.', 'I', 'normally', 'wait', 'until', 'my', 'date', 'leaves', ',', 'but', 'you', 'live', 'here', '.', 'I\\x92m', 'ripping', 'into', 'this', 'swan', '.', 'So', 'tell', 'me', ',', 'what', 'are', 'Joey', 'Tribbiani\\x92s', 'end', 'of', 'the', 'night', 'moves', '?', 'How', 'do', 'you', 'do', 'that', '?', 'Oh', 'my', 'God', '!', 'No', ',', 'I', 'don\\x92t', 'want', 'to', 'tell', 'you', '.', 'Because', 'it\\x92s', 'embarrassing', '.', 'Okay', '.', 'All', 'right', ',', 'stand', 'up', '.', 'Well', ',', 'when', 'we\\x92re', 'at', 'the', 'door', ',', 'I', 'lightly', 'press', 'my', 'lips', 'against', 'his', ',', 'and', 'then', 'move', 'into', 'his', 'body', 'just', 'for', 'a', 'second', ',', 'and', 'then', 'I', 'make', 'this', 'sound', ',', '``', 'Hmmm', '.', \"''\", 'Okay', ',', 'I', 'know', 'it', 'doesn\\x92t', 'sound', 'like', 'anything', ',', 'but', 'I', 'swear', 'it', 'works', '.', 'All', 'right', ',', 'I', 'got', 'ta', 'go', 'to', 'bed', '.', 'Honey', ',', 'I', 'had', 'such', 'a', 'wonderful', 'time', '.', 'you', 'were', '50', 'minutes', 'late', 'to', 'the', 'class', ',', 'what', 'did', 'you', 'crawl', 'there', '?', '!', 'Well', ',', 'why', 'didn\\x92t', 'you', 'just', 'take', 'a', 'cab', '?', 'Well', 'you\\x92re', 'not', 'gon', 'na', 'be', 'able', 'to', 'keep', 'doing', 'this', '.', 'You', 'what', '?', 'Right', '.', 'Wow', '!', 'Hi', '!', 'Hey', ',', 'remember', 'how', 'last', 'night', 'we', 'were', 'talking', 'about', 'that', 'movie', '<', 'i', '>', 'Cujo', '<', '/i', '>', '?', 'Relax', '!', 'It\\x92s', 'not', 'like', 'it\\x92s', '<', 'i', '>', 'Citizen', 'Kane', '<', '/i', '>', '!', 'Yeah', 'I', 'know', 'it\\x92s', 'really', 'boring', ',', 'but', 'it\\x92s', 'like', 'a', 'big', 'deal', '.', 'Anyway', ',', 'I', 'was', 'thinking', 'about', 'renting', '<', 'i', '>', 'Cujo', '<', '/i', '>', 'sometime', '.', 'Well', 'don\\x92t', 'you', 'have', 'that', 'big', 'date', 'tonight', '?', 'Hey', 'Joey', ',', 'can', 'I', 'ask', 'you', 'something', '?', 'After', 'our', 'date', 'last', 'night', ',', 'did', 'you', 'feel', 'a', 'little', 'weird', '?', 'I', 'don\\x92t', 'know', '!', 'I\\x92m-I\\x92m', 'kinda', 'thinking', 'it-it', 'was', 'the', 'lobster', 'Yeah', ',', 'I', 'mean', 'I', 'was', 'up', 'sick', 'all', 'night', '.', 'Really', '?', '!', 'How', 'come', 'we', 'didn\\x92t', 'cross', 'paths', '?', 'Oh', 'God', '!', 'Thank', 'God', 'you\\x92re', 'home', '!', 'I\\x92m', 'watching', '<', 'i', '>', 'Cujo', '<', '/i', '>', '.', 'Yes', '!', 'But', 'what', 'is', 'wrong', 'with', 'this', 'dog', '?', '!', 'No', '!', 'No', '!', 'Seriously', ',', 'what\\x92s', 'wrong', 'with', 'the', 'dog', '?', '!', 'Wait', 'a', 'minute', ',', 'what', 'are', 'you', 'doing', 'home', 'so', 'early', '?', 'What', 'happened', 'to', 'your', 'date', '?', 'Oh', '.', 'Do', 'you', 'want', 'to', 'watch', 'the', 'rest', 'of', 'the', 'movie', 'with', 'me', '?', 'Y\\x92know', ',', 'I', 'never', 'thought', 'I\\x92d', 'say', 'this', 'about', 'a', 'movie', ',', 'but', 'I', 'really', 'hope', 'this', 'dog', 'dies', '.', 'What', 'are', 'you', 'doing', 'over', 'there', '?', 'Come', 'sit', 'here', ',', 'you', 'protect', 'me', '.', 'Okay', '.', 'Okay', ',', 'that\\x92s', 'him', '!', 'That\\x92s', 'him', '!', 'That\\x92s', 'Cujo', '!', 'That\\x92s', 'Cujo', '!', 'Hi', ',', 'sweetie', '.', 'Hi', '!', 'Oh', ',', 'Ross', ',', 'don\\x92t', 'forget', ',', 'we', 'have', 'that', 'doctor\\x92s', 'appointment', 'tomorrow', '!', 'Yep', '!', 'Happy', 'and', 'healthy', '!', 'And', 'cute', '!', 'Popular', '.', 'Oh', 'yeah', '!', 'I\\x92ve', 'come', 'up', 'with', 'a', 'bunch', 'of', 'ideas', '!', 'Really', '?', '!', 'Okay', '!', 'I', 'was', 'thinking', 'if', 'it\\x92s', 'a', 'girl', ',', 'how', 'about', 'Sandrine', '?', 'It\\x92s', 'French', '.', 'Okay', 'fine', ',', 'what', 'do', 'you', 'have', '?', 'Wow', ',', 'oh', 'my', 'God', ',', 'our', 'child', 'will', 'be', 'beaten', 'to', 'death', 'in', 'the', 'schoolyard', '.', 'I\\x92m', 'really', ',', 'really', 'not', '.', 'All', 'right', '.', 'Yeah', '!', 'I', 'don\\x92t', 'think', 'you\\x92re', 'going', 'to', 'need', 'it', 'though', '.', 'Okay', ',', 'check', 'this', 'out', '.', 'If', 'it\\x92s', 'a', 'girl', ',', 'Rain', '.', 'Why', '?', 'Ross', ',', 'why', 'do', 'you', 'hate', 'our', 'child', '?', 'Okay', ',', 'James', '.', 'But', 'only', 'if', 'it\\x92s', 'a', 'girl', '.', 'Oh', '!', 'I\\x92m', 'sorry', '!', 'Are', 'we', 'having', 'an', '89-year-old', '?', 'How', 'about', 'Dayton', '?', 'Veto', '.', 'Sawyer', '?', 'Veto', '.', 'Oh', ',', 'oh', 'my', 'God', '!', 'I', 'can', 'practically', 'hear', 'the', 'mahjong', 'tiles', '!', 'But', 'you', 'have', 'it', 'right', 'there', 'in', 'that', 'file', '?', 'You', 'could', 'tell', 'us', 'whether', 'it\\x92s', 'a', 'boy', 'or', 'a', 'girl', '?', 'Dayton', 'or', 'Sandrine', '?', 'Phoebe', 'or', 'Phoebo', '?', 'Right', '.', 'Right', '.', 'So', ',', 'which', 'of', 'these', 'babies', 'do', 'you', 'think', 'is', 'the', 'ugliest', '?', 'Third', 'one', 'from', 'the', 'left', '?', 'What', '?', '!', 'I', 'didn\\x92t', '!', 'Okay', 'fine', ',', 'I', 'did', '.', 'But', 'I', 'didn\\x92t', 'see', 'anything', ',', 'I', 'swear', '.', 'Okay', ',', 'but', 'Ross', 'just', 'listen', 'to', 'me', 'But', 'I', 'couldn\\x92t', 'even', 'if', 'I', 'wanted', 'to', ',', 'because', 'I', 'don\\x92t', 'know', '!', 'I', 'swear', ';', 'I', 'didn\\x92t', 'see', 'anything', ',', 'and', 'I', 'don\\x92t', 'want', 'to', 'know', '!', 'It', 'was', 'just', 'a', 'momentary', 'lapse', '.', 'Okay', ',', 'a', 'couple', 'months', 'late', 'on', 'the', 'lecture', ',', 'Ross', '.', 'Hey', '.', 'You', 'know', 'what', '?', 'I\\x92ve', 'been', 'thinking', 'about', 'it', '.', 'I\\x92m', 'really', 'coming', 'around', 'on', 'the', 'name', 'Ruth', '.', 'I', 'think', 'I', 'would', 'actually', 'consider', 'naming', 'our', 'child', 'that', '.', 'I', 'didn\\x92t', 'see', 'anything', '!', 'I', 'actually', 'changed', 'my', 'mind', 'about', 'the', 'name', '.', 'I', 'would\\x97Sequoia', '?', 'Fine', '.', 'But', 'Ross', ',', 'you', 'want', 'the', 'name', 'Ruth', '!', 'What', '?', 'Ross', ',', 'I', 'swear', ',', 'I', 'don\\x92t', 'know', '.', 'A', 'what', '?', '!', 'We\\x92re', 'having', 'a', 'girl', '?', 'That\\x92s', 'what', 'you', 'just', 'said', '!', 'You', 'said', 'girl', '!', 'I\\x92m', 'not', '!', 'We\\x92re', 'having', 'a', 'girl', '!', 'Sometimes', 'I', 'can\\x92t', 'believe', 'it\\x92s', 'with', 'you\\x97But', 'still', '!', 'We\\x92re', 'having', 'a', 'girl', '!', 'Oh', ',', 'yes', '!', 'We\\x92ll', 'have', 'ourselves', 'a', 'little', 'baby', 'Ruth', 'Yes', ',', 'please', '.', 'Hey', '!', 'Ross', 'and', 'I', 'were', 'looking', 'for', 'you', '!', 'What', 'are', 'we', 'all', 'doing', 'in', 'here', '?', 'Oh', ',', 'my', '!', 'No', ',', 'I', 'was', 'waiting', 'for', 'you', '!', 'We\\x92re', 'having', 'a', 'girl', '.', 'Hi', ',', 'sweetie', '.', 'Oh', 'Joey', ',', 'I\\x92m', 'so', 'happy', 'things', 'worked', 'out', 'for', 'us', 'that', 'we\\x92re', 'having', 'this', 'baby', 'together', '.', 'I', 'love', 'you', 'so', 'much', '.', 'And', 'I', 'hope', 'it\\x92s', 'not', 'an', 'inappropriate', 'time', 'to', 'say', 'this', 'but', ',', 'you\\x92re', 'the', 'best', 'sex', 'I', 'ever', 'had', '.', 'Joey', '!', 'Joey', '!', 'Come', 'feel', 'this', '!', 'Come', 'feel', 'my', 'belly', '!', 'Joey', '!', 'The', 'baby', 'is', 'kicking', 'for', 'the', 'first', 'time', '!', 'Will', 'you', 'please', 'come', 'feel', 'this', '?', '!', 'Yes', '!', 'Oh', ',', 'okay', '!', 'Aw', ',', 'it\\x92s', 'unbelievable', '!', 'Wow', '!', 'She', 'is', 'kicking', 'so', 'much', '!', 'Oh', ',', 'she\\x92s', 'like', 'umm', 'oh', 'who\\x92s', 'that', 'kind', 'of', 'annoying', 'girl', 'soccer', 'player', '?', 'Mia', 'Hamm', '!', 'Oh-oh', '!', '!', 'One', 'hand', 'on', 'the', 'sheet', 'Joe', '!', 'It\\x92s', 'not', 'kicking', 'right', 'now', '.', 'Although', 'we', 'would', 'love', 'to', 'see', 'you', 'do', 'that', 'again', '.', 'Last', 'night', '!', 'I', 'just', 'felt', 'it', 'and', 'I', 'went', 'into', 'Joey\\x92s', 'room', 'and', 'he', 'was', 'sleeping', 'Joey', '.', 'Joey', ',', 'something', 'feels', 'weird', 'and', 'not', 'good', 'weird', '.', 'I', 'don\\x92t\\x97Whoa', '!', '!', 'Really', '?', 'Okay', '.', 'Oh', 'God\\x97Ow', '!', '\\x97Oo', '!', 'Hmm', ',', 'mild', 'discomfort', '.', 'So', 'I', 'take', 'it', 'you\\x92ve', 'had', 'one', 'of', 'these', 'Braxton', 'thingies', '?', 'Thank', 'you', 'doctor', '.', 'Oh', 'thank', 'you', 'for', 'being', 'so', 'nice', 'and', 'calm', '.', 'But', 'wait', 'you', 'said', 'everything', 'was', 'gon', 'na', 'be', 'okay', '.', 'But', 'I\\x97But', 'everything', 'is', 'okay', '.', 'I\\x92m', 'fine', '!', 'Yes', '!', 'Yes', '!', 'I', 'got', 'half', 'a', 'mind', 'to', 'contract', 'that', 'doctor\\x92s', 'uterus', 'though', '.', 'Mild', 'discomfort', ',', 'what\\x92s', 'he', 'talking', 'about', '?', 'Yeah', ',', 'everything\\x92s', 'fine', '!', 'Okay', ',', 'no', 'uterus', ',', 'no', 'opinion', '.', 'Oh', 'you', 'went', 'to', 'the', 'movies', 'by', 'yourself', '?', 'Oh', ',', 'I', 'got', 'ta', 'go', 'back', 'in', 'there', '.', 'No', ',', 'everything\\x92s', 'fine', '.', 'I', 'just', 'got', 'ta', 'go', 'back', 'I-I', 'forgot', 'my', 'underwear', '.', 'Hey', 'Ross', '!', 'Check', 'it', 'out', '!', 'I', 'learned', 'a', 'new', 'trick', '!', 'Ohh', '!', 'That\\x92s', 'so', 'sweet', 'of', 'you', '!', 'Oh', 'yum', '!', 'Did', 'you', 'put', 'pickles', 'on', 'this', '?', 'Oh', 'Ross', '!', '!', 'Yeah', ',', 'I\\x92ll', 'be', 'fine', '.', 'But', 'could', 'someone', 'please', 'make', 'sure', 'that', 'sandwich', 'is', 'gone', 'when', 'I', 'get', 'out', 'there', '?', 'Well', ',', 'if', 'anyone', 'is', 'keeping', 'score', ',', 'I', 'no', 'longer', 'eat', 'tuna', '.', 'What\\x92s', 'up', '?', 'Are', 'you', 'breaking', 'up', 'with', 'us', '?', 'Yeah', '?', 'Are', 'you', 'asking', 'me', 'to', 'move', 'out', '?', 'Do', 'you', 'not', 'want', 'me', 'here', '?', 'But', 'Joey', ',', 'I', 'don\\x92t', 'think', 'Ross', 'wants', 'me', 'to', 'move', 'into', 'his', 'apartment', 'and', 'disrupt', 'his', 'life', 'like', 'that', '.', 'I', 'mean\\x97\\x97Or', 'he', 'does', '.', 'But', 'Ross', ',', 'its', 'you', 'and', 'me', '!', 'I', 'don\\x92t', 'know', '.', 'Is', 'it', 'crazy', '?', 'Okay', ',', 'let\\x92s', 'do', 'it', '.', 'I\\x92ll', 'move', 'in', '.', 'Yeah', '.', 'Hi', '!', 'Hey', ',', 'Happy', 'Valentine\\x92s', 'Day', '!', 'It\\x92s', 'good', '.', 'Except', 'he', 'makes', 'us', 'watch', 'the', '<', 'i', '>', 'Discovery', 'Channel', 'all', 'day', 'long', '.', 'Did', 'you', 'know', 'that', 'something', 'really', 'boring', 'happened', 'to', 'someone', 'really', 'ugly', 'in', 'the', 'Middle', 'Ages', '?', 'Oh', ',', 'thank', 'you', '.', 'I\\x92ll', 'see', 'you', 'guys', 'later.', '<', '/i', '>', 'Hi', '.', 'I', 'accidentally', 'packed', 'these', 'with', 'my', 'stuff', '.', 'Who', 'is', 'this', '?', 'Oh', ',', 'well', ',', 'you', 'are', 'so', 'cute', '!', 'I', 'wish', 'I', 'could', 'play', 'with', 'you', 'more', ',', 'but', 'I\\x92ve', 'got', 'to', 'go', 'to', 'work', '!', 'I', 'hope', 'I', 'stop', 'talking', 'like', 'this', 'before', 'my', 'marketing', 'meeting', ',', 'yes', 'I', 'do', '.', 'Yes', 'I', 'do', '.', 'Bye-bye', ',', 'Joey', '.', 'Oh', ',', 'I', 'seriously', 'can\\x92t', 'stop', 'it', '.', 'Oh', ',', 'I\\x92ve', 'got', 'big', 'Valentine\\x92s', 'plans', '!', 'I\\x92ve', 'got', 'my', 'Chinese', 'food', 'on', 'the', 'way', ',', 'and', 'the', 'rest', 'of', 'your', 'saltwater', 'taffy', '!', 'Ross', ',', 'we', 'actually', 'watched', 'the', 'documentary', 'together', '.', 'Ooh', '!', 'My', 'Chinese', 'food', '!', 'Let', 'me', 'get', 'my', 'cash', '!', 'Oh', ',', 'hey', ',', 'Mona', '!', 'I\\x92ll', 'be', 'watching', 'TV', 'if', 'anybody', 'needs', 'me', '.', 'I\\x92m', 'not', 'here', '!', 'That\\x92s', 'just', 'my', 'Chinese', 'food', '!', 'You', 'know', 'what', 'I\\x92m', 'going', 'to', 'do', '?', 'I\\x92m', 'going', 'to', 'get', 'in', 'my', 'sweats', ',', 'and', 'eat', 'this', 'in', 'bed', '!', 'I\\x92m', 'just', 'going', 'to', 'grab', 'the', 'phone', '.', 'Oh', ',', 'I\\x92m', 'sorry', '!', 'Do', 'you', 'need', 'the', 'phone', '?', 'But', ',', 'but', ',', 'Mona', ',', 'I', 'live', 'here', '.', 'Hi', '!', 'I\\x92m', 'so', 'sorry', 'to', 'barge', 'in', 'on', 'your', 'Valentine\\x92s', ',', 'but', 'I', 'had', 'to', 'get', 'away', 'from', 'all', 'the', 'yelling', '.', 'Mona', 'is', 'dumping', 'Ross', '.', 'Why', '?', 'You', 'saw', 'it', '?', 'Is', 'it', 'scary', '?', 'Well', ',', 'now', ',', 'wait', '.', 'Now', 'I\\x92m', 'all', 'freaked', 'out', '.', 'Come', 'on', ',', 'you', 'guys', 'will', 'watch', 'it', 'with', 'me', '.', 'C\\x92mon', ',', 'seriously', ',', 'you', 'guys', ',', 'you\\x92re', 'not', 'going', 'to', 'make', 'me', 'watch', 'this', 'alone', '!', 'Okay', '.', 'Ooh', ',', 'my', '!', 'Woah', '!', 'Why', 'is', 'that', 'baby', 'torturing', 'that', 'woman', '?', '!', 'Uh', '!', 'It\\x92s', 'horrible', '!', 'Oh', ',', 'my', 'God', '!', 'What', '?', 'Did', 'her', 'ass', 'explode', '?', '!', 'Oh', ',', 'screw', 'you', 'guys', ',', 'you', 'don\\x92t', 'have', 'to', 'do', 'it', '!', 'Oh-oh', '!', 'Okay', ',', 'she\\x92s', 'kicking', '!', 'Whoa', '!', '!', 'Wow', 'that', 'was', 'a', 'big', 'one', '.', 'Hi', '!', 'Oh', 'yes', 'I', 'do', '.', 'I', 'do', '.', 'I', 'believe', 'that', 'there', 'is', 'one', 'perfect', 'person', 'out', 'there', 'for', 'everyone', '.', 'And', 'do', 'you', 'know', 'how', 'you', 'find', 'him', '?', 'You', 'stop', 'looking', 'for', 'him', '.', 'That\\x92s', 'why', 'I', 'stopped', 'looking', 'for', 'Russell', 'Crowe', '.', 'He\\x92ll', 'find', 'me', '.', 'Well', ',', 'what\\x92s', 'he', 'like', '?', '!', 'Uh-huh', '.', 'Of', 'course', ',', 'of', 'course', '.', 'Oh', 'sure', '.', 'Older', '?', 'Oh', ',', 'I', 'was', 'just', 'gon', 'na', 'ask', '!', 'Oh', ',', 'it\\x92s', 'so', 'sad', 'they', 'never', 'had', 'a', 'chance', 'to', 'meet', '.', 'Joey', '?', 'What\\x92s', 'up', '?', 'Okay', 'what\\x92s', 'up', '?', 'Well', 'honey', ',', 'I\\x92m', 'late', 'for', 'a', 'meeting', '.', 'So', 'can', 'you', 'just', 'make', 'it', 'quick', '?', 'Sure', '!', 'That', 'sounds', 'great', '!', 'Just', 'leave', 'me', 'a', 'message', 'and', 'tell', 'me', 'where', 'to', 'meet', 'you', '.', 'Okay', '?', 'and', 'I', 'know', 'Chandler', 'is', 'kidding', 'but', 'it', 'happens', 'every', 'time', 'he', 'touches', 'my', 'stomach', '.', 'I', 'mean', 'I\\x92m', 'really', 'worried', 'the', 'baby\\x92s', 'not', 'going', 'to', 'like', 'him', '.', 'Are', 'you', 'okay', '?', 'No', '.', 'Not-not', 'for', 'me', ',', 'but', 'why', 'don\\x92t', 'you', 'take', 'off', 'your', 'sweater', '?', 'Oh', 'my', 'God', '!', 'Really', '?', '!', 'Can', 'I', 'see', 'it', '?', 'Huh', '.', 'Wow', ',', 'I', 'wouldn\\x92t', 'think', 'Hobbs', 'would', 'like', 'that', 'so', 'much', '.', 'Um', ',', 'seven', 'e-e-eight', ',', 'eight', 'years', '.', 'Wow', '.', 'Yeah', '.', 'So', 'you', 'were', 'saying', '?', 'Okay', ',', 'well', 'you', 'had', 'asked', 'me', 'how', 'long', 'we', 'had', 'known', 'each', 'other', ',', 'and', 'I', 'said', ',', '``', 'Eight', 'years', '.', \"''\", 'And', 'the', 'um', ',', 'waiter', 'came', 'over', 'and', 'cut', 'his', 'tip', 'in', 'half', ',', 'and', 'umm', 'now', 'here', 'we', 'are', '.', 'What', '?', 'Who', 'are', 'you', 'talking', 'too', '?', 'Oh', ',', 'you\\x92re', 'kidding', '!', 'Oh', ',', 'it\\x92s', 'a', 'joke', '!', 'It\\x92s', 'funny', '.', 'It\\x92s', 'funny', '.', 'I', 'don\\x92t', 'get', 'it', '.', 'Oh', '.', 'Okay', '.', 'Umm', 'I-I', 'uh', ',', 'wow', '.', 'Are', 'you', 'uh', 'How', 'did', 'umm', 'When', '?', 'Wow', '!', 'Wow', '.', 'Wow', '.', 'Wow', ',', 'it', 'is', 'hot', 'in', 'here', '.', 'Joey', ',', 'Joey', 'I', 'love', 'you', 'so', 'much', ',', 'but', 'I', 'Joey', '.', 'No', '!', 'Joey', 'please', '!', 'Please', 'don\\x92t', '!', 'Please', 'don\\x92t', 'leave', 'like', 'this', '!', 'Now', 'come', 'on', ',', 'you', 'can', 'not', 'do', 'this', 'to', 'a', 'pregnant', 'woman', '!', 'Can', 'I', '?', 'Oh', 'Joey', 'honey', 'I', 'don\\x92t', 'I', 'don\\x92t', 'want', 'to', 'lose', 'I\\x92m', 'so', 'sorry', '.', 'Yeah', ',', 'that', 'was', 'a', 'real', 'good', 'one', '.', 'Joey', '?', 'Are', 'you', 'in', 'there', '?', 'Hey', '!', 'Is', 'Joey', 'here', '?', 'Well', ',', 'at', 'least', 'you', 'make', 'each', 'other', 'laugh', '.', 'Well', ',', 'I', 'haven\\x92t', 'seen', 'him', 'since', 'that', 'night', 'that', 'he', 'told', 'me', 'how', 'he', 'y\\x92know', 'I', 'don\\x92t', 'know', ',', 'I', 'think', 'he\\x92s', 'avoiding', 'me', '.', 'Why', 'is', 'that', 'bagel', 'on', 'the', 'floor', '?', 'Ew', ',', 'was', 'Chandler', 'naked', '?', 'Sort', 'of', 'like', 'a', ',', 'like', 'a', 'ring', 'toss', 'kind', 'of', 'situation', '?', 'All', 'right', '.', 'Well', 'listen', ',', 'if', 'you', 'see', 'Joey', 'will', 'you', 'just', 'tell', 'him', 'uh', 'tell', 'him', 'I', 'miss', 'him', '.', 'Okay', ',', 'I\\x92m', 'done', '.', 'Do', 'mine', '.', 'Ah', '.', 'Well', ',', 'I', 'have', 'been', 'spending', 'a', 'lot', 'of', 'time', 'in', 'the', 'lab', '.', 'Well', 'just', 'ask', 'Mona', 'to', 'give', 'it', 'back', '!', 'Hi', '!', 'Hi', '.', 'So', 'I', 'thought', 'Joey', 'and', 'I', 'would', 'be', 'okay', 'once', 'we', 'hung', 'out', ',', 'but', 'it\\x92s', 'not', 'even', 'like', 'we', 'know', 'how', 'to', 'be', 'with', 'each', 'other', 'anymore', '.', 'How', 'do', 'you', 'know', 'that', '?', 'What', 'if', 'it', 'just', 'gets', 'worse', 'and', 'worse', 'and', 'worse', ',', 'to', 'the', 'point', 'where', 'we', 'can\\x92t', 'even', 'be', 'in', 'the', 'same', 'room', 'with', 'each', 'other', '?', '!', 'Oh', 'my', 'God', '!', '!', 'You', 'guys', 'have', 'such', 'problems', '!', '!', 'I', 'feel', 'so', 'terrible', 'for', 'you', '!', 'Oh', 'yeah', '.', 'That', 'makes', 'sense', '.', 'Ooh', ',', 'I', 'can', 'do', 'that', '.', 'Hi', '.', 'What', '?', 'Yeah', 'it\\x92s', 'umm', 'Yeah', 'it\\x92s', 'uh', 'It-it\\x92s', 'y\\x92know\\x97It\\x92s', 'nothing', '.', 'Yeah\\x97No', 'wait', '!', 'Joey', 'no', 'wait', 'it', 'is', '.', 'It\\x92s', 'something', '.', 'It\\x92s-it\\x92s', 'umm', 'it\\x92s', 'my', 'boss', '.', 'Yeah', ',', 'and', 'umm', 'my', 'baby', '.', 'My', 'boss', 'wants', 'to', 'buy', 'my', 'baby', '!', 'I', 'know', 'I', 'told', 'you', ',', 'it\\x92s', 'a', 'really', 'big', 'problem', '.', 'Can', 'you', 'believe', 'that', '?', '!', 'That\\x92s', 'what', 'I', 'told', 'him', '!', 'Well', 'I\\x92ll', 'tell', 'ya', '!', 'See', 'uh', 'my-my', 'boss', 'and', 'his', 'wife\\x97They-they', 'can\\x92t', 'have', 'children', '.', 'So', 'umm', ',', 'and', 'that\\x97we', 'were', 'at', 'the', 'Christmas', 'party', ',', 'and', 'he', 'got', 'drunk', ',', 'and', 'he', 'said', 'to', 'me', ',', '``', 'Rachel', ',', 'I', 'want', 'to', 'buy', 'your', 'baby', '.', \"''\", 'Ohh', '!', 'Yeah', '!', 'Yeah', 'that-that', 'would\\x92ve', 'been', 'a', 'much', 'simpler', 'problem', '.', 'Hey', '!', 'Great', 'advice', 'on', 'that', 'Joey', 'thing', '!', 'Oh', 'it', 'was', 'perfect', '!', 'I', 'mean', 'it', 'really', 'felt', 'like', 'he', 'was', 'my', 'friend', 'again', '.', 'Oh', 'that\\x92s', 'not', 'important', '.', 'The', 'point', 'is', ',', 'I', 'really\\x97I', 'think', 'everything\\x92s', 'gon', 'na', 'be', 'okay', '.', 'Hey', '!', 'Oh', 'Joey', ',', 'honey', 'listen', ',', 'thank', 'you', 'for', 'talking', 'to', 'my', 'yesterday', 'about', 'that', 'thing', 'with', 'my', 'boss', '.', 'That', 'really', 'meant', 'a', 'lot', '.', 'What', '?', 'Whoa-whoa-whoa', ',', 'let\\x92s', 'say', 'more', '!', 'What', '?', '!', 'No', '!', 'No', ',', 'no-no-no', 'Joey', 'he', 'doesn\\x92t', 'want', 'to', 'buy', 'my', 'baby', '!', 'I', 'made', 'that', 'up', '!', 'So', 'that', 'we', 'would', 'have', 'something', 'to', 'talk', 'about', '!', 'So', 'it', 'wouldn\\x92t', 'be', 'awkward', '!', 'I', 'can\\x92t', 'believe', 'that', 'you', 'yelled', 'at', 'my', 'boss', '!', 'I\\x92m-I\\x92m', 'gon', 'na', 'lose', 'my', 'job', '!', 'What', 'am', 'I', 'going', 'to', 'do', '?', '!', 'Oh', 'Joey', ',', 'I', 'can\\x92t', 'believe', 'you', 'brought', 'my', 'boss', 'into', 'this', '!', 'I\\x92m', 'gon', 'na', 'get', 'fired', '!', 'Well', ',', 'she', 'told', 'me', 'too', '!', 'Morning', '.', 'You', 'wanted', 'to', 'see', 'me', '?', 'Okay', 'look', 'Mr.', 'Zelner', 'Yeah', '.', 'Oh', 'God', '.', 'Well', ',', 'as', 'long', 'as', 'we', 'are', 'clear', 'about', 'that', '.', 'Hi', '.', 'It\\x92s', 'all', 'gon', 'na', 'be', 'okay', '.', 'They\\x92re', 'just', 'so', 'happy', 'that', 'I\\x92m', 'not', 'suing', 'them', 'that', 'they', 'gave', 'me', 'one', 'extra', 'month', 'paid', 'maternity', 'leave', '.', 'So', 'long', 'as', 'I', 'understand', 'that', 'the', 'money', 'should', 'not', 'construed', 'as', 'a', 'down', 'payment', 'on', 'this', 'or', 'any', 'other', 'child', 'I', 'should', 'bear', '.', 'Chandler', ',', 'can', 'you', 'give', 'us', 'a', 'minute', '?', 'Yeah', '.', 'Joey', ',', 'I\\x92m', 'really', 'sorry', 'that', 'I', 'lied', 'to', 'you', '.', 'I', 'was', 'just', 'trying', 'to', 'make', 'things', 'It', 'kinda', 'worked', '.', 'I', 'mean', 'y\\x92know', ',', 'I', 'don\\x92t', 'know', 'about', 'you', 'buy', 'I', 'haven\\x92t', 'thought', 'about', 'our', 'thing', 'since', 'all', 'this', '.', 'Yeah', 'I', 'know', '!', 'I', 'miss', 'that', '.', 'My', 'gynecologist', 'tried', 'to', 'kill', 'me', '.', 'Hi', '!', 'Hey', ',', 'do', 'you', 'guys', 'have', 'any', 'extra', 'ribbon', '?', 'I', ',', 'uh', ',', 'think', 'you', 'already', 'are', '.', 'Yeah', ',', 'yeah', 'I', 'like', 'him', 'a', 'lot', '.', 'Yeah', ',', 'otherwise', 'I\\x92m', 'not', 'going', '.', 'This', 'is', 'such', 'a', 'great', 'party', '!', '35', 'years', '.', 'Very', 'impressive', ',', 'do', 'you', 'guys', 'have', 'any', 'pearls', 'of', 'wisdom', '?', 'Hmmm', '.', 'Thank', 'you', 'we\\x92re', 'so', 'excited', 'Yeah', ',', 'if', 'you\\x92re', 'going', 'to', 'do', 'the', 'ears', ',', 'you', 'might', 'as', 'well', 'take', 'a', 'pass', 'at', 'the', 'nosal', 'area', '.', 'No', ',', 'I', 'know', 'I', 'don\\x92t', 'either', ',', 'but', 'ya', 'know', 'what', ',', 'it\\x92s', 'their', 'party', ',', 'and', 'it\\x92s', 'just', 'one', 'night', '.', 'And', 'we', 'don\\x92t', 'even', 'have', 'to', 'lie', ';', 'we', 'just', 'won\\x92t', 'say', 'anything', '.', 'If', 'it', 'comes', 'up', 'again', ',', 'we\\x92ll', 'just', 'smile', '.', 'We\\x92ll', 'nod', 'along', '.', 'Oh', 'Unbelievable', '!', 'Open', 'it', '!', 'Open', 'it', '!', 'Open', 'it', '!', 'But', 'it', 'was', 'beautiful', '.', 'I', 'mean', 'it', 'was', 'small', ',', 'but', 'kind', 'of', 'spectacular', '.', 'On', 'a', 'cliff', ',', 'in', 'Barbados', ',', 'at', 'sunset', ',', 'and', 'Stevie', 'Wonder', 'sang', '<', 'i', '>', 'Isn\\x92t', 'She', 'Lovely', '<', '/i', '>', 'as', 'I', 'walked', 'down', 'the', 'aisle', '.', 'Yeah', ',', 'Stevie\\x92s', 'an', 'old', 'family', 'friend', '.', 'So', 'would', 'I', '.', 'You', 'wouldn\\x92t', 'think', 'that', 'Annie', 'Liebawitz', 'would', 'forget', 'to', 'put', 'film', 'in', 'the', 'camera', '.', 'What', '?', 'I\\x92m', 'not', 'you', '.', 'This', 'may', 'be', 'the', 'only', 'wedding', 'I', 'ever', 'have', '.', 'I', 'want', 'it', 'to', 'be', 'amazing', '.', 'Okay', ',', 'Ross', ',', 'it', 'has', 'to', 'be', 'realistic', '.', 'And', 'my', 'veil', 'was', 'lace', ',', 'made', 'by', 'blind', ',', 'Belgium', 'nuns', '.', 'Well', ',', 'not', 'at', 'first', ',', 'but', 'it', 'was', 'very', 'intricate', 'work', 'and', 'they', 'said', 'even', 'though', 'they', 'lost', 'their', 'sight', ',', 'it', 'was', 'all', 'worth', 'it', '.', 'Well', ',', 'I', 'don\\x92t', 'know', 'about', 'that', ',', 'but', 'some', 'said', 'that', 'I', 'looked', 'like', 'a', 'floating', 'angel', '.', 'Oh', 'yeah', '.', 'That\\x92s', 'a', 'great', 'story', '.', 'Shhh', '!', 'I', 'want', 'to', 'hear', 'the', 'rest', '!', 'And', 'the', 'ring', ',', 'was', 'the', 'size', 'of', 'my', 'fist', '!', 'Ross', ',', 'it', 'just', 'wouldn\\x92t', 'have', 'been', 'feasible', '.', 'It', 'was', 'really', 'fun', 'being', 'married', 'to', 'you', 'tonight', '.', 'Okay', 'Ross', ',', 'can', 'I', 'uh', ',', 'can', 'I', 'ask', 'you', 'something', '?', 'That', 'proposal', ',', 'at', 'the', 'planetarium', 'Are', 'you', 'kidding', '?', '!', 'With', 'the', ',', 'with', 'the', 'lilies', ',', 'and-and', 'the', 'song', ',', 'and', 'the', 'stars', '!', 'It', 'was', 'really', 'wonderful', '!', 'Did', 'you', 'just', 'make', 'that', 'up', '?', 'Well', ',', 'that', 'would\\x92ve', 'been', 'very', 'hard', 'to', 'say', 'no', 'too', '.', 'Goodnight', 'I', 'will', 'think', 'about', 'it', '.', 'Hi', '!', 'So', ',', 'I\\x92m', 'in', 'my', 'apartment', 'doing', 'the', '<', 'i', '>', 'Soap', 'Opera', 'Digest', '<', '/i', '>', 'crossword', 'puzzle', ',', 'and', 'guess', 'who', 'the', 'clue', 'is', 'for', 'three', 'down', '.', 'So', 'did', 'they', 'call', 'you', 'to', 'tell', 'you', 'your', 'name\\x92s', 'gon', 'na', 'be', 'in', 'this', '?', 'Oh', ',', 'come', 'on', 'Joey', '!', 'You', 'will', 'totally', 'keep', 'it', 'in', 'check', 'this', 'time', ',', 'and', 'plus', 'y\\x92know', 'the', 'publicity', 'would', 'be', 'really', 'good', 'for', 'your', 'career', '!', 'And', 'you', 'deserve', 'that', '!', 'And', 'if', 'you', 'do', 'the', 'interview', 'you', 'can', 'mention', ',', 'oh', 'I', 'don\\x92t', 'know', ',', 'gal', 'pal', 'Rachel', 'Green', '?', 'Okay', ',', 'don\\x92t', 'listen', 'to', 'him', '.', 'Please', '?', 'Come', 'on', '!', 'We', 'will', 'be', 'there', 'for', 'you', 'the', 'whole', 'time', '!', 'Just', 'remember', 'gal', 'pal', 'Rachel', 'Green', '.', 'Ha-ha', '!', 'I\\x92m', 'gon', 'na', 'be', 'in', '<', 'i', '>', 'Soap', 'Opera', 'Digest', '<', '/i', '>', '!', 'And', 'not', 'just', 'in', 'the', 'dumb', 'crossword', 'puzzle', '.', 'Seriously', ',', 'proud', 'of', 'you', '.', 'Oh', 'yeah', ',', 'I\\x92d', 'actually', 'love', 'a', 'blueberry', 'muffin', 'and', 'a', 'chamomile', 'tea', '.', 'That', 'isthe', 'Coast', 'Guard', '.', 'It\\x92s', 'a', 'trifle', '.', 'It\\x92s', 'got', 'all', 'of', 'these', 'layers', '.', 'First', 'there\\x92s', 'a', 'layer', 'of', 'ladyfingers', ',', 'then', 'a', 'layer', 'of', 'jam', ',', 'then', 'custard', ',', 'which', 'I', 'made', 'from', 'scratch', '.', 'Then', 'raspberries', ',', 'more', 'ladyfingers', ',', 'then', 'beef', 'sautéed', 'with', 'peas', 'and', 'onions', ',', 'then', 'a', 'little', 'more', 'custard', ',', 'and', 'then', 'bananas', ',', 'and', 'then', 'I', 'just', 'put', 'some', 'whipped', 'cream', 'on', 'top', '!', 'Oh', '!', 'Yay', '!', 'Look', '!', 'There\\x92s', 'a', 'piece', 'that', 'doesn\\x92t', 'have', 'floor', 'on', 'it', '!', 'Hey', ',', 'come', 'on', 'now', '!', 'Hi', '!', 'I\\x92m', 'gal', 'pal', 'Rachel', 'Green', ',', 'and', 'if', 'you', 'want', 'the', 'dirt', ',', 'I\\x92m', 'the', 'one', 'you', 'come', 'too', '.', 'This', 'might', 'be', 'Joey\\x92s', 'baby', ',', 'who', 'knows', '?', 'I\\x92m', 'just', 'kidding\\x97Seriously', ',', 'gal', 'pal', 'Rachel', 'Green', '.', 'Yeah', ',', 'that\\x92s', 'gon', 'na', 'get', 'you', 'into', '<', 'i', '>', 'Soap', 'Opera', 'Digest', '<', '/i', '>', '.', 'Well', 'I', 'I', 'would', 'just', 'like', 'to', 'say', 'that', 'Joey', 'truly', 'has', 'enriched', 'the', 'days', 'of', 'ourlives', '.', 'You', 'too', '!', 'Oh', ',', 'Joey', '!', 'Sorry', '!', 'Oh', 'but', 'look', '!', 'That\\x92s', 'gon', 'na', 'leave', 'a', 'stain', '!', 'Really', '?', 'I\\x92ve', 'never', 'lived', 'like', 'this', 'before', '.', 'Oh', 'my', 'God', ',', 'Jill', '!', 'This', 'is', 'Chandler', '.', 'And', 'you', 'know', 'Monica', 'and', 'Ross', '!', 'And', 'that\\x92s', 'Phoebe', ',', 'and', 'that\\x92s', 'Joey', '.', 'Don\\x92t', '!', '!', 'Yeah', '!', 'Wow', '!', 'I', 'can\\x92t', 'believe', 'they', 'didn\\x92t', 'put', 'it', 'in', 'the', 'part', 'where', 'you', 'said', 'you', 'didn\\x92t', 'watch', 'soap', 'operas', '.', 'Hi', '!', 'So', 'what\\x92s', 'the', 'final', 'head', 'count', 'on', 'my', 'baby', 'shower', '?', 'What', '?', '!', 'You', 'mean', 'they\\x92re', 'not', 'coming', 'to', 'a', 'social', 'event', 'where', 'there\\x92s', 'no', 'men', 'and', 'there\\x92s', 'no', 'booze', '?', '!', 'That\\x92s', 'shocking', '!', 'I', 'don\\x92t', 'care', ',', 'as', 'long', 'as', 'my', 'mom\\x92s', 'here', '.', 'What', '?', '!', 'My', 'mom\\x92s', 'not', 'gon', 'na', 'be', 'here', '?', '!', 'My', 'God', '!', 'So', 'my', 'mother', 'is', 'not', 'coming', 'to', 'my', 'baby', 'shower', '?', '!', 'Please', ',', 'make', 'sure', 'she', 'comes', '.', 'It\\x92s', 'really', 'important', 'to', 'me', ',', 'I', 'mean', 'it\\x92s', 'my', 'mom', '!', 'I', 'don\\x92t', 'know', '.', 'Okay', '.', 'Oh', 'well', 'actually', 'gon', 'na', 'use', 'a', 'nanny', 'and', 'uh', ',', 'I', 'don\\x92t', 'even', 'have', 'a', 'housekeeper', '.', 'Mrs.', 'Kay', '!', 'Oh', 'yeah', ',', 'she', 'was', 'sweet', '.', 'She', 'taught', 'me', 'Spanish', '.', 'I', 'actually', 'think', 'I', 'remember', 'some', 'of', 'it', ',', 'tu', 'madre', 'es', 'loca', '.', 'Well', ',', 'however', 'great', 'she', 'was', 'I', 'just', 'can\\x92t', 'afford', 'that', '.', 'What', '?', 'Wh-wh-what', '?', 'What', '?', 'Yes', '.', 'Yes', 'I', 'do', '.', 'Why', 'did', 'you', 'invite', 'my', 'mother', '?', '!', 'She', 'wants', 'to', 'move', 'in', 'with', 'me', 'and', 'Ross', 'to', 'help', 'take', 'care', 'of', 'the', 'baby', '.', 'Eight', 'weeks', '.', 'I', 'mean', 'I', 'love', 'my', 'mother', ',', 'but', 'my', 'God', ',', 'a', 'long', 'lunch', 'with', 'her', 'is', 'taxing', '.', 'What', '?', 'You', 'guys', ',', 'come', 'on', '!', 'What', 'am', 'I', 'going', 'to', 'do', '?', 'You\\x92re', 'right', '.', 'You\\x92re', 'right', '.', 'I', 'mean', 'I\\x92m', 'about', 'to', 'have', 'a', 'baby', ',', 'I', 'can', 'tell', 'my', 'mother', 'that', 'I', 'don\\x92t', 'want', 'her', 'to', 'just', 'be', 'sleeping', 'on', 'my', 'couch', '!', 'Oh', 'my', 'God', '!', 'She\\x92s', 'gon', 'na', 'want', 'to', 'sleep', 'in', 'my', 'bed', 'with', 'me', '.', 'This', 'can', 'not', 'happen', '!', 'Okay', '.', 'Mom', 'that\\x92s', 'okay', 'that', 'you', 'didn\\x92t', 'get', 'you', 'a', 'gift', '!', 'Oh', 'yeah', '.', 'Okay', ',', 'see', 'mom', ',', 'the', 'truth', 'is', 'I', 'can', 'do', 'this', 'on', 'my', 'own', '.', 'But', 'mom', ',', 'I', 'really', 'know', 'what', 'I\\x92m', 'doing', '.', 'I', 'can', 'handle', 'this', '.', 'He', 'was', 'a', 'hamster', '!', 'I', 'am', 'not', 'going', 'to', 'vacuum', 'up', 'my', 'baby', '!', 'Wow', '!', 'Oh', 'my', 'gosh', '!', 'Oh', 'wow', '!', 'Oh', ',', 'I', 'know', 'what', 'this', 'is', '!', 'Wait', 'a', 'minute', '.', 'That', 'can\\x92t', 'be', 'right', '.', 'Is', 'that', 'a', 'beer', 'bong', 'for', 'a', 'baby', '?', 'Did', 'I', 'say', 'I', 'was', 'done', 'guessing', '?', 'Okay', ',', 'thank', 'you', 'for', 'that', '.', 'Oh', 'wow', '!', 'What\\x92s', 'this', '?', 'Oh', ',', 'it', 'dispenses', 'clean', 'diapers', '!', 'Well', 'that\\x92s', 'gross', ',', 'why', 'don\\x92t', 'you', 'just', 'take', 'it', 'outside', 'and', 'throw', 'it', 'in', 'a', 'dumpster', '?', 'What', '?', '!', 'It', 'goes', 'ten', 'times', 'a', 'day', '!', 'What', 'are', 'we', 'feeding', 'this', 'baby', '?', '!', 'Indian', 'food', '?', '!', 'I', 'don\\x92t', 'know', ',', 'I\\x92d', 'leave', 'it', 'on', 'the', 'changing', 'table', '?', 'What', '?', '!', 'What\\x92d', 'I', 'do', '?', 'What\\x92d', 'I', 'do', '?', '!', 'Oh', 'come\\x97\\x97Of', 'course', 'I', 'know', 'that', '.', 'I', 'mean', 'of', 'course', 'you', 'never', 'leave', 'a', 'baby', 'alone', '!', 'I', 'mean', 'who', 'would\\x97she', 'wouldn\\x92t', 'be', 'safe', 'as', 'she', 'would', 'be', 'with', 'me', ',', 'the', 'baby', 'dummy', '.', 'Oh', 'God', ',', 'okay', '.', 'Y\\x92know', 'what', '?', 'I', 'think', 'opening', 'the', 'presents', 'right', 'now', 'is', 'a', 'little', 'overwhelming', 'right', 'now', '.', 'So', 'I', 'think', 'umm', ',', 'I\\x92m', 'just', 'gon', 'na', 'maybe', 'open', 'them', 'a', 'little', 'bit', 'later', ',', 'but', 'thank', 'you', 'all', 'for', 'coming', '.', 'And', 'for', 'these', 'beautiful', 'gifts', ',', 'and', 'this', 'basket', 'is', 'beautiful', '.', 'Okay', 'mommy', ',', 'don\\x92t', 'ever', 'leave', 'me', '.', 'So', 'umm', ',', 'you\\x92re', 'gon', 'na', 'stay', 'with', 'me', 'as', 'long', 'as', 'I', 'need', 'you', '?', 'Oh', 'mom', ',', 'I', 'swear', 'I\\x92m', 'not', 'an', 'idiot', '.', 'I\\x92ve', 'read', 'all', 'kinds', 'of', 'books', 'on', 'pregnancy', 'and', 'giving', 'birth', ',', 'but', 'I-I', 'just', 'didn\\x92t', 'think', 'to', 'read', 'the', 'part', 'about', 'what', 'to', 'do', 'when', 'the', 'baby', 'comes', '.', 'And-and', 'then', 'guess', 'what', '?', 'The', 'baby\\x92s', 'coming', 'and', 'I', 'don\\x92t', 'know', 'what', 'to', 'do', '.', 'Oh', ',', 'can', 'I', 'throw', 'up', 'in', 'my', 'diaper', 'genie', '?', 'Wait-wait', 'where', 'are', 'you', 'going', '?', 'Where', 'are', 'you', 'going', '?', 'Okay', '.', 'Oh', 'we', 'did', ',', 'but', 'my', 'mom', 'got', 'us', 'the', 'greatest', 'gift', 'of', 'all', '.', 'No', '.', 'She\\x92s', 'going', 'to', 'live', 'with', 'us', 'for', 'eight', 'weeks', '.', 'Yes', '!', 'She\\x92s', 'gon', 'na', 'help', 'us', 'take', 'care', 'of', 'the', 'baby', '!', 'Woo-hoo', '.', 'I', 'do', '.', 'I', 'really', 'do', '.', 'I', 'don\\x92t', 'know', 'anything', '.', 'Oh', 'no', '?', 'Pheebs', '?', 'Monica', '?', 'Do', 'I', 'know', 'anything', 'about', 'babies', '?', 'Hello', '?', '!', 'I', 'still', 'don\\x92t', 'know', 'what', 'the', 'hell', 'I\\x92m', 'doing', '!', 'I', 'hope', 'you\\x92re', 'going', 'somewhere', 'with', 'this', '.', 'Really', '?', 'Thank', 'you', '.', 'Okay', '!', 'I\\x92m', 'ready', '.', 'Yes', ',', 'I\\x92ve', 'done', 'my', 'studying', 'and', 'I', 'really', 'know', 'my', 'stuff', '.', 'Uh', ',', 'put', 'your', 'elbow', 'in', 'it', '.', 'Yeah', 'but', 'y\\x92know', 'what', 'they', 'say', 'Mon', ',', '``', 'There\\x92s', 'no', 'such', 'thing', 'as', 'bad', 'press', '.', \"''\", 'I', 'didn\\x92t', 'write', 'it', '.', 'Ross', '!', 'I', 'am', 'freaking', 'out', '!', 'My', 'due', 'date', 'is', 'in', 'one', 'week', '!', 'That', 'is', 'seven', 'days', '!', 'No-no-no-no-no', 'Ross', '!', 'Please', ',', 'come', 'on', 'we', 'do', 'not', 'have', 'any', 'of', 'the', 'big', 'stuff', 'we', 'need', '!', 'We', 'do', 'not', 'a', 'changing', 'table', '!', 'We', 'do', 'not', 'have', 'a', 'crib', '!', 'We', 'do', 'not', 'have', 'a', 'diaper', 'service', '!', 'I\\x92m', 'serious', '.', 'Okay', '.', 'Thank', 'you', '.', 'That\\x92s', 'great', '.', 'Thank', 'you', '.', 'Wait-wait', '!', 'Where', 'on', 'west', '10', '<', 'sup', '>', 'th', '<', '/sup', '>', '?', 'Because', 'there\\x92s', 'this', 'really', 'cute', 'shoe', 'store', 'that', 'has', 'like', 'this', 'little', 'Oh', ',', 'wait', 'Ross', '!', 'I\\x92m', 'sorry', ',', 'one', 'more', 'thing', '!', 'Umm', ',', 'our', 'situation', '.', 'Y\\x92know', 'umm', ',', 'what', 'we', 'mean', 'to', 'each', 'other', '.', 'And', 'I', 'mean', 'we-we\\x92re', 'having', 'this', 'baby', 'together', ',', 'and', 'we', 'live', 'together', '.', 'Isn\\x92t', 'that', ',', 'isn\\x92t', 'that', 'weird', '?', 'I\\x92m', 'just', 'kidding', '!', 'You', 'can', 'go', 'pee', '!', 'Oh', '.', 'No-no-no', '!', 'No', ',', 'no', ',', 'no', ',', 'we\\x92re', 'not', 'married', '.', 'Oh', 'yeah', '!', 'Actually', ',', 'that\\x92s', 'one', 'of', 'the', 'reasons', 'why', 'we\\x92re', 'not', 'a', 'couple', '.', 'Oh', '.', 'Oh', 'yeah', ',', 'don\\x92t', 'get', 'to', 'worked', 'up', 'over', 'it', '.', 'I', 'mean', 'it-it', 'sounds', 'like', 'he\\x92s', 'a', 'doctor', ',', 'but', 'he\\x92s', 'not', '.', 'Oh', 'my', 'God', '!', 'I\\x92m', 'standing', 'at', 'a', 'cash', 'register', ',', 'holding', 'a', 'credit', 'card', ',', 'and', 'I\\x92m', 'bored', '.', 'Hi', 'Pheebs', '!', 'Oh', ',', 'it', 'was', 'great', '!', 'We', 'got', 'everything', 'that', 'we', 'needed', '!', 'Oh', 'and', 'Ross', ',', 'almost', 'got', 'something', 'that', 'wasn\\x92t', 'on', 'the', 'list', '.', 'A', 'whore', '.', 'Well', ',', 'we', 'were', 'paying', 'for', 'our', 'stuff', 'and', 'this', 'saleswoman', 'just', 'started', 'flirting', 'with', 'him', '.', 'Yeah', '.', 'You', 'don\\x92t', 'understand', '!', 'You', 'didn\\x92t', 'see', 'how', 'brazen', 'she', 'was', '.', 'No', '!', 'I\\x92m', 'not', '!', 'I-I-I', 'just', 'think', 'it\\x92s', 'wrong', '!', 'It\\x92s-it\\x92s', 'that', 'I\\x92m\\x97Here', 'I', 'am', 'about', 'to', 'pop', 'and', 'he\\x92s', 'out', 'picking', 'up', 'some', 'shop', 'girl', 'at', 'Sluts', '\\x91R\\x92', 'Us', '!', 'Oh', 'yeah', '!', 'You', 'really\\x97You', 'look', 'great', '.', 'Chandler', ',', 'I\\x92m', 'not', 'gon', 'na', 'lie', 'to', 'ya', ',', 'but', 'I', 'am', 'gon', 'na', 'run', 'away', 'from', 'you', '.', 'All', 'this', 'stuff', 'takes', 'up', 'a', 'lot', 'of', 'room', '.', 'Hey', 'how', 'uh', ',', 'how', 'serious', 'are', 'you', 'about', 'keeping', 'Ben', 'in', 'your', 'life', '?', 'Horny', 'bitch', '.', 'No', '!', 'You\\x92re', 'a', 'horny', 'bitch', '!', 'Noooo', '!', 'You\\x92re', 'the', 'horny', 'bitch', '!', 'No', '!', 'You\\x92re', 'a', 'horny', 'bitch', '!', 'So', 'you', 'guys', 'go', ',', 'have', 'a', 'really', 'good', 'time', '.', 'So', ',', 'you', 'had', 'a', 'good', 'day', 'huh', '?', 'Big', 'commission', ';', 'picked', 'up', 'a', 'daddy', '.', 'Oh', 'yeah', '!', 'Yeah', 'please', ',', 'you', 'guys', 'have', 'fun', '.', 'Oh', 'and', 'it', 'was', 'great', 'to', 'see', 'you', 'too', '.', 'And', 'you', 'look', 'fantastic', ',', 'although', 'you', 'missed', 'a', 'button', '.', 'Oh', 'okay', ',', 'I', 'see', 'what', 'you\\x92re', 'doing', 'there', '.', 'Hi', '!', 'You\\x92re', 'back', 'from', 'your', 'date', '!', 'I\\x92m', 'fine', ',', 'but', 'that\\x92s', 'not', 'important', '.', 'What\\x92s', 'important', 'is', 'how', 'was', 'she', '?', 'Oh', 'uh-huh', ',', 'uh-huh', ',', 'coffee', ',', 'a', 'little', 'rub-rub-rub', 'under', 'the', 'table', '.', 'No', '!', 'No', ',', 'she\\x92s\\x97She', 'was', 'nice', '.', 'I', 'mean', ',', 'she\\x92s', 'a', 'little', 'slutty', ',', 'but', 'who', 'isn\\x92t', '?', 'Of', 'course', 'you', 'did', 'Ross', ',', 'you', 'would', 'date', 'a', 'gorilla', 'if', 'it', 'called', 'you', 'Indiana', 'Jones', '!', 'No', '!', 'It\\x92s', 'just', 'that', ',', 'Kate', 'bothered', 'me', '.', 'There', 'was', 'nothing', 'wrong', 'with', 'her', '!', 'All', 'right', '?', 'She', 'was', 'perfectly', 'lovely', '!', 'I', 'don\\x92t', 'want', 'you', 'to', 'date', 'her', '!', 'Yes', '!', 'And', 'not', 'because', 'I', 'want', 'you', 'to', 'go', 'out', 'with', 'me', ',', 'but', 'because', 'I', 'don\\x92t', 'want', 'you', 'to', 'go', 'out', 'with', 'anybody', '!', 'Okay', '?', 'I', 'know', 'it\\x92s', 'a', 'terrible', 'thing', 'to', 'even', 'think', 'this', ',', 'and', 'it\\x92s', 'completely', 'inappropriate', ',', 'but', 'I', 'want', 'you', 'to', 'be', 'at', 'my', 'constant', 'beck', 'and', 'call', '24', 'hours', 'a', 'day', '!', 'I\\x92m', 'very', 'sorry', ',', 'but', 'that', 'is', 'just', 'the', 'way', 'that', 'I', 'feel', '.', 'What', '?', '!', 'Really', '?', 'But', 'I\\x92m', 'being', 'so', 'unreasonable', '.', 'Oh', 'Ross', ',', 'thank', 'you', '.', 'Thank', 'you', '.', 'No', ',', 'not', 'really', '.', 'You\\x92re', 'pressing', 'the', 'baby', 'into', 'my', 'bladder', 'and', 'now', 'I', 'have', 'to', 'pee', '.', 'Sorry', '.', 'Yeah', '.', 'Uh-huh', '.', 'Wow', '!', 'I', 'don\\x92t', 'know', ',', 'maybe', '.', 'I\\x92m', 'I', 'knew', 'that', '!', 'I', 'knew', 'that', '!', 'I', 'was', 'just', 'messin\\x92', 'with', 'you', 'too', '!', 'Oh', 'no-no-no-no', ',', 'no', '!', 'No', 'that\\x92s', 'just\\x97\\x97That\\x92s', 'just', '\\x91cause', 'I\\x92m', 'such', 'a', 'good', 'messer', '!', 'Yeah', '?', 'Right', '!', 'Well', 'obviously', 'I', 'won\\x92t', 'be', 'able', 'to', 'come', ',', 'for', 'those', 'of', 'you', 'who', 'haven\\x92t', 'checked', 'their', 'calendars', 'today', 'is', 'my', 'due', 'date', '.', 'Well', 'y\\x92know', ',', 'I', 'just', 'want', 'to', 'take', 'a', 'moment', 'and', 'thank', 'you', 'guys', 'for', 'how', 'great', 'you\\x92ve', 'been', 'during', 'this', 'time', '.', 'I', 'really', 'couldn\\x92t', 'have', 'done', 'it', 'without', 'you', '.', 'And', 'I', 'have', 'loved', 'these', 'last', 'nine', 'months', '!', 'And', 'even', 'though', 'I', 'am', 'so', 'looking', 'forward', 'to', 'the', 'next', 'part', ',', 'I', 'am', 'really', 'gon', 'na', 'miss', 'being', 'pregnant', '.', 'That\\x92s', 'right', ',', 'still', 'no', 'baby', '!', 'Come', 'on', 'people', '!', 'Please', 'make', 'some', 'room', '!', 'You', '.', 'Like', 'you', 'haven\\x92t', 'done', 'enough', '.', 'God', '.', 'I', 'have', 'never', 'been', 'so', 'uncomfortable', 'in', 'my', 'entire', 'life', '!', 'Oh', 'Phoebe', ',', 'that\\x92s', 'a', 'great', 'story', '.', 'Can', 'you', 'tell', 'it', 'to', 'me', 'when', 'you\\x92re', 'getting', 'me', 'some', 'iced', 'tea', '?', 'Oh', 'God', ',', 'get', 'out', '!', 'Get', 'out', '!', '!', 'Get', 'out', '!', '!', 'Get', 'out', '!', '!', 'Do', 'you', 'want', 'me', 'to', 'come', 'over', 'there', 'and', 'sit', 'on', 'you', '?', '\\x91Cause', 'I\\x92ll', 'do', 'it', '.', 'They', 'sent', 'me', 'home', 'from', 'work', '.', 'They', 'were', 'like', ',', '``', 'Start', 'your', 'maternity', 'leave', 'now', '!', 'Just', 'rest', ',', 'get', 'ready', 'for', 'the', 'baby', '.', \"''\", 'Well', 'y\\x92know', 'what', '?', 'Screw', '\\x91em', '!', 'If', 'they', 'don\\x92t', 'want', 'me', 'there', ',', 'I\\x92ll', 'just', 'hang', 'out', 'with', 'you', 'guys', '.', 'What-what', 'about', 'me', '?', 'I', 'don\\x92t', '.', 'But', 'I', 'would', 'still', 'like', 'to', 'be', 'acknowledged', '.', 'What', '?', 'Just', 'because', 'I\\x92m', 'pregnant', 'you', 'think', 'I\\x92m', 'invisible', '.', 'Oh', ',', 'I', 'have', 'to', 'pee', '.', 'If', 'I', 'don\\x92t', 'come', 'out', 'in', 'five', 'minutes', 'it\\x92s', 'because', 'I\\x92ve', 'choked', 'to', 'death', 'on', 'the', 'potpourri', 'stink', '.', 'All', 'right', ',', 'who\\x92s', 'turn', 'is', 'it', 'to', 'help', 'me', 'get', 'up', '!', 'Oh', ',', 'I', 'have', 'to', 'go', 'pee', '.', 'Apparently', 'this', 'baby', 'thinks', 'that', 'my', 'bladder', 'is', 'a', 'squeeze', 'toy', '.', 'In', 'a', 'minute', '!', '!', '!', 'All', 'right', ',', 'all', 'right', '.', 'Let\\x92s', 'go', '!', 'No', ',', 'I\\x92m', 'fine', '.', 'Ross', ',', 'it', 'is', '100', 'degrees', 'outside', '.', 'For', 'the', 'first', 'time', 'in', 'weeks', ',', 'I', 'am', 'somewhat', 'comfortable', '.', 'Oh', 'uh-uh', 'pal', '!', 'Don\\x92t', 'call', 'me', 'mommy', '!', 'It\\x92s', 'bad', 'enough', 'you', 'call', 'your', 'own', 'mother', 'that', '.', 'Ross', '.', 'Can', 'I', 'ask', 'you', 'something', '?', 'When', 'Carol', 'was', 'pregnant', 'with', 'Ben', 'were', 'you', 'this', 'irritating', '?', 'Excuse', 'me', '?', '!', 'Well', 'then', 'you', 'just', 'must', 'have', 'a', 'natural', 'talent', 'for', 'it', '.', 'Okay', '.', 'Seriously', ',', 'breathe', 'louder', 'Ross', '!', 'That\\x92s', 'great', '!', 'Hi', 'Dr.', 'Long', ',', 'how', 'are', 'you', '?', 'She', 'has', 'the', 'drugs', '!', 'Okay', '.', 'Yeah', '.', 'Eh', ',', 'just', 'a', 'tad', '.', 'Well', ',', 'we', 'are', 'ready', 'to', 'try', 'anything', '.', 'Okay', '.', 'Great', '!', 'We', 'will', 'do', 'all', 'of', 'those', '.', 'Hi', '!', 'No', '.', 'But', 'she', 'did', 'give', 'us', 'some', 'ideas', 'on', 'how', 'to', 'induce', 'labor', '.', 'Well', ',', 'there', 'is', 'one', 'thing', 'that', 'we', 'haven\\x92t', 'tried', ',', 'but', 'someone', 'thinks', 'that', ',', '``', 'That', 'will', 'open', 'up', 'a', 'can', 'of', 'worms', '.', \"''\", 'Why', '?', 'Why', 'today', '?', 'I\\x92ll', 'take', 'that', 'bet', '.', 'Well', ',', 'I\\x92m', 'miserable', 'here', '!', 'I', 'might', 'as', 'well', 'make', 'some', 'money', 'out', 'it', '!', 'Oh', 'honey', ',', 'don\\x92t', 'worry', '.', 'I', 'really', 'do', 'feel', 'like', 'tomorrow\\x92s', 'the', 'day', '.', 'Ross', 'I\\x97We', 'tried', 'all', 'the', 'spicy', 'food', '.', 'It\\x92s', 'not', 'working', '.', 'I', 'am', 'feeling', 'nothing', '.', 'Speaking', 'of', 'hot', ',', 'watching', 'you', 'do', 'that', 'really', 'makes', 'me', 'want', 'to', 'have', 'sex', 'with', 'you', '.', 'Oh', 'come', 'on', 'Ross', ',', 'why', 'are', 'we', 'wasting', 'our', 'time', 'with', 'this', 'other', 'stuff', '?', '!', 'We', 'know', 'what\\x92s', 'gon', 'na', 'work', '!', 'It\\x92s', 'doctor', 'recommended', '!', 'Oh', 'come', 'on', 'Ross', ',', 'we\\x92ve', 'done', 'it', 'before', 'we\\x92ll', 'do', 'it', 'again', ',', 'it\\x92ll', 'be', 'a', 'nice', 'way', 'to', 'bookend', 'the', 'pregnancy', '.', 'Make', 'love', '?', 'What', 'are', 'you', 'a', 'girl', '?', 'But', 'you', 'will', ',', 'you', 'will', 'be', 'performing', 'a', 'service', '.', 'Okay', '?', 'Just-just', 'think', 'of', 'me', 'as', 'a', 'ketchup', 'bottle', ',', 'y\\x92know', 'you', 'sometimes', 'you', 'have', 'to', 'bang', 'on', 'the', 'end', 'of', 'it', 'just', 'to', 'get', 'something', 'to', 'come', 'out', '.', 'Oh', ',', 'I', 'know', 'it', '.', 'You\\x92re', 'right', '.', 'That\\x92s', 'not', 'sexy', '.', 'Oh', 'Oh', '!', 'Whoops', '!', 'Oh', ',', 'I', 'seem', 'to', 'have', 'dropped', 'my', 'fork', '.', 'Let', 'me', 'just', 'bed', 'over', 'and', 'get', 'it', '.', 'Oh', 'God', '!', 'Come', 'on', 'Ross', '!', 'I\\x92m', 'miserable', 'here', '!', 'Come', 'on', '!', 'You', 'started', 'this', ',', 'now', 'you', 'finish', 'it', '!', 'Come', 'on', 'wuss', ',', 'make', 'love', 'to', 'me', '.', 'What', '?', '!', 'Oh', 'wow', '!', 'What', 'now', 'Ross', 'you\\x92re', 'not', 'gon', 'na', 'talk', '?', 'How', 'on', 'earth', 'will', 'you', 'ever', 'annoy', 'me', '?', 'Oh', 'wait', 'a', 'minute', ',', 'I', 'know', '.', 'I', 'mean', 'you\\x92d', 'think', 'the', 'damn', 'jalepeno', 'would\\x92ve', 'cleared', 'up', 'your', 'sinuses', ',', 'but', 'no', '!', '!', 'That\\x92s', 'not', 'enough', 'What', 'are', 'you', 'doing', '?', '!', 'Oh', 'God', '!', 'Oh', 'no', '.', 'No-no', '!', 'I', 'think', 'my', 'water', 'just', 'broke', '.', 'Okay', '!', 'I', 'got', 'the', 'keys', '!', 'Okay', '!', 'Okay', '!', 'Yeah', '.', 'I', 'didn\\x92t', 'uh', ',', 'really', 'have', 'time', 'to', 'read', 'this', 'part', 'of', 'the', 'books', ',', 'but', 'do', 'you', 'think', 'we', 'have', 'time', 'to', 'Okay', '.', 'Yes', ',', 'the', 'hard', 'part', 'is', 'truly', 'over', '.', 'Hi', '!', 'Ross', ',', 'you', 'stay', 'here', 'and', 'talk', ',', 'I\\x92m', 'gon', 'na', 'go', 'have', 'a', 'baby', '.', 'Whoa-whoa-whoa-whoa', '!', 'I\\x92m', 'sorry', ',', 'semi-private', '?', 'We', ',', 'we', 'asked', 'for', 'a', 'private', 'room', '.', 'Okay', '.', 'Just', 'give', 'us', 'a', 'second', '.', 'Ross', '!', 'Give', 'her', 'some', 'money', '.', 'They\\x92re', 'not', '!', '!', 'Ross', ',', 'they\\x92re', 'just', 'saving', 'them', 'for', 'the', 'important', 'people', '!', '!', 'Okay', '?', '!', 'What-what', 'if', 'I', 'was', 'the', 'president', '?', '!', 'Okay', '.', 'Y\\x92know', 'what', '?', 'I\\x92d', 'have', 'to', 'say', 'I', 'really', 'don\\x92t', 'care', 'for', 'your', 'tone', '.', 'And', 'this', 'is', 'not', 'the', 'only', 'hospital', 'in', 'this', 'city', 'and', 'we', 'have', 'no', 'problem', 'to\\x97Whoa', '!', 'Oh', 'gosh', '!', 'Whoa', '!', 'Ow', '!', 'Ow', '!', 'Contraction', '.', 'Ow-ow', '!', 'Ow-ow', '!', 'Yeah', ',', 'it', 'couldn\\x92t', 'hurt', 'to', 'look', '.', 'Oh', ',', 'okay', '.', 'Thank', 'you', '.', 'Well', ',', 'I', 'guess', 'we', 'have', 'some', 'time', 'to', 'kill', '.', 'Yeah', 'well', 'it', 'looks', 'great', '!', 'Hi', '!', 'How', 'are', 'you', '?', 'Yeah', 'it', 'is', '.', 'That\\x92s', 'so', 'sweet', '.', 'Oh', '.', 'Oh', 'no', ',', 'I', 'really', 'don\\x92t', 'want', 'any\\x97\\x97Oh', '!', 'Thank', 'you', '.', 'Oh', '.', 'Oh', 'Ross', 'Here', 'comes', 'another', 'contraction', '.', 'Oh', ',', 'that\\x92s', 'very\\x97Really', 'very-very', 'okay', '.', 'No', ',', 'I', 'don\\x92t', 'think', 'we\\x92ll', 'be', 'doing', 'that', '.', 'Oh', '.', 'Oh', 'wait', 'no', '.', 'No-no-don\\x92t', '!', 'Don\\x92t', 'leave', 'me', 'here', 'with', 'these', 'people', '.', 'No', 'Ross', '!', 'Ross', '!', 'Ross', '!', 'My', 'child', 'has', 'no', 'father', '!', 'Hi', '!', 'Oh', ',', 'thank', 'you', 'so', 'much', 'for', 'coming', '.', 'Ross', ',', 'get', 'in', 'here', '!', 'New', 'people', '.', 'They\\x92re', 'having', 'their', 'baby', '!', 'It\\x92s', 'not', 'fair', 'Ross', 'we', 'got', 'here', 'first', '!', 'Right', 'after', 'you', 'left', 'they', 'wheeled', 'her', 'off', 'into', 'delivery', '.', 'Oh', 'but', 'not', 'before', 'she', 'gave', 'me', 'a', 'juicy', 'shot', 'of', 'little', 'Jamie', 'just', 'crowning', 'away', '.', 'Well', 'they', 'have', 'uh', ',', 'some', 'unusual', 'pet', 'names', 'for', 'each', 'other', '.', 'Including', 'umm', ',', 'evil', 'bitch', 'and', 'uh', ',', 'sick', 'bastard', '.', 'Oh', 'God', 'oh', '!', 'Contraction', '!', 'Ooh', '!', 'Ow', '!', '!', 'Ross', '.', 'He\\x92s', 'looking', 'at', 'me', '.', 'Ugh', ',', 'is', 'she', 'pregnant', 'yet', '?', 'She', 'doesn\\x92t', 'need', 'to', 'be', ';', 'she\\x92ll', 'still', 'have', 'the', 'baby', 'before', 'I', 'do', '.', 'Oh', 'Ross', ',', 'another', 'contraction', '!', 'Yeah', 'it', 'was', '.', 'Dr.', 'Long', ',', 'I\\x92ve', 'been', 'at', 'this', 'for', 'seventeen', 'hours', '!', 'Three', 'women', 'have', 'come', 'and', 'gone', 'with', 'their', 'babies', ',', 'you', 'got', 'ta', 'give', 'me', 'some', 'good', 'news', '!', 'How', 'many', 'centimeters', 'am', 'I', 'dilated', '?', 'Eight', '?', 'Nine', '?', 'Hey', ',', 'y\\x92know', 'what', '?', 'I\\x92m', 'not', 'waiting', '!', 'I\\x92m', 'gon', 'na', 'push', 'this', 'baby', 'out', '!', 'I\\x92m', 'doing', 'it', '!', 'I', 'mean', 'it\\x92s', 'what', '?', 'Three', 'centimeters', '?', 'That\\x92s', 'got', 'ta', 'be', 'like', 'this', '!', 'Oh', 'stupid', 'metric', 'system', '!', 'Oh', 'for', 'the', 'love', 'of', 'God', '!', 'Oh', 'come', 'on', '!', '!', 'Okay', '!', 'Okay', 'wait', '!', 'You', 'listen', 'to', 'me', '!', 'You', 'listen', 'to', 'me', '!', 'Since', 'I', 'have', 'been', 'waiting', 'four', 'women', ',', 'that\\x92s', 'four', ',', 'one', 'higher', 'than', 'the', 'number', 'of', 'centimeters', 'that', 'I', 'am', 'dilated', ',', 'have', 'come', 'and', 'gone', 'with', 'their', 'babies', '!', 'I\\x92m', 'next', '!', 'It\\x92s', 'my', 'turn', '!', 'It\\x92s', 'only', 'fair', '!', 'And', 'if', 'you', 'bring', 'in', 'one', 'woman', 'and', 'she', 'has', 'her', 'baby', 'before', 'me', 'I\\x92m', 'going', 'to', 'sue', 'you', '!', 'Not', 'this', 'hospital', ',', 'I\\x92m', 'going', 'to', 'sue', 'you', '!', 'And', 'my', 'husband', 'he\\x92s', 'a', 'lawyer', '!', 'Go', 'get', 'back', 'on', 'that', 'case', 'honey', '!', 'Okay', ',', 'well', 'then', 'bring', 'her', 'in', '.', 'Oh', '!', 'I', 'get', 'it', '!', 'Oh', 'we-we', 'didn\\x92t', '.', 'Just', 'tell', 'me', 'how', '.', 'Oh', 'hi', '.', 'Oh', 'not', 'bad', '.', 'Do', 'you', 'know', 'that', 'feeling', 'when', 'you\\x92re', 'trying', 'to', 'blow', 'a', 'Saint', 'Bernard', 'out', 'your', 'ass', '?', 'Oh', 'that\\x92s', 'five', 'Ross', '.', 'Five', 'women', 'have', 'had', 'five', 'babies', '!', 'And', 'I', 'have', 'had', 'no', 'babies', '!', 'Why', 'doesn\\x92t', 'she', 'want', 'to', 'come', 'out', '?', 'Oh', '.', 'Look', 'at', 'you', 'making', 'up', 'crap', 'for', 'me', '.', 'Oh', 'God', '!', 'Doctor', 'you', 'got', 'ta', 'do', 'something', '!', 'I', 'think', 'you', 'got', 'ta', 'give', 'me', 'drugs', 'or', 'you', 'got', 'ta', 'light', 'a', 'fire', 'up', 'in', 'there', 'and', 'just', 'smoke', 'it', 'out', '.', 'What', '?', 'My', 'God', '.', 'Okay', '.', 'Ha-ha-ha', 'beat', 'ya', '!', 'Sucker', '!', '3-2-1', 'oh', '!', '!', 'I', 'can\\x92t', '.', 'I', 'can\\x92t', 'push', 'anymore', ',', 'I', 'can\\x92t', '.', 'Oh', 'God', 'twenty', 'seconds', 'my', 'ass', '!', '!', 'Don\\x92t', 'say', ',', '``', 'Oh', 'my', 'God', '!', \"''\", 'Oh', 'my', 'God', 'what', '?', 'Oh', 'God', '.', 'Is', 'she', 'gon', 'na', 'be', 'okay', '?', 'I\\x92m', 'sorry', ',', 'I', 'can\\x92t', '!', 'I', 'can\\x92t', '!', 'I', 'can\\x92t', '.', 'Please', ',', 'you', 'do', 'it', 'for', 'me', '.', 'Are', 'you', 'okay', '?', 'Oh', 'God', '!', 'Oh', ',', 'she\\x92s', 'so', 'tiny', '.', 'Where\\x92d', 'she', 'go', '?', 'Okay', '.', 'Well', 'be', 'careful', 'with', 'her', ',', 'she\\x92s', 'really', 'tiny', '.', 'Oh', 'hey', 'you', '.', 'Thanks', 'for', 'coming', 'out', 'of', 'me', '.', 'I', 'know', '.', 'Oh', '.', 'Yeah', '.', 'Oh', ',', 'she\\x92s', 'looking', 'at', 'me', '.', 'Hi', '!', 'I', 'know', 'you', '.', 'No', ',', 'not', 'yet', '.', 'Oh', 'no', ',', 'Baby', 'Girl', 'Geller-Green', '.', 'Hello', 'baby', 'girl', '.', 'Here', '.', 'What', '?', 'Oh', 'nothing', 'I', 'Sorry', ',', 'I', 'just', 'can\\x92t', 'stop', 'crying', '.', 'So', '?', 'You', 'guys', 'are', 'all', 'sleep', 'deprived', '.', 'I', 'don\\x92t', 'see', 'you', 'weeping', 'because', 'you', 'put', 'your', 'slippers', 'on', 'the', 'wrong', 'feet', '.', 'Oh', 'God', '.', 'I', 'was', 'reliving', 'it', '.', 'Yeah', ',', 'and', 'y\\x92know', 'what', '?', 'I', 'love', 'them', 'both', ',', 'so', 'why', 'don\\x92t', 'you', 'just', 'pick', 'one', 'and', 'that\\x92ll', 'be', 'it', '.', 'That\\x92s', 'not', 'her', 'name', '!', 'I\\x92m', 'sorry', ',', 'she', 'just', 'doesn\\x92t', 'feel', 'like', 'an', 'Isabella', '.', 'Oh', 'great', '!', 'Suddenly', 'she', 'sounds', 'like', 'a', 'biblical', 'whore', '.', 'Well', 'what', 'are', 'we', 'going', 'to', 'do', '?', 'Well', 'tell', 'us', '!', 'What', 'are', 'they', '?', 'And', 'if', 'it\\x92s', 'a', 'girl', '?', 'Oh', ',', 'just', 'tell', 'us', '!', 'We\\x92re', 'not', 'gon', 'na', 'want', 'it', '!', 'Emma', '!', 'See', '?', 'I', 'don\\x92t', 'want', 'it', '.', 'What', '?', 'Oh', 'honey', ',', 'but', 'you', 'love', 'that', 'name', '.', 'Ohhh', '!', 'Wow', '!', 'He', 'kinda', 'takes', 'your', 'breath', 'away', 'doesn\\x92t', 'he', '?', 'Oh', ',', 'I\\x92m', 'fine', '.', 'Oh', ',', 'I\\x92m', 'not', 'doing', 'it', 'alone', '.', 'I', 'have', 'Ross', '.', 'Well', 'then', 'he', 'gets', 'a', 'divorce', ',', 'it\\x92s', 'Ross', '!', 'Well', 'I\\x97That\\x92s', 'never', 'gon', 'na', 'happen', 'with', 'Ross', '.', 'Really', '?', 'Well', 'That\\x92s', 'y\\x92know\\x97That\\x92s\\x97We\\x92ve', 'been', 'alone', 'for', 'the', 'last', 'twenty', 'minutes', 'we\\x92re', 'doing', 'okay', '.', 'Besides', 'y\\x92know', 'what', '?', 'I-I\\x97Maybe', 'we', 'won\\x92t', 'be', 'alone', ',', '\\x91cause', 'lately', 'I-I\\x97things', 'have', 'been', 'happening', 'between', 'me', 'and', 'Ross', ',', 'y\\x92know', '?', 'Right', 'before', 'I', 'went', 'into', 'labor', ',', 'we-we', 'had', 'this', 'kiss', '.', 'Y\\x92know', '?', 'So', 'it', 'might', 'be', 'the', 'the', 'beginning', 'of', 'something', '.', 'Uh-huh', '.', 'Y\\x92know', 'what', 'I', 'was', ',', 'I', 'was', 'thinking', 'about', '?', 'Umm', 'that', 'kiss', 'before', 'we', 'left', 'the', 'apartment', '.', 'That', 'was', 'some-something', 'huh', '?', 'Right', '.', 'No', '!', 'No', ',', 'of', 'course', 'not', '.', 'No', '.', 'That\\x92s', 'why', 'I', 'brought', 'it', 'up', '.', 'They', 'didn\\x92t', 'have', 'any', 'sodas', '?', 'That\\x92s', 'all', 'right', '.', 'And', 'so', 'it', 'begins', '.', 'Nothing', '.', 'Really', 'it\\x92s', 'nothing', '.', 'I\\x92m', 'just', 'I\\x92ve', 'just', 'been', 'thinking', 'about', 'how', 'my', 'baby', 'and', 'I', 'are', 'gon', 'na', 'be', 'all', 'alone', '.', 'Oh', 'please', ',', 'he\\x92ll', 'be', 'with', 'his', 'real', 'family', ',', 'the', 'twins', 'and', 'little', 'miss', 'new', 'boobs', '.', 'I\\x92m', 'just', 'saying', 'that', 'y\\x92know', ',', 'someday', 'Ross', 'is', 'gon', 'na', 'meet', 'somebody', 'and', 'he\\x92s', 'gon', 'na', 'have', 'his', 'own', 'life', '.', 'Right', '?', 'I', 'just', 'never', 'thought', 'I', 'would', 'raise', 'this', 'baby', 'all', 'by', 'myself', '.', 'Pretty', 'dumb', 'huh', '?', 'Joey', '.', 'Honey', 'what', 'would', 'I', 'do', 'without', 'you', '?', 'Oh', ',', 'hon', 'can', 'you', 'grab', 'me', 'my', 'other', 'box', 'of', 'tissues', '?', 'They\\x92re', 'right', 'on', 'that', 'chair', 'under', 'Ross\\x92s', 'coat', '.', 'Okay', '.', 'Joey', '.', 'Joey', '.', 'Oh', 'my', 'God', '.', 'Okay', '.', 'So', 'uh', 'I', 'guess', 'we', 'should', 'make', 'it', 'official', 'huh', '?', 'Hey', 'you', '.', 'Uh', 'yeah', ',', 'actually', 'I', 'kinda', 'need', 'to', 'talk', 'to', 'you', 'too', '.', 'I', 'know', ',', 'I', 'still', 'need', 'to', 'talk', 'to', 'you', '.', 'Hi', '.', 'Uhh', 'I', 'think', 'I', 'just', 'got', 'engaged', '.', 'Well', 'did', 'you', 'know', 'he', 'was', 'gon', 'na', 'ask', 'me', '?', 'And', 'you', 'really', 'think', 'this', 'is', 'a', 'good', 'idea', '?', 'I', 'just', 'don\\x92t', 'know', '!', 'It', 'just', 'doesn\\x92t', 'feel', 'right', '.', 'Really', '?', '!', 'Even', 'Ross', '?', 'I', 'guess', 'so', '.', 'I', 'can\\x92t', 'say', 'that', 'I\\x92m', 'surprised', '.', 'Of', 'course', '!', 'Oh', 'Joey', ',', 'this', 'ring', 'I', 'it\\x92s', 'beautiful', 'I', 'love', 'it', '!', 'Hey', '!', 'Yeah', '!', 'Hi', 'Emma', '.', 'Hey', ',', 'why', 'do', 'you', 'think', 'she', 'won\\x92t', 'take', 'my', 'breast', '?', 'Okay', 'sweetie', ',', 'you', 'can', 'do', 'it', '.', 'Just', 'open', 'up', 'and', 'put', 'it', 'in', 'your', 'mouth', '.', 'I\\x92m', 'sorry', 'honey', ',', 'what', 'were', 'you', 'saying', '?', 'Oh', 'look', ',', 'she\\x92s', 'pulling', 'away', 'again', '!', 'Do', 'you', 'think', 'my', 'nipples', 'are', 'too', 'big', 'for', 'her', 'mouth', '?', 'She', 'looks', 'scared', '.', 'Doesn\\x92t', 'she', 'look', 'scared', '?', 'It\\x92s', 'just', 'so', 'frustrating', '!', 'Why', 'doesn\\x92t', 'she', 'want', 'my', 'breast', '?', '!', 'Hey', '.', 'I', 'need', 'to', 'tell', 'you', 'something', '.', 'Joey', 'asked', 'me', 'marry', 'him', '.', 'Joey', 'proposed', 'to', 'me', '.', 'Well', ',', 'I-I', 'said', 'yes', '.', 'I', 'know', '.', '<', 'i', '>', 'Days', 'of', 'Our', 'Lives', '<', '/i', '>', ',', 'thank', 'you', 'very', 'much', '.', 'Why', 'not', '?', 'I', 'don\\x92t', 'want', 'to', 'do', 'this', 'alone', '!', 'And', 'he\\x92s', 'such', 'a', 'sweet', 'guy', 'and', 'he', 'loves', 'me', 'so', 'much', '.', 'Sure', '.', 'Yeah', ',', 'I', 'mean', 'whatever', '.', 'No', '.', 'No', ',', 'I', 'don\\x92t', '.', 'Could', 'you', 'be', 'a', 'dear', 'and', 'go', 'tell', 'him', '?', 'Hey', '.', 'Surprised', '?', 'I', 'know', '.', 'You', 'didn\\x92t', 'propose', 'to', 'me', '.', 'Joey', 'did', '.', 'Uh', 'You', 'didn\\x92t', 'propose', 'to', 'me', ',', 'Chandler', 'didn\\x92t', 'propose', 'to', 'me', ',', 'but', 'Joey', 'did', '.', 'Yes', 'you', 'did', '!', 'Well', 'then', 'why', 'did', 'you', 'give', 'me', 'a', 'ring', '?', 'Yes', ',', 'you', 'did', '!', 'Yes', ',', 'you', 'did', '!', 'Yes', ',', 'you', 'did', '!', 'And', 'don\\x92t', 'you', 'say', ',', '``', 'No', ',', 'I', 'didn\\x92t', '!', \"''\", 'He', 'was', 'right', 'there', '.', 'He', 'got', 'down', 'on', 'one', 'knee', 'and', 'proposed', '.', 'Yeah', ',', 'what', 'did', 'happen', '?', 'Yeah', ',', 'but', 'you', 'said', ',', '``', 'Will', 'you', 'marry', 'me', '?', \"''\", 'Yes', ',', 'you', 'did', '!', 'Yes', ',', 'you', 'did\\x97Oh', 'my', 'God', 'you', 'didn\\x92t', '!', 'Well', 'then', 'why', 'didn\\x92t', 'you', 'tell', 'me', 'that', 'before', '?', '!', 'Well', 'then', 'Joey', ',', 'what', 'the', 'hell', 'were', 'you', 'doing', 'with', 'an', 'engagement', 'ring', '?', '!', 'You', 'were', 'gon', 'na', 'propose', 'to', 'me', '?', 'Okay', '.', 'Oh', 'my', 'God', '!', 'She\\x92s', 'doing', 'it', 'Look', ',', 'she\\x92s', 'breast-feeding', 'look', '!', 'Okay', '.', 'Oh', 'wow', ',', 'this', 'feels', 'weird', '.', 'Wonderful', 'weird', '.', 'Honey', 'don\\x92t', 'worry', ',', 'it', 'was', 'my', 'mistake', '.', 'She\\x92s', 'perfect', '.', 'We', 'really', 'are', '.', 'I', 'know', '.', 'I', 'know', '.', 'I\\x92ve', 'feeling', 'Yeah', '.', 'Yeah', ',', 'maybe', '.', 'Wh-what\\x92s', 'that', '?', 'I\\x92m', 'sorry', ',', 'what', '?', 'Okay', 'you', 'have', 'to', 'realize', ',', 'I', 'was', 'exhausted', ',', 'I', 'was', 'emotional', ',', 'I', 'would', 'have', 'said', 'yes', 'to', 'anybody', '.', 'Like', 'that', 'time', 'you', 'and', 'I', 'got', 'married', '!', 'I\\x92m', 'not', 'helping', '.', 'That', 'is', 'right', 'and', 'traditionally', 'the', 'daddy', 'is', 'supposed', 'to', 'give', 'the', 'mummy', 'a', 'present', 'but', 'I', 'am', 'prepared', 'to', 'let', 'that', 'go', '.', 'Well\\x97Really', '?', 'I', 'thought', 'Chandler', 'was', 'your', 'best', 'friend', '.', 'Ooooo', '!', 'Hi', '!', 'Oh', 'you', 'guys', 'thanks', 'for', 'doing', 'this', '.', 'Oh', 'Ah', '!', 'Oh', 'my', 'gosh', 'there\\x92s', 'something', 'every', 'mother', 'needs', ',', 'a', 'giant', 'stuffed', 'gorilla', 'that', 'takes', 'up', 'the', 'entire', 'apartment', '!', 'What', 'are', 'people', 'think', 'Oh', 'you', 'guys', 'I', 'love', 'it', '.', 'He\\x92s', 'downstairs', 'getting', 'the', 'rest', 'of', 'the', 'stuff', 'out', 'of', 'the', 'cab', '.', 'Well', ',', 'you', 'more', 'then', 'me', ',', 'but', 'he', 'can\\x92t', 'stay', 'to', 'mad', 'at', 'me', '.', 'I', 'mean', ',', 'I', 'just', 'had', 'his', 'baby', '.', 'Yeah', ',', 'I\\x92m', 'not', 'so', 'sure', 'you', 'should', 'be', 'here', 'when', 'he', 'comes', 'up', '.', 'Oh', 'great', ',', 'the', 'pacifiers', '?', 'The', 'burping', 'clogs', '?', 'The', 'diapers', '?', 'Alright', 'thanks', ',', 'oh', 'Ross', 'could', 'you', 'stop', 'by', 'the', 'coffee', 'house', 'and', 'get', 'me', 'a', 'muffin', '?', 'Umm', 'let', 'me', 'think', '...', 'What', 'do', 'I', 'want', ',', 'what', 'd-o', 'I', 'w-a-n-t', '...', 'Blueberry', '.', 'Thanks', '.', 'God', 'how', 'long', 'do', 'you', 'think', 'that\\x92s', 'gon', 'na', 'last', '?', 'Y\\x92know', 'I', 'can\\x92t', 'even', 'worry', 'about', 'that', 'right', 'now', ',', 'cause', 'I', 'got', 'the', 'cutie', 'little', 'baby', ',', 'oh', 'I', 'can\\x92t', 'believe', 'how', 'much', 'I', 'love', 'her', ',', 'I', 'can\\x92t', 'get', 'enough', 'of', 'her', ',', 'like', 'right', 'now', 'I', 'miss', 'her', '.', 'I', 'actually', 'miss', 'her', '.', 'Oh', 'god', 'look', 'at', 'her', 'sleeping', '.', 'Oh', ',', 'I', 'love', 'her', 'so', 'much', '!', 'Oh', ',', 'I', 'think', 'I\\x92m', 'gon', 'na', 'wake', 'her', 'up', '.', 'Well', 'I', 'can', 'do', 'whatever', 'I', 'want', '!', 'I', 'made', 'her', '!', 'Come', 'on', 'little', 'girl', ',', 'hi', '!', 'Oh', 'I\\x92m', 'sorry', 'mummy\\x92s', 'so', 'sorry', 'go', 'back', 'to', 'sleep', 'go', 'back', 'to', 'sleep', '.', 'Shh', '.', 'Shhh', '!', 'Go', 'back', 'to', 'sleep', 'Ok.', 'Oh', 'oh', 'no', 'just', 'stopped', 'to', 'throw', 'up', 'a', 'little', 'bit', '.', 'Oh', 'come', 'on', ',', 'what', 'am', 'I', 'gon', 'na', 'do', ',', 'its', 'been', 'hours', 'and', 'it', 'won\\x92t', 'stop', 'crying', '.', 'Yeah', ',', 'I\\x92m', 'not', 'so', 'sure', '.', 'I', 'already', 'fed', 'her', '.', 'Oh', 'no', ',', 'you', 'guys', ',', 'just', 'stay', 'here', ',', 'I\\x92m', 'gon', 'na', 'go', 'check', 'her', 'diaper', ',', 'Pheebs', 'you', 'wan', 'na', 'come', '?', 'Oh', 'my', 'God', '!', 'How', 'long', 'has', 'she', 'been', 'crying', '?', 'You', 'guys', ',', 'I\\x92m', 'doing', 'the', 'best', 'I', 'can', ',', 'anyone', 'else', 'is', 'welcome', 'to', 'try', '.', 'Here', 'you', 'go', '.', 'Oh', 'god', 'what', 'am', 'I', 'gon', 'na', 'do', 'you', 'guys', ',', 'I', 'can\\x92t', 'even', 'comfort', 'my', 'own', 'baby', '!', 'I\\x92m', 'the', 'worst', 'mother', 'ever', '!', 'Yeah', 'I', 'don\\x92t', 'think', 'dressing', 'provocatively', 'is', 'going', 'to', 'help', 'me', 'here', '!', 'Oh', 'my', 'god', 'just', 'please', 'take', 'her', '.', 'I', 'have', 'to', 'go', 'to', 'the', 'bathroom', '.', 'Oh', 'my', 'God', '!', 'You', 'got', 'her', 'to', 'stop', 'crying', '!', 'You', 'are', 'the', 'official', 'baby', 'crier', 'stopper', '!', 'You\\x92re', 'never', 'leaving', 'the', 'apartment', '!', 'That\\x92s', 'your', 'new', 'job', ',', 'day', 'and', 'night', ',', 'she', 'starts', 'crying', 'I', 'need', 'you', 'here', '.', 'Okay', 'so', 'listen', 'I\\x92m', 'gon', 'na', 'go', 'lay', 'down', '.', 'You', 'know', 'the', 'book', 'says', 'that', 'whenever', 'she\\x92s', 'sleeping', 'I', 'should', 'be', 'sleeping', 'so', 'Heeeeey', ',', 'where', 'have', 'you', 'been', '?', 'What', 'happened', 'to', 'you', '?', 'Oh', 'no', 'Ross', '!', 'This', 'is', 'not', 'good', ',', 'we', 'have', 'to', 'talk', 'about', 'this', 'Joey', 'thing', '.', 'Please', 'sit', '.', 'You', 'have', 'got', 'to', 'get', 'over', 'this', 'Joey', 'thing', ',', 'okay', '?', 'I', 'never', 'really', 'wanted', 'to', 'marry', 'Joey', ',', 'okay', '?', 'You', 'know', 'what', 'I', 'really', 'really', 'want', '?', 'I', 'wan', 'na', 'sleep', ',', 'I', 'wan', 'na', 'eat', ',', 'I', 'wan', 'na', 'take', 'a', 'shower', ',', 'I', 'mean', 'before', 'she', 'wakes', 'up', 'and', 'we', 'got', 'ta', 'do', 'this', 'all', 'over', 'again', '.', 'I', 'mean', 'I', 'got', 'news', 'for', 'you', 'mister', ',', 'Emma', '?', 'Not', 'easy', '.', 'Pheebs', ',', 'I', 'would', 'make', 'a', 'reservation', 'for', 'five', ',', 'because', 'one', 'of', 'us', 'has', 'to', 'stay', 'home', 'and', 'watch', 'Emma', '.', 'Which', 'one', 'of', 'us', 'should', 'go', 'to', 'dinner', '?', 'Um', ',', 'Mon', ',', 'Chandler', \"'s\", 'not', 'here', '.', 'Okay', ',', 'well', 'that', \"'s\", 'now', 'the', 'third', 'sign', 'that', 'I', 'should', 'not', 'leave', 'Emma', '.', 'Well', ',', 'let', \"'s\", 'see', '.', 'The', 'first', 'one', 'is', ':', 'I', 'do', \"n't\", 'want', 'to', '.', 'And', ',', 'you', 'know', ',', 'I', \"'m\", 'not', 'going', '.', 'She', 'is', '?', 'What', 'about', 'Monica', '.', 'I', 'just', 'do', \"n't\", 'think', 'I', 'can', 'bear', 'it', '.', 'Umm', '.', 'Oh', ',', 'ah', '...', 'You', 'need', 'to', 'learn', 'some', 'new', 'slang', '.', 'Wait', '...', 'Oh', '!', 'I', 'was', 'just', 'going', 'to', 'say', 'that', 'I', 'left', 'my', 'keys', '.', 'No', '!', 'Alright', ',', 'I', 'ca', \"n't\", ',', 'I', 'ca', \"n't\", 'wait', 'that', 'long', '.', 'You', 'have', 'to', 'do', 'something', '...', 'knock', 'that', 'door', 'down', '!', 'What', 'if', 'she', 'jumped', 'out', 'the', 'basinet', '?', 'Oh', 'my', 'God', ',', 'I', 'left', 'the', 'water', 'running', '.', 'Ah', ',', 'did', 'I', 'leave', 'the', 'stove', 'on', '?', 'Is', 'the', 'window', 'open', '?', 'Because', 'if', 'there', \"'s\", 'a', 'window', 'open', ',', 'a', 'bird', 'could', 'fly', 'in', 'there', '.', 'Huh', '?', 'Boy', ',', 'are', 'you', 'gon', 'na', 'be', 'sorry', 'if', 'that', \"'s\", 'true', '.', 'Oh', ',', 'God', ',', 'Oh', ',', 'thank', 'god', ',', 'you', \"'re\", 'okay', '.', 'I', \"'m\", 'so', 'sorry', 'we', 'left', 'you', '.', 'Mom', 'never', 'gon', 'na', 'leave', 'you', 'again', '.', 'Never', 'ever', 'ever', 'again', '.', 'Oh', 'no', '.', 'I', 'mean', 'it', '.', 'After', 'what', 'just', 'happened', ',', 'I', \"'m\", 'never', 'leaving', 'her', 'again', '.', 'We', 'got', 'locked', 'out', 'of', 'the', 'apartment', ',', 'we', '...', 'It', 'was', \"n't\", 'easy', ',', 'but', 'it', \"'s\", 'your', 'birthday', 'and', 'I', 'did', 'what', 'I', 'got', 'to', 'do', '.', 'Oh', 'honey', ',', 'this', 'is', 'for', 'the', 'best', ',', 'this', 'way', 'I', \"'m\", 'not', 'distracted', ',', 'worrying', 'about', 'Emma', ',', 'how', 'she', \"'s\", 'doing', 'at', 'home', 'and', 'I', \"'m\", 'being', 'completely', 'here', 'with', 'you', 'and', ',', 'oh', ',', 'she', 'spit', 'up', '!', 'She', 'spit', 'up', '.', 'Judy', '!', 'She', 'spi', '...', 'Judy', '!', 'Look', 'alive', ',', 'Judy', '!', 'Thank', 'you', '.', 'Oh', ',', 'ooh', ',', 'everything', 'looks', 'delicious', '.', 'What', 'should', 'I', 'ha-ave', '?', 'What', 'should', 'I', 'have', '?', 'Yeah', ',', 'I', \"'ll\", 'have', 'the', 'soup', 'and', 'the', 'salmon', '.', 'You', 'guys', 'ever', 'heard', 'the', 'story', 'about', 'when', 'Ross', \"'s\", 'mom', 'went', 'to', 'the', 'beauty', 'salon', '?', 'Okay', ',', 'as', 'everybody', 'has', 'ordered', ',', 'I', 'would', 'like', 'to', 'start', 'the', 'celebration', 'and', 'make', 'a', 'toast', '...', 'to', 'Phoebe', '.', 'She', 'dropped', 'her', 'sock', '.', 'No', ',', 'no', ',', 'Emma', 'dropped', 'her', 'sock', '.', 'Ross', ',', 'she', 'still', 'has', 'not', 'noticed', 'that', 'the', 'baby', \"'s\", 'sock', 'is', 'on', 'the', 'ground', '.', 'Could', 'you', 'please', 'get', 'her', 'attention', '?', 'Phoebe', ',', 'hi', ',', 'we', \"'re\", 'so', 'sorry', '.', 'You', \"'re\", 'totally', 'right', '.', 'We', 'are', 'here', 'one', 'hundred', 'per', 'cent', 'and', 'we', 'love', 'you', 'and', 'we', 'are', 'ready', 'to', 'start', 'your', 'birthday', 'celebration', '.', 'What', '?', 'Oh', 'thank', 'god', ',', 'if', 'Phoebe', \"'s\", 'going', ',', 'can', 'we', 'please', 'take', 'Emma', 'home', '?', 'So', 'I', 'do', \"n't\", 'go', 'back', 'to', 'work', 'for', 'another', 'four', 'weeks', ',', 'but', 'we', 'would', 'like', 'our', 'nanny', 'to', 'start', 'right', 'away', ',', 'so', 'that', 'Emma', 'could', 'get', 'a', 'chance', 'to', 'know', 'her', '.', 'That', \"'s\", 'great', ',', 'great', '.', 'So', 'do', 'you', 'have', 'any', 'questions', 'for', 'us', '?', 'Allright', '.', 'Well', 'thank', 'you', 'so', 'much', 'for', 'coming', '...', 'Really', 'nice', 'to', 'meet', 'you', '...', 'and', 'we', \"'ll\", 'call', 'you', '.', 'Okidoki', '!', 'Wow', '!', 'We', \"'re\", 'never', 'gon', 'na', 'find', 'a', 'nanny', '.', 'What', ',', 'the', 'blonde', 'with', 'no', 'bra', '?', 'Okay', '...', 'Sandy', ',', 'that', \"'s\", 'exactly', 'what', 'it', 'is', '...', 'Ross', '!', 'Oh', '!', 'Oh', ',', 'that', \"'s\", 'pretty', '.', 'Oh', 'God', ',', 'she', 'mu', '...', 'she', 'must', 'need', 'her', 'diaper', 'changed', '.', 'Oh', ',', 'that', 'would', 'be', 'great', '!', 'I', 'love', 'him', ',', 'I', 'love', 'him', ',', 'I', 'love', 'him', '...', 'So', 'wh', '..', '?', 'He', \"'s\", 'smart', ',', 'he', \"'s\", 'qualified', '.', 'Give', 'me', 'one', 'good', 'reason', 'we', 'should', \"n't\", 'try', 'him', 'out', '.', 'Why', '?', 'Yes', '?', 'Please', '?', 'YES', '!', 'Sandy', 'you', \"'re\", 'hired', '.', 'Oooh', '...', '*', '*', '*', 'I', 'really', 'ca', \"n't\", 'hear', 'what', 'she', 'says', '*', '*', '*', 'come', 'here', '.', 'Oh', '...', 'Oh', 'boy', '...', 'Hi', '...', 'Oh', 'yeah', ',', 'it', \"'s\", 'fine', ',', 'it', \"'s\", 'fine', '.', 'Sandy', 'was', 'just', '...', 'was', 'just', 'telling', 'me', 'about', 'how', 'he', 'proposed', 'to', 'his', 'fiancée', 'and', 'it', 'was', 'just', 'sooo', 'beautiful', '.', 'I', 'ca', \"n't\", '...', 'I', 'ca', \"n't\", 'hear', 'it', 'again', '.', 'Yeah', '!', 'Excuse', 'me', '...', 'Look', ',', 'Ross', ',', 'he', \"'s\", 'just', '...', 'Sandy', 'is', 'just', 'sensitive', ',', 'that', \"'s\", 'all', '.', 'What', '...', '?', 'Too', 'sensitive', 'to', 'take', 'care', 'of', 'our', 'baby', '?', 'Sandy', 'made', 'Madeleines', '.', 'Well', ',', 'I', '...', 'you', 'know', ',', 'I-I-I', 'do', \"n't\", 'know', 'what', 'to', 'say', '...', 'I', 'mean', ',', 'I', 'never', 'thought', 'of', 'you', 'as', 'a', 'guy', 'who', 'needed', 'his', 'men', 'to', 'be', 'men', '.', 'You', 'know', ',', \"'cause\", 'I', 'got', 'ta', 'tell', 'you', 'Ross', ',', 'it', 'not', 'like', 'you', 'just', 'came', 'in', 'from', 'branding', 'cattle', '.', 'Okay', ',', 'what', '?', 'What', 'is', 'too', 'sensitive', '?', 'That', 'was', 'kind', 'of', 'rude', '!', 'You', 'know', ',', 'he', 'was', 'just', 'doing', 'his', 'job', '...', 'Oh', ',', 'come', 'on', 'Ross', '...', 'Oh', '...', 'That', \"'s\", 'true', '.', 'Well', ',', 'you', \"'re\", 'the', 'one', 'who', 'wants', 'to', 'fire', 'him', ',', 'so', 'you', \"'re\", 'gon', 'na', 'have', 'to', 'do', 'it', '.', 'I', 'ca', \"n't\", 'watch', '.', 'It', \"'s\", 'like', 'firing', 'Elmo', '.', 'YOU', '!', 'You', 'feel', '!', 'Oh', ',', 'damn', 'you', 'Geller', '!', 'Huh', 'ha', 'ha', '!', 'Oh', 'yeah', ',', 'she', 'ca', \"n't\", 'be', 'herself', '.', 'Yeah', ',', 'totally', '!', 'You', 'are', 'in', 'such', 'good', 'hands', '.', 'And', 'I', \"'m\", 'so', 'good', 'with', 'Uh', ',', 'he', 'took', 'the', 'SAT', \"'s\", 'for', 'me', '.', 'Ssshyeah', ',', 'well', ',', 'duh', '!', 'I', 'mean', '...', 'Oh', ',', 'with', 'the', 'mother', ',', 'just', '...', 'just', 'constantly', 'tell', 'her', 'how', 'amazing', 'Hi', '.', 'I', 'just', 'finished', 'getting', 'Phoebe', 'all', 'dressed', 'to', 'meet', 'Mike', \"'s\", 'parents', '.', 'You', 'WHAT', '?', 'And', 'I', 'missed', 'it', '?', 'Because', 'I', 'was', 'giving', 'a', 'Well', '...', 'well', ',', 'what', 'did', 'you', 'do', 'to', 'make', 'her', 'laugh', '?', 'You', 'WHAT', '?', 'You', 'sang', '...', 'to', 'our', 'baby', 'daughter', '...', 'a', 'song', 'about', 'a', 'guy', 'who', 'owwwww', '...', 'Okay', '...', 'aahhh', '...', 'Please', 'laugh', 'for', 'mommy', '...', 'Please', '?', 'Please', 'laugh', 'for', 'Oh', 'you', 'missed', 'it', '.', 'She', 'was', 'laughing', '.', 'Oh', 'it', 'was', 'amazing', '.', 'It', 'was', 'Oh', '!', 'You', 'know', ',', 'I', 'just', '...', 'couple', 'of', 'things', 'I', 'tried', '...', 'I', 'just', 'sang', 'a', 'Nothing', 'else', 'worked', '.', 'That', 'girl', 'is', 'all', 'about', 'the', 'ass', '...', 'So', 'fellas', 'fellas', 'has', 'your', 'girlfriend', 'got', 'the', 'butt', '?', 'So', 'shake', 'it', '!', 'Shake', 'it', '!', 'Shake', 'that', 'nasty', 'butt', '...', 'One', 'more', 'time', 'from', 'the', 'top', '...', 'I', 'like', 'big', 'butts', 'and', 'I', 'can', 'not', 'lie', ',', 'you', 'Oh', 'Emma', '.', 'This', 'is', 'going', 'to', 'be', 'your', 'first', 'Thanksgiving', '.', 'What', 'are', 'you', 'thankful', 'for', '?', 'Mommy', \"'s\", 'bobbies', '.', 'Who', 'is', 'it', '?', 'Hide', 'my', 'rings', '.', 'Oh', '.', 'Amy', '!', 'Happy', 'Thanksgiving', '.', 'Um', '...', 'hi', '.', 'Aw', '.', 'I', 'have', \"n't\", 'seen', 'you', 'in', 'like', '..', 'a', 'year', '.', 'Oh', 'well', 'yeah', 'me', 'too', '.', 'Um', '..', 'I', 'had', 'a', 'baby', '.', 'Oh', '..', 'yeah', '?', 'Well', 'unless', 'you', 'pushed', 'a', 'desk', 'out', 'of', 'your', 'vagina', ',', 'shakes', 'not', 'the', 'same', 'thing', '.', 'mh', 'hmm', '..', 'Uh', '....', 'its', 'Emma', '.', 'Oh', 'Amy', ',', 'you', 'remember', 'Ross', '.', 'Amy', '!', 'Yes', 'I', 'do', '..', 'I', 'really', 'do', '.', 'Yeah', ',', 'no', '.', 'Ross', 'has', 'a', 'PhD', '.', 'God', 'she', 'is', 'unbelievable', '.', 'Oh', 'sure', 'Ross', ',', 'yeah', '.', 'If', 'I', 'have', 'a', 'heart', 'attack', 'in', 'a', 'restaurant', ',', 'I', 'want', 'you', 'there', 'with', 'your', 'fossil', 'brush', '.', 'What', '?', 'What', 'happened', '?', 'Oh', 'Amy', ',', 'do', \"n't\", 'cry', 'Amy', '.', 'Um', '..', 'Ross', ',', 'could', 'I', 'talk', 'to', 'you', 'in', 'private', '?', 'Um', 'look', 'I', 'was', 'thinking', '..', 'If', 'its', 'ok', 'with', 'Monica', 'I', 'would', 'like', 'to', 'invite', 'Amy', 'to', 'Thanksgiving', '.', 'Look', 'I', 'know', 'she', \"'s\", 'a', 'little', 'tough', 'to', 'take', '.', 'She', 'has', 'no', 'where', 'else', 'to', 'go', ',', 'and', 'she', \"'s\", 'my', 'sister', '.', 'Alright', ',', 'she', \"'s\", 'Emma', \"'s\", 'aunt', '.', 'And', 'I', 'would', 'like', 'them', 'to', 'bond', '.', 'Ross', ',', 'you', 'know', 'what', '?', 'She', 'may', 'need', 'one', '..', 'We', \"'re\", 'just', 'going', 'to', 'have', 'to', 'make', 'our', 'peace', 'with', 'that', '!', 'Monica', 'and', 'Chandler', \"'s\", 'apartment', 'Hi', '.', 'Hey', 'you', 'guys', ',', 'this', 'is', 'my', 'sister', 'Amy', '.', 'This', 'is', 'Chandler', ',', 'Joey', ',', 'Phoebe', 'and', 'you', 'know', 'Mon', '.', 'Oh', 'we', 'just', 'put', 'her', 'down', 'for', 'a', 'nap', '.', 'Honey', ',', 'I', 'do', \"n't\", 'know', 'how', 'to', 'tell', 'you', 'this', ',', 'but', 'um', ',', 'if', 'something', 'were', 'to', 'happen', 'to', 'Ross', 'or', 'to', 'myself', 'um', 'you', 'would', \"n't\", 'get', 'the', 'baby', '.', 'See', 'look', 'Amy', ',', 'we', \"'re\", 'a', 'lot', 'closer', 'to', 'Monica', 'and', 'Chandler', '.', 'We', 'see', 'them', 'every', 'day', '.', 'And', 'truthfully', 'honey', ',', 'you', 'do', \"n't\", 'seem', 'very', 'connected', 'to', 'the', 'baby', '.', 'Monica', 'is', 'Ross', \"'\", 'sister', '.', 'Hey', '.', 'Amy', '.', 'You', \"'ve\", 'got', 'to', 'stop', 'doing', 'that', '.', '(', 'Amy', 'gets', 'pissed', 'and', 'starts', 'cutting', 'food', 'on', 'the', 'fancy', 'plate', 'very', 'harshly', ',', 'you', 'can', 'hear', 'the', 'silveware', 'scraping', 'the', 'fancy', 'plate', ')', 'Well', 'actually', '...', 'Honey', ',', 'you', \"'re\", 'taking', 'this', 'the', 'wrong', 'way', '.', 'We', 'think', 'you', \"'re\", 'going', 'to', 'be', 'a', 'wonderful', 'parent', '.', 'It', \"'s\", 'just', '..', 'you', \"'re\", 'more', 'the', 'fun', 'parent', '.', 'UCHH', '!', 'Yeah', '..', 'yeah', 'right', '..', 'Remember', 'in', 'high', 'school', 'when', 'I', 'died', 'and', 'did', \"n't\", 'give', 'you', 'my', 'baby', '?', 'What', '?', 'What', 'carrer', '?', 'Ok.', 'You', 'decorate', 'dad', \"'s\", 'office', 'and', 'so', 'now', 'you', \"'re\", 'a', 'decorator', '.', 'Okay', '!', 'I', 'went', 'to', 'the', 'zoo', 'yesterday', 'and', 'now', 'I', \"'m\", 'a', 'koala', 'bear', '.', 'Sup', '..', 'You', 'want', 'to', 'talk', 'supportive', '?', 'You', 'did', \"n't\", 'even', 'come', 'and', 'visit', 'me', 'when', 'I', 'was', 'in', 'the', 'hospital', 'having', 'the', 'baby', '.', 'I', 'did', 'the', 'first', 'time', '!', 'Oh', '.', 'Oh', '..', 'And', 'you', 'know', 'what', '.', 'You', 'want', 'to', 'know', 'why', 'I', \"'m\", 'not', 'giving', 'Emily', 'to', 'you', '.', 'Oh', 'whose', 'side', 'are', 'you', 'on', '?', 'I', \"'m\", 'not', 'giving', 'you', 'Emma', 'because', 'there', 'is', 'no', 'way', 'you', 'could', 'handle', 'the', 'responibility', 'of', 'a', 'child', '.', 'uh', 'huh', '.', 'Jealous', 'of', 'what', '?', 'Of', 'your', 'lack', 'of', 'responsiblity', '?', 'You', ',', 'your', 'immaturity', '?', 'Your', 'total', 'disregard', 'of', 'other', 'people', \"'s\", 'feelings', '?', 'Timmy', 'was', 'my', 'boyfriend', 'and', 'you', 'made', 'out', 'with', 'him', '!', 'I', 'can', 'not', ',', 'I', 'can', 'not', 'believe', 'that', 'I', 'invited', 'you', 'here', 'today', '.', 'ah', 'ha', 'ha', '.', 'ah', 'ha', 'ha', '.', 'It', \"'s\", 'forty', 'five', '.', 'You', 'take', 'that', 'back', '.', 'Take', 'it', 'back', '!', 'Heey', 'man', ',', 'I', 'work', 'out', '.', 'I', 'do', 'pilates', '.', 'Bring', 'it', 'on', '!', 'Did', 'you', 'just', 'push', 'me', '?', 'Alright', '.', 'Thats', 'it', '!', 'Frizzy', 'frizzy', 'frizzy', 'frizzy', '!', '!', 'Ew', '!', 'Gross', '.', '(', 'Amy', 'runs', 'towards', 'Rachel', 'and', 'Rachel', 'puts', 'her', 'arm', 'out', ',', 'hand', 'on', 'Amy', \"'s\", 'head', 'and', 'Amy', 'starts', 'trying', 'to', 'hit', 'her', 'but', 'is', 'missing', ',', 'Rachel', 'is', 'moving', 'backwards', 'towards', 'the', 'table', 'when', 'her', 'hand', 'swipes', 'the', 'one', 'plate', 'left', 'on', 'the', 'table', 'on', 'to', 'Mon', ',', 'I', \"'m\", 'so', 'sorry', '.', 'Are', 'you', 'okay', 'Mon', '?', 'Look', 'Amy', ',', 'it', 'got', 'a', 'little', 'of', 'control', '..', 'Um', '..', 'and', 'I', \"'m\", 'sorry', '.', 'You', \"'re\", 'my', 'sister', 'and', 'uh', '..', 'if', 'it', 'really', 'means', 'that', 'much', 'to', 'you', '..', 'Uh', '.', 'No', '..', 'I', 'was', 'going', 'to', 'let', 'you', 'use', 'my', 'Ralph', 'Lauren', 'discount', '.', 'She', 'needs', 'changing', '.', 'Well', ',', 'I', 'hope', 'the', 'ends', 'of', 'these', 'sentences', 'are', 'good', '.', 'Oh', 'well', ',', 'well', 'thank', 'you', '.', 'Okay', ',', 'stop', '.', 'Stop', 'looking', 'at', 'me', 'like', 'that', '.', 'The', 'last', 'time', 'that', 'happened', ',', 'that', 'happened', '.', 'Yeah', ',', 'yeah', '.', 'Phoebe', 'and', 'I', 'are', 'going', 'to', 'have', 'so', 'much', 'fun', '.', 'And', 'thank', 'you', 'for', 'watching', 'the', 'baby', ',', 'by', 'the', 'way', '.', 'Phoebe', \"'s\", 'Mike', '?', 'I', 'did', \"n't\", 'know', 'you', 'guys', 'hung', 'out', '.', 'Oh', 'that', \"'s\", 'so', 'cute', ':', 'Ross', 'and', 'Mike', \"'s\", 'first', 'date', '.', 'Is', 'that', 'going', 'to', 'be', 'awkward', '?', 'I', 'mean', ',', 'what', 'are', 'you', 'guys', 'going', 'to', 'talk', 'about', '?', 'Yeah', '.', 'Hey', '.', 'Ok', '.', 'So', 'now', ',', 'I', 'think', 'Emma', 'is', 'probably', 'down', 'for', 'the', 'night', ',', 'but', 'if', 'you', 'need', 'anything', 'Ross', '.', '.', '.', 'Okay', '.', 'You', 'too', '.', 'And', 'I', 'hope', 'you', 'score', '.', 'Bye', '.', 'Oh', 'God', '.', 'It', 'seems', 'like', 'forever', 'ago', '.', 'Well', ',', 'um', '.', '.', '.', 'I', 'do', \"n't\", 'know', '.', 'I', 'mean', ',', 'for', 'a', 'long', 'time', 'nothing', '.', 'But', 'you', 'know', ',', 'actually', 'right', 'before', 'you', 'picked', 'me', 'up', ',', 'Ross', 'and', 'I', 'had', 'a', '.', '.', '.', 'ah', '.', '.', '.', 'little', 'thing', '.', 'Well', ',', 'um', ',', 'first', 'he', 'told', 'me', 'he', 'liked', 'how', 'I', 'looked', '.', 'And', ',', 'ah', ',', 'then', 'we', 'had', 'a', 'little', '.', '.', '.', 'um', '.', '.', '.', 'eye-contact', '.', 'Mm-hmm', '.', 'Oh', '.', 'Should', 'we', 'send', 'them', 'something', 'back', '?', 'No', '!', 'Wait', '!', 'No', ',', 'no', '.', 'Do', \"n't\", 'do', 'that', '!', 'That', \"'s\", 'going', 'to', 'make', 'them', 'think', 'they', 'can', 'come', 'over', 'here', '.', 'Well', ',', 'we', \"'re\", 'not', 'here', 'to', 'meet', 'guys', '.', 'You', 'have', 'a', 'boyfriend', ',', 'I', 'have', 'a', 'b.', '.', '.', 'baby', 'and', 'a', 'Ross', '.', 'Oh', 'my', 'God', '.', 'I', 'ca', \"n't\", 'believe', 'you', 'live', 'in', 'that', 'building', '.', 'My', 'grandmother', 'lives', 'in', 'that', 'building', '.', 'Ida', 'Green', '?', 'No', 'sense', 'of', 'personal', 'space', '?', 'Kind', 'of', 'smells', 'like', 'chicken', '?', 'Looks', 'like', 'a', 'potato', '.', 'That', \"'s\", 'my', 'bubby', '!', 'Oh', ',', 'well', ',', 'it', \"'s\", 'complicated', '.', 'I', 'do', \"n't\", 'actually', 'have', 'a', 'boyfriend', '.', 'But', 'um', '.', '.', '.', 'I', \"'m\", 'sorry', ',', 'no', '.', 'Oh', 'sure', '.', 'Great', '.', 'I', 'do', \"n't\", 'know', '.', 'He', 'was', 'cute', ',', 'and', 'he', 'liked', 'me', '.', 'It', 'was', 'an', 'impulse', '.', 'No', '.', 'No', ',', 'because', 'I', 'know', 'exactly', 'how', 'the', 'conversation', \"'s\", 'gon', 'na', 'go', '.', '``', 'Hey', 'Ross', ',', 'you', 'know', ',', 'I', 'think', 'we', 'had', 'a', 'moment', 'before', '.', \"''\", '``', 'Yeah', '.', \"''\", '``', 'Me', 'too', '.', \"''\", '``', 'Well', ',', 'but', 'I', \"'m\", 'not', 'sure', 'I', 'really', 'want', 'to', 'do', 'anything', 'about', 'it', '.', \"''\", '``', 'Yeah', '.', \"''\", '``', 'Me', 'neither', '.', \"''\", '``', 'Well', ',', 'should', 'we', 'just', 'continue', 'to', 'live', 'together', 'and', 'not', 'really', 'tell', 'each', 'other', 'how', 'we', \"'re\", 'really', 'feeling', '?', \"''\", '``', 'Yeah', '.', 'That', 'works', 'for', 'me', '.', \"''\", 'Oh', ',', 'thanks', '.', 'Wha', '.', '.', '.', 'hey', '!', 'Well', ',', 'the', 'point', 'is', ',', 'maybe', 'I', 'should', 'just', 'stop', 'waiting', 'around', 'for', 'moments', 'with', 'Ross', ',', 'you', 'know', '?', 'I', 'should', 'just', '.', '.', '.', 'move', 'on', 'with', 'my', 'life', '.', 'I', 'do', \"n't\", 'know', '.', 'Do', 'I', 'have', 'to', 'decide', 'right', 'now', '?', 'Oh', 'God', ',', 'Ross', '.', 'Ross', 'is', 'going', 'to', 'pick', 'up', 'the', 'phone', '.', 'Oh', ',', 'I', 'have', 'to', 'get', 'my', 'number', 'back', '.', 'Oh', 'my', 'God', '.', 'He', \"'s\", 'gone', '.', 'Oh', 'give', 'me', ',', ',', ',', 'Hi', ',', 'Mike', '?', 'Hi', '.', 'Listen', '.', 'I', 'know', 'this', 'is', 'a', 'lot', 'to', 'ask', ',', 'but', 'you', 'know', 'what', '?', 'If', 'you', 'do', 'this', 'I', '.', '.', '.', 'Phoebe', 'will', '.', '.', '.', 'do', 'anything', 'you', 'want', '.', 'Seriously', ',', 'I', \"'m\", 'talking', 'dirty', 'stuff', '.', 'Hi', '.', 'Oh', '.', '.', '.', 'Wow', '.', 'So', ',', 'what', 'did', 'you', 'guys', 'do', '?', 'That', 'was', 'fun', 'Pheebs', '.', 'See', 'you', 'guys', '.', 'Oh', 'shoot', '.', 'I', 'forgot', 'to', 'pay', 'Phoebe', 'for', 'the', 'drinks', '.', 'Wait', ',', 'wait', '.', 'Sorry', '.', 'Did', 'he', 'call', '?', 'Did', 'that', 'guy', 'call', '?', 'Oh', ',', 'around', '8:30', '?', 'Then', ',', 'again', 'at', '9:00', '?', 'Yeah', '.', 'Aaah', '.', 'Oh', ',', 'it', 'was', 'so', 'much', 'fun', '.', 'It', 'felt', 'so', 'good', 'to', 'be', 'out', '.', 'Yeah', '?', 'Yeah', ',', 'I', 'ca', \"n't\", '*', 'wait', '*', 'to', 'go', 'back', 'to', 'work', '.', 'Okay', ',', 'Pheebs', ',', 'you', 'look', 'in', 'the', 'kitchen', ',', 'I', 'will', 'look', 'in', 'the', 'back', 'We', 'are', 'looking', 'for', 'our', 'Christmas', 'presents', 'from', 'Monica', '.', 'Do', \"n't\", 'worry', ',', 'we', \"'re\", 'just', 'gon', 'na', 'search', 'here', 'for', 'an', 'hour', ',', 'and', 'Chandler', ',', 'are', \"n't\", 'you', 'worried', 'about', 'what', 'to', 'get', 'Monica', 'for', 'Chandler', ',', 'that', \"'s\", 'not', 'enough', '.', 'I', 'mean', 'what', 'if', 'she', 'gets', 'you', 'a', 'That', \"'s\", 'right', '!', 'Oh', ',', 'it', \"'s\", 'a', 'Macy', \"'s\", 'bag', '!', 'Oh', '.', '``', 'Dear', 'losers', ',', 'Wiper', 'blades', '.', 'I', 'do', \"n't\", 'even', 'have', 'a', 'car', '.', 'Well', ',', 'because', 'if', 'one', 'more', 'person', 'says', '``', 'what', 'a', 'cute', 'little', 'boy', \"''\", 'I', \"'m\", 'gon', 'na', 'whip', 'them', 'with', 'a', 'car', 'antenna', '!', 'That', 'went', 'well', '.', 'Almost', 'everybody', 'knew', 'that', 'she', 'was', 'a', 'girl', '.', 'I', \"'m\", 'just', 'gon', 'na', 'go', 'in', 'my', 'office', 'and', 'pick', 'up', 'some', 'stuff', '.', 'Who', 'the', 'hell', 'are', 'you', '!', '?', 'I', \"'m\", 'the', 'hell', 'person', 'whose', 'office', 'this', 'is', '!', 'Excuse', 'me', '?', 'Wait', 'a', 'minute', '!', 'What', 'do', 'you', 'mean', ',', 'you', \"'re\", 'taking', 'over', 'my', 'job', '?', 'A', 'vacation', '?', 'My', 'idea', 'of', 'a', 'vacation', 'does', 'not', 'involve', 'something', 'sucking', 'on', 'my', 'nipples', 'until', 'they', 'are', 'raw', '.', 'Alright', '!', 'Do', \"n't\", 'get', 'too', 'comfortable', 'there', ',', 'because', 'I', \"'m\", 'back', 'in', 'two', 'weeks', '!', 'And', 'I', 'want', 'everything', 'back', 'to', 'the', 'way', 'it', 'was', '.', 'I', 'ca', \"n't\", 'say', 'that', 'I', 'care', 'too', 'much', 'for', 'the', 'way', 'you', \"'ve\", 'rearranged', 'my', 'office', '.', 'Excuse', 'me', '?', 'Can', 'you', 'please', ',', 'please', 'take', 'care', 'of', 'it', 'for', 'me', '?', 'Let', 'me', 'just', 'get', 'this', 'straight', '!', 'So', 'I', 'go', 'have', 'a', 'baby', 'and', 'they', 'send', 'some', 'guy', 'in', 'to', 'do', 'my', 'job', '?', 'That', \"'s\", 'right', '.', 'You', \"'re\", 'very', 'cheeky', 'for', 'a', 'temp', '.', 'Oh', 'yeah', ',', 'what', 'department', 'was', 'that', '?', 'The', 'Jerk', 'department', '?', 'Did', 'they', 'mention', 'that', 'I', \"'m\", 'rubber', 'and', 'you', \"'re\", 'glue', '?', 'Oh', ',', 'hi', 'Mr.', 'Zelner', '.', 'That', \"'s\", 'great', '.', 'So', 'now', ',', 'Super', 'Gavin', ',', 'when', 'I', 'come', 'back', 'where', 'are', 'you', 'planning', 'on', 'flying', 'off', 'to', '?', 'Oh', ',', 'wow', '.', 'Super', 'ass-kissing', 'power', '.', 'Today', '.', 'No', ',', 'I', 'said', 'today', '!', 'See', ',', 'for', 'a', 'superhero', ',', 'not', 'so', 'much', 'with', 'the', 'listening', '.', 'Listen', '.', 'Sudden', 'change', 'of', 'plans', '.', 'My', 'maternity', 'leave', 'just', 'ended', '.', 'They', 'told', 'me', 'that', 'if', 'I', 'did', \"n't\", 'come', 'back', 'today', ',', 'they', 'were', 'gon', 'na', 'fire', 'me', '.', 'Alright', ',', 'alright', '.', 'Calm', 'down', 'Norma', 'Rae', '.', 'They', 'did', \"n't\", 'actually', 'say', 'that', '.', 'I', \"'m\", 'just', 'afraid', 'if', 'I', 'do', \"n't\", 'come', 'back', 'right', 'now', 'this', 'guy', \"'s\", 'gon', 'na', 'try', 'to', 'squeeze', 'me', 'out', '.', 'I', 'know', '.', 'You', 'know', ',', 'we', \"'re\", 'just', 'gon', 'na', 'have', 'to', 'figure', 'out', 'a', 'plan', 'tonight', '.', 'Can', 'you', 'please', 'just', 'take', 'care', 'of', 'her', 'for', 'today', '?', 'Come', 'on', ',', 'I', 'do', \"n't\", 'know', 'what', 'else', 'to', 'do', '.', 'Ross', '?', 'You', \"'re\", 'pretty', '.', 'Alright', '.', 'Now', 'that', 'I', \"'m\", 'back', ',', 'why', 'do', \"n't\", 'you', 'just', 'fill', 'me', 'in', 'on', 'what', 'you', \"'ve\", 'been', 'up', 'to', '?', 'Hey', ',', 'they', 'were', 'popular', 'when', 'I', 'left', '!', 'Well', ',', 'I', 'should', 'be', 'involved', 'in', 'that', ',', 'so', 'why', 'do', \"n't\", 'you', 'get', 'me', 'up', 'to', 'speed', '?', 'Oh', ',', 'no', 'no', 'no', 'no', '.', 'I', 'see', 'what', 'you', \"'re\", 'doing', 'here', ',', 'alright', ',', 'listen', ',', 'this', 'is', 'my', 'job', 'buddy', '.', 'Okay', ',', 'I', \"'ve\", 'had', 'it', 'for', 'five', 'years', ',', 'and', 'I', 'know', 'how', 'it', 'works', ',', 'so', 'why', 'do', \"n't\", 'you', 'just', 'catch', 'me', 'up', '!', 'Oh', 'god', '.', 'You', \"'ve\", 'totally', 'messed', 'with', 'the', 'back', 'support', 'of', 'my', 'chair', '.', 'How', 'do', 'you', 'fix', 'this', '?', 'Fine', ',', 'I', 'will', '.', 'Alright', ',', 'fill', 'me', 'in', '!', 'Yes', '.', 'Emma', 'and', 'I', 'came', 'in', 'a', 'little', 'early', 'to', 'do', 'research', 'on', 'the', 'presentation', '.', 'I', 'actually', 'made', 'a', 'few', 'changes', ',', 'but', 'I', 'think', 'I', \"'m\", 'caught', 'up', 'on', 'everything', '.', 'So', 'ask', 'me', 'anything', '!', 'Except', 'that', '!', 'Oh', ',', 'hello', ',', 'Mr.', 'Zelner', '.', 'We', \"'re\", 'all', 'ready', 'for', 'our', 'presentation', 'this', 'afternoon', '.', 'What', '?', 'I', 'ca', \"n't\", 'do', 'that', '!', 'I', 'have', 'the', 'baby', ',', 'and', 'Ross', 'is', 'not', 'gon', 'na', 'pick', 'her', 'up', 'for', 'another', 'hour', '.', 'Well', ',', 'there', 'you', 'go', '.', 'You', 'win', ',', 'you', 'win', '.', 'You', 'get', 'to', 'do', 'the', 'presentation', ',', 'you', \"'ll\", 'knock', \"'em\", 'dead', ',', 'no', 'one', 'will', 'ever', 'remember', 'that', 'I', 'worked', 'here', ',', 'and', 'then', 'Ralph', 'will', 'buy', 'his', 'helicopter', ',', 'and', 'Super', 'Gavin', 'will', 'just', 'fly', 'right', 'along', 'side', 'of', 'him', '!', 'No', ',', 'I', 'ca', \"n't\", ',', 'I', 'have', 'a', 'baby', '.', 'Why', 'would', 'you', 'do', 'that', '?', 'That', \"'s\", 'really', 'nice', '.', 'Then', 'you', \"'re\", 'not', 'gon', 'na', 'like', 'what', \"'s\", 'coming', '.', 'I', \"'m\", 'sorry', ',', 'I', \"'m\", 'sorry', ',', 'I', \"'m\", 'sorry', '.', 'Thank', 'you', ',', 'thank', 'you', '.', 'Shhh', 'do', \"n't\", 'say', 'that', 'loud', ',', 'Gunther', \"'s\", 'gon', 'na', 'want', 'to', 'hug', 'me', '.', 'Ok', ',', 'you', 'know', 'what', ',', 'I', \"'m\", 'just', 'gon', 'na', 'take', 'her', 'outside', '.', 'OK', ',', 'thank', 'you', '.', 'Oh', ',', 'wow', ',', 'Molly', 'is', 'just', 'great', '!', 'What', '?', 'You', 'really', 'think', 'she', \"'s\", 'hot', '?', 'And', 'Joey', '?', 'Am', 'I', 'the', 'only', 'one', 'who', 'does', \"n't\", 'think', 'that', 'she', \"'s\", 'hot', '?', 'Ross', '?', 'Thank', 'you', '!', 'So', 'hot', 'I', 'cried', 'myself', 'to', 'sleep', 'last', 'night', '.', 'Hello', '.', 'Gavin', ',', 'I', 'just', 'wanted', 'to', 'say', 'thank', 'you', 'again', 'for', 'watching', 'Emma', 'yesterday', 'during', 'the', 'presentation', '.', 'I', 'really', 'owe', 'you', 'an', 'appology', '.', 'Well', ',', 'when', 'we', 'first', 'met', ',', 'you', 'know', ',', 'I', 'thought', 'you', 'were', 'pompous', 'and', 'arrogant', 'and', 'obnoxious', '...', 'No', ',', 'I', 'just', 'mean', 'that', ',', 'you', 'know', ',', 'first', 'impressions', 'do', \"n't\", 'mean', 'anything', '.', 'And', 'I-I', 'think', 'you', \"'re\", 'a', 'really', 'good', 'guy', 'and', 'I', \"'m\", 'sorry', 'that', 'I', 'misjudged', 'you', '.', 'Hello', '.', 'But', 'you', 'know', 'what', ',', 'hey', ',', 'new', 'day', ',', 'new', 'leaf', ',', 'I', 'am', 'just', 'really', 'really', 'happy', '...', 'I', \"'m\", 'sorry', ',', 'obviously', 'Heather', \"'s\", 'ass', 'has', 'something', 'more', 'important', 'to', 'say', 'so', 'I', \"'ll\", 'just', 'wait', \"'till\", 'it', \"'s\", 'finished', '.', 'I', 'was', 'giving', 'you', 'an', 'appology', 'and', 'you', 'were', 'totally', 'checking', 'her', 'out', '!', 'Oh', 'wow', ',', 'you', 'are', 'really', ',', 'you', \"'re\", 'really', 'a', 'creep', '.', 'Oh', 'yeah', ',', 'I', \"'m\", 'jealous', '.', '``', 'Oh', 'Gavin', ',', 'please', ',', 'please', 'look', 'at', 'my', 'ass', \"''\", '.', 'Stop', 'looking', 'at', 'my', 'ass', '!', 'I', 'mean', ',', 'I', 'just', 'think', 'you', 'are', 'totally', 'inappropriate', ',', 'ok', '?', 'This', 'is', 'a', 'work', 'environment', ',', 'she', \"'s\", 'your', 'subordinate', '.', 'That', 'is', 'totally', 'different', 'for', 'two', 'reasons', '.', 'One', '-', 'I', 'did', \"n't\", 'know', 'that', 'you', 'knew', 'that', '.', 'And', 'two', ',', 'I', 'was', \"n't\", 'some', 'creep', 'staring', 'at', 'his', 'ass', ',', 'we', 'had', 'a', 'deap', 'meaningful', 'relationship', '.', 'It', 'was', '...', 'oh', 'my', 'god', '.', 'He', 'did', \"n't\", 'have', 'a', 'last', 'name', '.', 'It', 'was', 'just', '``', 'Tag', \"''\", '.', 'You', 'know', ',', 'like', 'Cher', ',', 'or', ',', 'you', 'know', ',', 'Moses', '.', 'Oh', ',', 'you', 'know', 'what', '-', 'my', 'first', 'impression', 'of', 'you', 'was', 'absolutely', 'right', '.', 'You', 'are', 'arrogant', ',', 'you', 'are', 'pompous', '...', 'Morgan', '!', 'Morgan', '!', 'Tag', \"'s\", 'last', 'name', 'was', 'Morgan', '!', 'Huh', '!', 'Yeah', 'well', 'what', 'are', 'you', ',', 'his', 'boyfriend', '?', 'Hey', ',', 'listen', ',', 'Joey', ',', 'about', 'Molly', ',', 'I', 'really', 'prefer', 'if', 'you', 'did', \"n't\", 'go', 'after', 'her', '.', 'Because', 'it', 'took', 'us', 'months', 'to', 'find', 'a', 'good', 'nanny', 'and', 'I', 'would', \"n't\", 'want', 'anything', 'to', ',', 'you', 'know', ',', 'drive', 'her', 'away', '.', 'Rachel', 'Green', \"'s\", 'office', '!', '!', 'Give', 'me', 'that', 'phone', '!', 'Hello', ',', 'this', 'is', 'Rachel', 'Green', ',', 'how', 'can', 'I', 'help', 'you', '?', 'Uh', 'huh', '...', 'ok', 'then', '...', 'I', \"'ll\", 'pass', 'you', 'back', 'to', 'your', 'son', 'Um', ',', 'excuse', 'me', 'Gavin', ',', 'I', 'have', 'a', 'question', 'I', 'need', 'to', 'ask', 'you', '.', 'If', 'you', 'like', 'looking', 'at', 'butts', 'so', 'much', 'why', 'do', \"n't\", 'you', 'just', 'go', 'look', 'at', 'a', 'mirror', '?', 'Oh', ',', 'please', ',', 'I', 'do', \"n't\", 'care', 'about', 'you', 'enough', 'to', 'bug', 'me', '.', 'In', 'fact', ',', 'from', 'now', 'on', ',', 'I', \"'m\", 'going', 'take', 'the', 'high', 'road', '.', 'And', 'I', \"'m\", 'going', 'be', 'very', 'very', 'nice', 'to', 'you', ',', 'you', '``', 'momma', \"'s\", 'boy', \"''\", ',', 'starting', 'right', 'now', '.', 'Hi', '!', 'Yeah', 'I', 'am', ',', 'I', 'am', '!', 'Oh', ',', 'but', 'first', 'of', 'all', ',', 'Monica', ',', 'I', 'would', 'like', 'to', 'introduce', 'you', 'to', 'my', 'very', 'talented', 'colleage', 'and', 'more', 'importantly', 'my', 'wonderful', 'friend', 'Gavin', 'Mitchelle', '.', 'Oh', 'no', 'no', 'no', 'no', 'no', ',', 'Gavin', 'ca', \"n't\", ',', 'he', 'already', 'has', 'plans', ',', 'most', 'likely', 'with', 'his', 'mother', '.', 'Why', 'did', 'you', 'invite', 'him', '?', '?', 'I', 'ca', \"n't\", 'stand', 'that', 'guy', '!', 'I', 'was', 'faking', 'it', '!', 'Ca', \"n't\", 'you', 'tell', 'when', 'I', \"'m\", 'being', 'fake', '?', 'Hey', ',', 'Mr', 'Philips', ',', 'nice', 'suit', '!', 'Shh', '!', 'I', 'still', 'ca', \"n't\", 'believe', 'you', 'invited', 'Gavin', '.', 'Allright', ',', 'he', 'is', 'the', 'last', 'person', 'I', 'want', 'to', 'see', '.', 'God', ',', 'I', 'hope', 'he', 'does', \"n't\", 'show', 'up', '.', 'Of', 'course', 'he', \"'s\", 'not', 'gon', 'na', 'show', 'up', ',', 'the', 'guy', 'hates', 'me', '.', 'What', '?', 'Oh', ',', 'Monica', ',', 'you', 'think', 'Skippy', 'liked', 'you', '?', 'Honey', ',', 'all', 'those', 'buys', 'had', 'a', 'bet', 'to', 'see', 'if', 'he', 'can', 'knock', 'you', 'over', '.', 'Oh', ',', 'ok', ',', 'thank', 'you', '.', 'Do', 'you', 'see', 'what', 'all', 'the', 'guys', 'see', 'in', 'her', '?', 'Yeah', ',', 'sure', '!', 'Oh', ',', 'give', 'me', '!', 'Ahhhh', ',', 'you', 'brought', 'rats', 'to', 'my', 'birthday', 'party', '?', 'Are', 'you', 'comparing', 'my', 'daughter', 'to', 'a', 'rat', '?', 'whhh', 'wait', ',', 'you', \"'re\", 'gon', 'na', 'leave', 'my', 'party', 'to', 'take', 'care', 'of', 'a', 'box', 'of', 'rats', '?', 'Hi', '.', 'Thanks', 'for', 'the', 'party', ',', 'honey', '.', 'Should', 'I', 'help', 'you', 'clean', 'up', '?', 'Yeah', ',', 'I', 'just', 'get', 'a', 'little', 'bummed', 'when', 'my', 'birthday', \"'s\", 'over', '.', 'Mmm', 'hmm', '.', 'No', '.', 'Well', ',', 'it', 'was', ',', 'and', 'you', 'would', 'have', 'seen', 'it', 'if', 'you', 'did', \"n't\", 'showed', 'up', 'at', '...', '9:30', '?', '?', 'God', '!', 'Oh', ',', 'this', 'party', 'was', 'lame', '...', 'Oh', ',', 'you', 'bought', 'me', 'a', 'present', '!', 'Why', '?', 'Aww', '.', 'Well', ',', 'ok', ',', 'well', 'that', \"'s\", 'very', 'nice', '.', 'And', 'you', 'wrote', 'a', 'card', '.', '``', 'From', 'Gavin', \"''\", 'Awww', ',', 'awww', ',', 'it', \"'s\", 'beautiful', '.', 'See', ',', 'Gavin', ',', 'you', \"'re\", 'capable', 'of', 'being', 'a', 'nice', 'guy', '.', 'Why', 'did', 'you', 'give', 'me', 'such', 'a', 'hard', 'time', '?', 'Well', 'Monica', 'seems', 'to', 'think', 'it', \"'s\", 'because', 'you', 'have', 'feelings', 'for', 'me', '.', 'You', 'do', '?', 'See', '?', 'Why', ',', 'Gavin', ',', 'why', '?', 'Right', 'when', 'I', \"'m\", 'about', 'to', 'change', 'my', 'opinion', 'of', 'you', ',', 'you', 'go', 'and', 'you', '...', 'and', 'you', 'do', 'that', '...', 'Hi', 'guys', '!', 'Listen', 'I', 'really', 'need', 'your', 'help', '.', 'I', 'think', 'I', 'did', 'something', 'really', 'stupid', '.', 'No', 'not', 'that', '.', 'I', 'kissed', 'Gavin', 'last', 'night', '.', 'Yeah', '.', 'It', 'was', 'after', 'the', 'party', ',', 'we', 'were', 'on', 'the', 'balcony', 'and', '...', 'You', 'know', 'we', 'were', 'all', 'alone', 'and', 'he', 'was', 'being', 'really', 'nice', 'to', 'me', 'and', ',', 'oh', 'and', 'he', 'gave', 'me', 'this', 'scarf', '...', 'You', 'know', 'honey', ',', 'there', 'is', 'a', 'thin', 'line', 'between', 'love', 'and', 'hate', ',', 'and', 'it', 'turns', 'out', 'that', 'line', '...', 'is', 'a', 'scarf', '!', 'I', 'do', \"n't\", 'know', '.', 'It', \"'s\", 'so', 'complicated', '.', 'I', 'work', 'with', 'this', 'guy', ',', 'you', 'know', ',', 'I', 'have', 'the', 'baby', ',', 'and', 'I', 'have', 'Ross', ',', 'and', 'I', 'just', '...', 'I', 'do', \"n't\", 'Or', '...', 'I', 'could', 'call', 'in', 'sick', 'and', 'not', 'deal', 'with', 'it', 'at', 'all', '...', 'Who', 'is', 'it', '?', 'Why', '?', 'Oh', '!', 'Right', '!', 'Yeah', '!', 'Hold', 'on', ',', 'I', \"'ll\", 'be', 'just', 'clean', 'up', 'in', 'here', 'a', 'little', 'bit', '!', 'Hello', 'Gavin', 'I', 'a', 'not', 'gon', 'na', 'lie', 'to', 'you', ',', 'I', \"'m\", 'pretty', 'sick', 'Oh', 'no', 'no', 'no', 'So', 'did', 'I', 'It', \"'s\", 'just', 'a', 'cold', 'What', '?', 'What', \"'s\", 'the', 'matter', '?', 'Oh', 'he', \"'s\", 'dusting', 'me', 'with', 'a', 'fossil', 'brush', '.', 'He', 'thought', 'it', 'would', 'be', 'funny', '.', 'Oh', 'you', \"'re\", 'not', '.', 'You', \"'re\", 'not', 'gon', 'na', 'get', 'in', 'the', 'middle', 'of', 'anything', ',', 'do', \"n't\", 'worry', 'about', 'Ross', 'really', ',', 'really', '.', 'I', 'lied', '!', 'And', 'I', \"'m\", 'not', 'sick', '!', 'Just', 'stay', 'behind', 'the', 'curtain', '!', 'Oh', '!', 'Molly', '!', 'You', \"'re\", 'not', 'Ross', '.', 'Right', ',', 'right', ',', 'yes', '!', 'What', '?', 'No', '!', 'That', \"'s\", 'OK', '!', 'That', \"'s\", 'OK', '!', 'That', \"'s\", 'OK', '!', 'No', 'no', 'no', 'no', '!', 'This', 'is', 'my', 'business', 'associate', 'Gavin', '.', 'He', \"'s\", 'just', 'being', 'silly', '.', 'OK', '.', 'I', 'thought', 'it', 'was', 'Ross', '.', 'There', 'is', \"n't\", '.', 'There', 'is', 'totally', 'is', \"n't\", '.', 'All', 'right', '.', 'Look', '.', 'Gavin', '...', 'I', '...', 'I', 'guess', 'I', 'felt', 'guilty', 'that', 'you', 'were', 'here', ',', 'which', 'I', 'should', \"n't\", '.', 'You', 'know', 'Ross', 'and', 'I', 'are', 'not', 'in', 'Yes', 'People', 'keep', 'saying', 'that', '.', 'Oh', 'I', \"'m\", 'sorry', 'Gavin', 'So', 'seriously', '...', 'rodeo', 'clown', '?', 'Oh', ',', 'hey', '!', 'Hi', ',', 'there', 'you', 'are', ',', 'I', '’', 've', 'been', 'looking', 'for', 'you', 'everywhere', '!', 'Listen', ',', 'my', 'mum', 'is', 'not', 'bringing', 'the', 'baby', 'back', 'until', 'nine', 'o', '’', 'clock', '.', 'So', 'I', 'was', 'hoping', 'you', 'and', 'I', 'could', 'have', 'a', 'Who', '?', 'You', '’', 've', 'being', 'seeing', 'someone', '?', 'Hi', ',', 'and', 'I', 'am', 'also', 'Emma', '’', 's', 'mother', '.', 'Wow', '.', 'She', 'does', 'that', 'a', 'lot', '!', 'What', ',', 'what', ',', 'wait', 'a', 'minute', '!', 'You', 'haven', '’', 't', 'even', 'told', 'her', 'you', 'were', 'a', 'doctor', ',', 'yet', '?', 'How', 'long', 'have', 'you', 'known', 'her', ',', 'like', 'Ok', ',', 'Ross', ',', 'what', '’', 's', 'going', 'on', 'here', ',', 'are', 'we', 'just', 'bringing', 'strange', 'women', 'back', 'to', 'the', 'apartment', 'now', '?', 'How', 'do', 'you', 'know', 'about', 'that', '?', 'Oh', ',', 'that', '’', 's', 'what', 'this', 'is', 'all', 'about', '?', 'Did', 'you', 'bring', 'her', 'up', 'here', 'to', 'get', 'back', 'at', 'me', '?', 'Score', '.', 'Oh', 'God', ',', 'I', 'can', '’', 't', 'believe', 'you', '’', 're', 'making', 'such', 'a', 'big', 'deal', 'about', 'this', '.', 'It', 'was', 'one', 'kiss', ',', 'one', 'guy', ',', 'one', 'time', '!', 'Yeah', '.', 'Oh', 'yeah', '.', 'What', '?', 'Who', '?', 'Whoa', ',', 'how', 'do', 'you', 'know', 'about', 'that', '?', 'Why', 'didn', '’', 't', 'I', 'get', 'that', 'message', '?', 'From', 'the', 'guy', 'in', 'the', 'bar', ',', 'why', 'didn', '’', 't', 'I', 'get', 'that', 'message', '?', 'Ross', '?', 'Why', '?', 'Oh', 'God', '.', 'You', 'know', 'what', '?', 'Who', 'you', 'think', 'you', 'are', '?', 'Who', 'are', 'you', 'to', 'decide', 'what', 'messages', 'I', 'should', 'or', 'should', 'not', 'get', '?', 'Yes', '.', 'Oh', 'my', 'God', ',', 'I', 'can', 'not', 'believe', 'this', '.', 'You', 'know', 'I', 'actually', 'came', 'in', 'here', 'hoping', 'to', 'have', 'a', 'mature', 'conversation', 'with', 'you', 'Oh', ',', 'Ross', ',', 'this', 'is', 'just', 'so', 'messed', 'up', '!', 'What', '’', 's', 'wrong', 'with', 'us', '?', 'You', 'know', 'when', 'people', 'hear', 'about', 'our', 'situation', 'they', 'And', 'you', 'know', ',', 'we', 'said', 'that', 'we', 'would', ',', 'we', 'would', 'live', 'together', 'as', 'long', 'as', 'this', 'makes', 'sense', '.', 'An', 'maybe', 'this', ',', 'you', 'know', ',', 'Hi', '.', 'Can', 'Emma', 'and', 'I', 'live', 'here', 'for', 'a', 'while', '?', 'Thank', 'you', '.', 'Hey', '!', 'You', 'remembered', 'to', 'put', 'clothes', 'on', 'this', 'morning', '.', 'Oh', ',', 'Joey', ',', 'it', \"'s\", 'so', 'great', 'to', 'be', 'back', 'here', '.', 'I', 'got', 'ta', 'tell', 'you', ',', 'you', \"'re\", 'making', 'it', 'so', 'easy', 'on', 'me', 'and', 'Emma', '.', 'Well', ',', 'I', \"'ll\", 'probably', 'be', 'back', 'to', 'pick', 'her', 'up', 'around', 'six', ',', 'but', 'she', \"'s\", 'in', 'the', 'bedroom', 'all', 'ready', 'to', 'go', '.', 'But', 'she', 'did', 'actually', 'fall', 'back', 'to', 'sleep', ',', 'so', '...', 'Bye', '!', 'Hey', '!', 'You', 'guys', 'are', \"n't\", 'doing', 'anything', 'tonight', ',', 'are', 'you', '?', 'I', 'was', 'just', 'asking', \"'cause\", 'I', 'need', 'someone', 'to', 'watch', 'Emma', 'tonight', '.', 'Well', ',', 'Phoebe', 'set', 'me', 'up', 'on', 'a', 'date', '.', 'Why', '?', 'What', \"'s\", 'the', 'big', 'deal', '?', 'What', ',', 'slept', 'together', 'a', 'year', 'and', 'a', 'half', 'ago', '?', 'Yeah', ',', 'I', \"'m\", 'all', 'set', '.', 'So', 'I', \"'ll\", 'bring', 'her', 'by', 'around', 'seven', '?', 'Is', 'that', 'okay', '?', 'Oh', ',', 'you', 'guys', 'are', 'gon', 'na', 'have', 'so', 'much', 'fun', '!', 'She', \"'s\", 'at', 'such', 'a', 'cute', 'age', '.', 'Oh', ',', 'a', 'couple', 'things', '.', 'Now', 'that', 'she', \"'s\", 'eating', 'solid', 'food', ',', 'she', 'poops', 'around', 'the', 'clock', '.', 'And', 'watch', 'out', 'for', 'your', 'hair', ',', \"'cause\", 'she', 'likes', 'to', 'grab', 'it', '.', 'And', 'oh', ',', 'she', \"'s\", 'also', 'in', 'this', 'phase', 'where', 'if', 'you', 'leave', 'the', 'room', ',', 'she', 'screams', 'bloody', 'murder', ',', 'but', 'ah', '...', 'Thanks', ',', 'you', 'guys', '.', 'Have', 'fun', '!', 'Wow', ',', 'everything', 'looks', 'so', 'good', '!', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'have', 'the', 'chicken', '.', 'Oh', ',', 'well', ',', 'that', \"'s\", '-', 'that', \"'s\", 'very', 'sweet', '.', 'Thank', 'you', '.', 'What', '?', 'Well', ',', 'come', 'on', ',', 'Steve', ';', 'let', \"'s\", 'not', 'rule', 'out', 'nervous', 'laughter', '.', 'Hey', ',', 'now', 'wait', 'a', 'minute', '.', 'Phoebe', 'told', 'me', 'that', '-', 'that', 'you', 'owned', 'your', 'own', 'restaurant', '.', 'That', \"'s\", 'impressive', '.', 'Really', '?', 'What', \"'s\", 'that', 'like', '?', 'Really', '?', 'Phoebe', ',', 'it', \"'s\", 'me', '.', 'I', \"'m\", 'going', 'to', 'hunt', 'you', 'down', 'and', 'kill', 'you', '!', 'This', 'is', 'the', 'worst', 'date', 'ever', '.', 'How', 'could', 'you', 'set', 'me', 'up', 'with', 'this', 'creep', '?', 'I', 'do', \"n't\", 'care', '!', 'This', 'guy', 'is', 'a', 'nightmare', '!', 'He', \"'s\", 'not', 'stoned', '.', 'Yeah', ',', 'four', 'times', '.', 'No', ',', 'no', ',', 'no', ',', 'I', 'admire', 'a', 'man', 'who', 'can', 'cry', '.', 'Do', \"n't\", 'touch', 'my', 'coat', '!', 'Oh', ',', 'sorry', ',', 'it', \"'s\", 'my', 'phone', '.', 'Hello', '?', 'Oh', 'my', 'god', ',', 'this', 'is', 'the', 'worst', 'date', 'ever', '!', 'No', '.', 'What', '?', 'What', 'do', 'you', 'mean', ',', '``', 'there', 'you', 'are', \"''\", '?', 'Where', 'was', 'she', '?', 'Well', ',', 'uh', '...', 'Really', ',', 'really', 'not', '.', 'All', 'right', ',', 'well', 'that', \"'s\", 'good', 'to', 'know', '.', 'Good', 'night', ',', 'Steve', '.', 'I', 'just', 'had', 'a', 'rough', 'night', '.', 'Eww', '!', 'Oh', ',', 'well', ',', 'I', '...', 'It', \"'s\", 'kind', 'of', 'weird', 'talking', 'to', 'you', 'about', 'this', ',', 'but', '...', 'Yeah', '.', 'Oh', '.', 'Oh', ',', 'oh', 'no', '.', 'Do', 'you', 'think', 'she', 'walked', 'in', ',', 'saw', 'you', 'and', 'left', '?', 'Well', ',', 'if', 'it', 'makes', 'you', 'feel', 'any', 'better', ',', 'I', 'wish', 'my', 'date', 'had', \"n't\", 'shown', 'up', '.', 'Well', ',', 'he', 'makes', 't-shirts', 'for', 'a', 'living', ',', 'and', 'he', 'thought', 'it', 'would', 'be', 'appropriate', 'to', 'give', 'me', 'this', '.', 'Oh', '.', 'Huh', '.', 'You', 'know', ',', 'it', 'is', 'weird', 'that', 'Phoebe', 'would', 'set', 'me', 'up', 'on', 'a', 'date', 'that', 'was', 'awful', 'on', 'the', 'same', 'night', 'that', 'Joey', 'set', 'you', 'up', 'on', 'a', 'date', 'that', 'did', \"n't\", 'even', 'show', '.', 'Joey', '!', 'You', 'never', 'gon', 'na', 'believe', 'it', ':', 'she', 'called', '.', 'You', 'got', 'it', '!', 'Your', 'agent', 'called', '.', 'You', 'got', 'that', 'audition', '.', 'Yes', '.', 'Yeah', ',', 'and', 'Lennart', 'Haze', 'is', 'starring', 'in', 'it…', 'You', 'saw', 'that', '?', 'Oh', ',', 'yeah', '.', 'Oh', ',', 'I', 'loved', 'him', 'in', 'those', 'cell', 'phone', 'commercials', '.', 'Oh', ',', 'anything', 'yet', '?', 'Joey', ',', 'that', 'was', 'formula', '.', 'Okay', ',', 'first', 'of', 'all', ',', 'that', \"'s\", 'stupid', 'and', 'second', 'of', 'all', ',', 'I', \"'m\", 'not', 'allowed', 'to', 'talk', 'to', 'Ralph', '.', 'Hi', 'you', 'guys', '!', 'Oh', 'er', '...', 'well', 'you', 'know', 'Emma', 'started', 'crawling', '?', 'I', 'realised', 'that', 'this', 'place', ',', 'is', 'very', 'unsafe', 'for', 'a', 'baby', '.', 'So', 'I', 'went', 'to', 'the', 'store', 'and', 'got', 'some', 'stuff', 'to', 'baby-proof', 'the', 'apartment', '.', 'No', '.', 'I', 'was', 'just', 'going', 'to', 'do', 'this', 'myself', '.', 'Yeah', ',', 'Why', '?', 'You', 'do', \"n't\", 'think', 'a', 'woman', 'can', 'do', 'this', '?', 'Monica', '...', 'would', 'you', 'please', 'tell', 'Joey', 'that', 'he', 'is', 'a', 'pig', '?', 'Wha', '!', '?', 'What', '!', '?', 'Come', 'on', '!', 'I', 'found', 'the', 'hardware', 'store', 'all', 'by', 'myself', '!', 'There', 'is', 'a', 'hardware', 'store', 'right', 'down', 'the', 'street', '?', 'This', 'is', 'easy', '...', 'Ca', \"n't\", 'do', 'this', '!', 'Oh', '!', 'Wow', '!', 'Seriously', 'I', 'ca', \"n't\", 'do', 'this', '.', 'Hi', '!', 'Yeah', ',', 'I', 'do', \"n't\", 'know', 'who', 'I', 'was', 'kidding', '.', 'I', 'can', 'barely', 'use', 'chopsticks', '.', 'Oh', 'thank', 'you', 'so', 'much', '.', 'Oh', 'oh', 'wait', '!', 'You', 'forgot', 'your', 'erm', '...', 'Your', 'game', '.', 'Do', \"n't\", 'look', 'at', 'me', 'I', 'never', 'get', 'his', 'jokes', '.', 'Just', 'when', 'you', 'thought', 'that', 'dude', 'could', \"n't\", 'get', 'any', 'wierder', '.', 'I', 'do', \"n't\", 'know', '!', 'I', 'mean', ',', 'what', 'brought', 'that', 'on', '?', 'No', 'you', 'really', 'think', 'that', \"'s\", 'what', 'it', 'is', '?', 'Yeah', '!', 'If', 'you', 'do', \"n't\", 'I', 'will', '!', 'Of', 'course', 'your', 'body', \"'s\", 'gon', 'na', 'change', '.', 'Your', 'breasts', 'are', 'gon', 'na', 'get', 'bigger', ',', 'your', 'ass', 'is', 'gon', 'na', 'get', 'bigger', ',', 'you', \"'re\", 'gon', 'na', 'lose', 'bladder', 'control', '.', 'God', '!', 'It', \"'s\", 'just', 'such', 'a', 'magical', 'time', '!', 'Argh', '.', 'fascist', 'Man', ',', 'do', \"n't\", 'be', 'surprised', 'if', 'her', 'hands', 'and', 'her', 'feet', 'get', 'bigger', 'too', '!', 'Oh', 'my', 'god', 'Chandler', '!', 'If', 'you', 'ca', \"n't\", 'handle', 'this', ',', 'what', 'are', 'you', 'going', 'to', 'be', 'like', 'in', 'the', 'hospital', '?', 'With', 'the', 'blood', 'and', 'the', 'screaming', 'and', 'the', 'little', 'present', 'that', \"'s\", 'shooting', 'out', 'of', 'her', '!', '?', 'Joey', '!', 'Why', 'did', 'you', 'tell', 'Chandler', 'that', 'Monica', 'was', 'getting', 'a', 'boob', 'job', '?', 'Yeah', ',', 'seriously', 'coz', 'this', 'is', 'really', 'heavy', '.', 'I', 'mean', 'not', 'for', 'me', 'because', 'i', \"'m\", 'only', 'pretending', 'to', 'hold', 'this', ',', 'but', 'for', 'these', 'guys', '.', 'I', \"'m\", 'so', 'sorry', 'Pheebs', '.', 'Hey', '!', 'How', 'was', 'basketball', '?', 'Oh', ',', 'no', '!', 'Who', 'did', 'that', '?', 'She', 'was', 'just', 'crawling', 'around', 'and', 'she', 'found', 'him', ',', 'so', 'I', 'just', 'let', 'her', 'sleep', 'with', 'him', '.', 'That', \"'s\", 'all', 'right', '?', 'Is', \"n't\", 'it', '?', 'Joey', '...', 'are', 'you', 'sure', '?', 'I', 'mean', ',', 'I', 'know', 'how', 'much', 'you', 'love', 'him', '!', 'All', 'right', '...', 'Oh', ',', 'Emma', 'loves', 'him', '!', ':', 'Step', 'away', 'from', 'the', 'crib', ',', 'I', 'have', 'a', 'weapon', '!', 'What', 'are', 'you', 'doing', '?', 'Oh', ',', 'oh', 'thanks', '.', 'Alright', 'well', ',', 'now', 'that', 'I', \"'m\", 'up', 'I', \"'m\", 'going', 'to', 'go', 'to', 'the', 'bathroom', '.', 'Joey', ',', 'Emma', \"'s\", 'right', 'here', '!', 'You', 'promised', 'not', 'to', 'bring', 'girls', 'home', 'in', 'the', 'middle', 'of', 'the', 'day', 'anymore', '.', 'Oh', 'that', \"'s\", 'so', 'great', ',', 'now', 'Emma', 'has', 'two', 'Hugsy', \"'s\", '.', 'Oh', 'you', 'know', 'what', '?', 'When', 'I', 'was', 'a', 'little', 'girl', 'I', 'had', 'a', 'little', 'pink', 'pony', 'named', 'Cotton', '.', 'Oh', 'I', 'loved', 'her', 'so', 'much', ',', 'I', 'took', 'her', 'everywhere', ',', 'I', 'would', 'braid', 'her', 'tail', '...', 'Should', 'I', 'be', 'concerned', 'that', 'a', 'button', 'fell', 'off', 'the', 'old', 'Hugsy', 'and', 'I', 'ca', \"n't\", 'find', 'it', '?', 'Oh', ',', 'I', 'do', \"n't\", 'think', 'she', 'likes', 'the', 'new', 'Hugsy', '.', 'Yeah', ',', 'I', 'think', 'she', 'wants', 'the', 'old', 'one', 'back', '.', 'Joey', ',', 'come', 'on', '!', 'I', \"'m\", 'trying', 'to', 'put', 'Emma', 'down', 'for', 'a', 'nap', ',', 'have', 'you', 'seen', 'Hugsy', '?', 'Original', '.', 'Then', 'what', \"'s\", 'that', 'big', 'lump', 'under', 'your', 'covers', '?', 'That', \"'s\", 'not', 'Monica', '!', 'Oh', 'God', '.', 'Joey', ',', 'there', 'is', 'a', 'reason', 'that', 'Emma', 'loves', 'that', 'stupid', 'penguin', 'so', 'much', 'Oh', 'do', \"n't\", 'cover', 'its', 'ears', '!', 'It', \"'s\", 'because', 'it', 'reminds', 'her', 'of', 'her', 'uncle', 'Joey', '!', 'Yeah', '!', 'And', 'she', \"'s\", 'comforted', 'by', 'him', 'because', 'she', 'loves', 'her', 'uncle', 'Joey', 'so', 'much', '.', 'Oh', 'yeah', '!', 'But', 'you', 'know', 'what', '?', 'If', 'you', 'need', 'Hugsy', ',', 'do', \"n't\", 'worry', '.', 'Emma', 'will', 'totally', 'understand', '.', 'I', 'wo', \"n't\", '...', 'but', 'whatever', '.', 'Oooh', '...', 'you', \"'re\", 'sweet', ',', 'I', 'knew', 'uncle', 'Joey', 'would', 'step', 'up', '.', 'Look', 'Emma', ',', 'look', 'who', \"'s\", 'baaack', '!', 'Are', 'you', 'gon', 'na', '...', 'you', \"'re\", 'going', 'to', 'take', 'Hugsy', 'away', 'from', 'a', 'little', 'child', '?', 'Oh', '!', 'So', 'you', \"'re\", 'driving', 'up', 'to', 'Connecticut', '?', 'Yeah', 'me', 'too', '.', 'oh', '!', 'I', 'have', 'an', 'idea', '.', 'Why', 'do', \"n't\", 'we', 'all', 'pitch', 'in', '50', 'bucks', ',', 'we', \"'ll\", 'pool', 'our', 'money', 'together', 'and', 'then', 'if', 'we', 'win', ',', 'we', \"'ll\", 'split', 'it', '!', 'Yeah', 'so', 'get', 'ready', 'to', 'hear', 'alot', 'of', 'ehm', '...', 'boohaki', ',', 'goshdarnit', 'and', 'brotherpucker', '.', 'Well', 'when', 'I', 'talk', 'to', 'her', 'I', 'almost', 'feel', 'like', 'she', 'understands', 'what', 'I', \"'m\", 'saying', '.', 'Joey', 'relax', '!', 'My', 'mother', 'picked', 'her', 'up', 'two', 'hours', 'ago', '.', 'You', 'were', 'there', '!', 'She', 'dropped', 'off', 'a', 'casserole', '?', 'What', \"'s\", 'going', 'on', '?', 'Well', ',', 'there', \"'s\", 'two', 'spots', 'left', 'right', '?', 'Oh', 'no', ',', 'I', \"'m\", 'good', ',', 'I', 'do', \"n't\", 'wan', 'na', 'get', 'that', 'turkey', 'smell', 'all', 'over', 'my', 'hands', '.', 'You', 'know', ',', 'Ross', ',', 'just', 'keep', 'making', 'your', 'jokes', '.', 'How', 'are', 'you', 'gon', 'na', 'feel', 'if', 'we', 'actually', 'do', 'win', '?', 'Oh', ',', 'I', 'know', ',', 'I', 'know', ',', 'the', 'odds', 'are', 'against', 'us', ',', 'but', 'somebody', 'has', 'to', 'win', ',', 'and', 'it', 'could', 'be', 'us', '!', 'And', 'then', 'how', 'you', 'gon', 'na', 'feel', '?', 'You', 'know', ',', 'we', \"'re\", 'gon', 'na', 'be', 'all', 'like', '``', 'oh', 'everybody', ',', 'let', \"'s\", 'take', 'our', 'helicopters', 'up', 'to', 'the', 'cape', \"''\", 'and', 'you', \"'re\", 'gon', 'na', 'be', 'all', 'like', '``', 'oh', ',', 'I', 'ca', \"n't\", 'guys', ',', 'I', \"'ll\", 'meet', 'you', 'guys', 'up', 'there', ',', 'I', 'got', 'ta', 'gas', 'up', 'the', 'Hyundai', \"''\", 'I', 'do', \"n't\", 'really', 'care', 'about', 'the', 'Knicks', '.', 'You', 'would', 'do', 'that', '?', 'I', 'never', 'get', 'picked', '!', 'I', \"'m\", 'hoping', 'that', 'if', 'she', 'hears', 'it', 'enough', 'it', 'will', 'be', 'her', 'first', 'word', '.', 'Ooh', ',', 'you', 'guys', ',', 'it', 'starts', 'in', 'like', '20', 'minutes', '.', 'Ooh', ',', 'I', 'have', 'another', 'idea', '!', 'Well', ',', 'well', ',', 'well', ',', 'look', 'what', 'mommy', 'found', '!', '!', 'Ok', ',', 'well', 'Monica', ',', 'suppose', 'one', 'of', 'your', '``', 'special', \"''\", 'tickets', 'win', '?', 'How', 'are', 'you', 'gon', 'na', 'feel', 'when', 'you', 'win', 'the', 'lottery', 'and', 'you', 'lose', 'all', 'your', 'friends', '?', 'Chandler', ',', 'would', 'you', 'just', 'tell', 'her', 'what', 'she', 'did', 'was', 'wrong', '?', 'All', 'right', ',', 'believe', 'me.If', 'you', 'win', 'the', 'lottery', ',', 'it', \"'s\", 'the', 'last', 'you', \"'re\", 'gon', 'na', 'hear', 'from', 'us', '!', 'OH', '!', 'Alright', ',', 'you', 'know', 'what', '?', 'That', \"'s\", 'it', '!', 'I', 'want', 'my', 'share', 'of', 'the', 'tickets', '!', 'Ok', ',', 'that', \"'s\", 'it', '!', 'Just', \"give'em\", 'to', 'me', '!', 'I', \"'ll\", 'split', 'them', 'up', '!', 'Oh', ',', 'if', 'she', 'jumps', ',', 'I', 'get', 'her', 'tickets', '.', 'Oh', ',', 'it', 'is', 'so', 'unfair', '.', 'It', \"'s\", 'like', 'that', 'time', 'they', 'promoted', 'Sandra', 'over', 'me', 'at', 'work', '.', 'No', ',', 'she', 'was', 'just', 'much', 'better', 'at', 'job', 'than', 'me', '!', 'You', 'know', 'what', '?', 'We', 'should', 'call', 'my', 'mum', \"'s\", 'house', 'and', 'say', 'goodnight', 'to', 'Emma', 'before', 'she', 'goes', 'down', '.', 'Hi', 'mum', ',', 'put', 'her', 'back', 'on', '!', 'Mum', ',', 'please', '!', 'I', 'know', 'you', 'love', 'your', 'new', 'lips', ',', 'but', 'I', 'can', 'barely', 'understand', 'you', '!', 'Would', 'you', ',', 'please', ',', 'just', 'let', 'me', 'say', 'goodnight', 'to', 'my', 'daughter', '?', 'Guys', ',', 'you', \"'re\", 'not', 'gon', 'na', 'believe', 'this', '!', 'I', 'was', 'just', 'saying', 'goodnight', 'to', 'Emma', 'and', 'she', 'said', 'her', 'first', 'words', '!', '!', 'She', 'said', '``', 'gleba', \"''\", '!', '!', 'Is', \"n't\", 'that', 'amazing', '?', 'Why-why', 'are', \"n't\", 'you', 'more', 'excited', '?', 'Oh', ',', 'but', 'of', 'course', 'it', 'is', '!', 'I', 'do', \"n't\", 'know', 'all', 'the', 'words', '.', 'Ok', '...', '``', 'Emma', 'just', 'said', 'gleba', \"''\", '!', 'Okay', ',', 'okay', ',', 'okay', ',', 'fine', ',', 'I', \"'m\", 'gon', 'na', 'look', 'it', 'up', '.', 'Alright', ',', 'okay', ',', 'okay', ',', 'gleba', ',', 'gleba', '...', 'Gleba', '!', 'Ha', '!', 'Here', 'it', 'is', ':', 'the', 'fleshy', ',', 'spore-bearing', 'inner', 'mass', 'of', 'a', 'certain', 'fungi', '.', 'You', 'know', 'what', '?', 'There', 'is', 'a', 'little', 'part', 'of', 'me', 'that', 'really', 'thought', 'we', 'were', 'gon', 'na', 'win', '.', 'What', '?', 'So', 'Pheebs', ',', 'what', 'are', 'you', 'going', 'to', 'do', 'with', 'your', '$', '3', '?', 'Me', 'too', '.', 'I', 'do', \"n't\", 'wan', 'na', 'stand', 'in', 'the', 'way', 'of', 'true', 'love', 'or', 'anything', ',', 'but', 'I', 'think', 'a', 'canelope', 'might', 'hurt', 'less', '.', 'Woow', '!', 'I', 'have', \"n't\", 'seen', 'you', 'this', 'worked', 'up', 'since', 'you', 'did', 'that', 'dog', 'food', 'commercial', 'and', 'you', 'thought', 'you', 'were', 'gon', 'na', 'be', 'with', 'a', 'real', 'talking', 'dog', '!', 'Are', 'you', 'serious', '?', 'Hey', ',', 'that', 'was', 'an', 'honest', 'mistake', '!', 'Yeah', ',', 'that', 'was', 'an', 'awesome', 'day', '!', 'Hey', 'Joey', ',', 'is', 'this', 'the', 'bed', 'where', 'Olivia', 'lost', 'her', 'virginity', '?', 'Oh', ',', 'please', '!', 'Honey', ',', 'just', 'the', 'fact', 'that', 'you', 'want', 'me', 'here', 'to', 'support', 'you', ',', 'I', \"'m\", '...', 'OH', 'MY', 'GOD', '!', 'Is', 'that', 'Christian', 'Sanders', '?', 'He', \"'s\", 'so', 'gorgeous', '!', 'Oh', ',', 'in', 'my', 'head', 'he', \"'s\", 'done', 'some', 'pretty', '``', 'not-gay-stuff', \"''\", '!', 'Ok', ',', 'not', 'that', 'you', 'need', 'it', 'but', 'good', '...', 'GOD', '!', 'Is', 'that', 'Chase', 'Lassiter', '?', 'He', \"'s\", 'straight', ',', 'right', '?', 'Oh', ',', 'I', \"'m\", 'sorry', ',', 'you', \"'re\", 'right', '.', 'I', \"'m\", 'sorry', ',', 'good', 'luck', '!', 'OH', '!', 'SSSHHHHTTT', '!', '!', '!', 'He', \"'s\", 'asking', 'her', 'a', 'question', '!', '!', '!', 'NO', '!', 'Or', ',', 'cut', '!', 'You', 'know', ',', 'that', \"'s\", 'your', 'call', '!', 'Hi', '!', 'Joey', ',', 'I', 'got', 'ta', 'tell', 'ya', ',', 'I', \"'ve\", 'been', 'thinking', 'all', 'day', 'about', 'that', 'scene', 'you', 'did', ',', 'I', 'mean', ',', 'you', 'were', 'amazing', '!', 'God', ',', 'you', 'have', 'to', 'tell', 'me', 'what', 'happens', 'tomorrow', '!', 'Me', '?', 'Oh', ',', 'no', ',', 'I', 'am', 'not', 'an', 'actress', '.', 'Oh', 'screw', 'her', ',', 'that', 'part', 'is', 'mine', '!', 'Okay', '.', '.', 'Hello', 'Drake', ',', 'I', \"'m\", 'surprised', 'to', 'see', 'you', 'here', '.', 'Kiss', 'me', '.', 'Kiss', 'me', '.', 'No', ',', 'I', \"'m\", 'saying', '...', 'just', '...', 'do', \"n't\", 'talk', '...', 'Ehhh', ',', 'aw', '!', '.', 'Well', ',', 'that', \"'s\", 'new', '!', 'Can', 'I', 'ask', 'you', 'a', 'question', '?', 'Have', 'you', 'ever', 'had', 'any', 'weird', 'romantic', 'dreams', '?', 'Ok', ',', 'well', 'this', 'is', 'like', 'that', '...', 'in', 'no', 'way', '.', 'I', 'had', 'a', '...', 'I', 'had', 'a', 'dream', 'last', 'night', 'that', 'I', 'wanted', 'to', 'kiss', 'Joey', '.', 'Oh', 'yeah', '!', 'I', 'mean', ',', 'that', 'was', 'pretty', 'intense', '.', 'I', 'do', \"n't\", 'know', '!', 'I', 'mean', ',', 'maybe', 'that', \"'s\", 'something', 'to', 'do', 'with', 'the', 'fact', 'that', 'I', 'saw', 'him', 'do', 'a', 'love', 'scene', 'yesterday', '.', 'Olivia', '.', 'So', 'do', 'you', 'think', 'that', 'my', 'dream', 'means', 'anything', '?', 'Ah', '!', 'Well', 'it', 'was', 'Joey', 'reading', 'Drake', \"'s\", 'lines', 'in', 'the', 'dream', '...', 'You', 'took', 'the', 'same', 'class', 'twice', '.', 'Hey', ',', 'so', 'you', 'guys', ',', 'the', 'funniest', 'thing', 'happened', ',', 'at', 'work', '...', 'Ok', ',', 'we', \"'re\", 'still', 'on', 'that', '.', 'Hey', '!', 'Joey', ',', 'do', 'you', 'have', 'peanut', 'butter', 'on', 'the', 'back', 'of', 'your', 'head', '?', 'How', '...', 'how', '...', '?', 'uh-huh', 'Wow', '...', 'definitely', 'just', 'Drake', '...', 'What', '...', 'how', 'is', 'it', 'going', 'with', 'Drake', '?', 'What', '...', 'that', 'scene', 'I', 'saw', 'was', 'so', 'good', '!', 'Joey', ',', 'is', 'this', 'that', 'thing', 'that', 'you', 'do', 'when', 'you', 'say', 'you', \"'re\", 'bad', 'so', 'I', \"'ll\", 'give', 'you', 'a', 'compliment', '?', 'So', '?', 'Ooh', '!', 'Honey', ',', 'it', 'ca', \"n't\", 'be', 'that', 'hard', ',', 'I', 'mean', ',', 'you', \"'ve\", 'been', 'in', 'love', 'before', '?', 'Ok', '...', 'this', 'could', 'be', 'a', 'little', 'awkward', '...', 'I', \"'m\", 'just', 'going', 'to', 'blow', 'past', 'it', '...', 'well', 'ca', \"n't\", 'you', 'just', 'use', 'that', 'method', 'actor', 'thing', 'where', 'you', 'use', 'your', 'real', 'life', 'memories', 'to', 'help', 'you', 'in', 'your', 'performance', '?', 'Alright', ',', 'alright', 'look', ',', 'just', 'uh', '...', 'just', 'try', 'to', 'remember', 'how', 'you', 'felt', 'when', 'you', 'were', 'in', 'love', ',', 'and', 'think', 'about', 'that', 'when', 'you', \"'re\", 'playing', 'the', 'scene', '.', 'Joey', ',', 'you', 'never', '..', 'you', 'never', 'talked', 'about', 'that', 'before', '...', 'Oh', ',', 'sorry', '...', 'Oops', ',', 'sorry', '.', 'Ooh', '...', 'oooh', '...', 'oh', ',', 'ah', '...', 'Can', 'I', 'ask', 'you', 'a', 'question', '?', 'Do', 'you', 'think', 'it', \"'s\", 'possible', 'for', 'two', 'friends', 'to', 'fool', 'around', 'and', '...', 'and', 'not', 'have', 'it', 'be', 'a', 'big', 'deal', '?', 'No', 'reason', '.', 'Yeah', 'Nobody', ',', 'forget', 'it', '!', 'Maybe', '.', 'Why', '?', 'Seriously', 'I', 'did', 'not', 'understand', 'a', 'word', 'that', 'you', 'said', '.', 'Yeah', '!', 'You', 'know', ',', 'ever', 'since', 'I', 'had', 'that', 'dream', 'about', 'him', ',', 'and', 'ca', \"n't\", 'get', 'it', 'out', 'of', 'my', 'head', '!', 'And', 'what', \"'s\", 'the', 'big', 'deal', ',', 'people', 'do', 'it', 'all', 'the', 'time', '!', 'Ok', ',', 'off', 'the', 'top', 'of', 'my', 'head', '...', 'Don', 'and', 'Janet', '.', 'I', 'know', 'them', 'from', 'work', '.', 'No', ',', 'one', 'of', 'them', '...', 'I', 'do', \"n't\", 'know', ',', 'what', 'were', 'the', 'names', 'I', 'just', 'said', '?', 'All', 'right', ',', 'all', 'right', ',', 'you', \"'re\", 'right', ',', 'I', 'wo', \"n't\", 'do', 'anything', 'with', 'Joey', ',', 'I', 'just', 'thought', 'that', 'we', 'Ok', 'so', 'that', 'would', 'be', 'two', 'cups', 'of', 'tarragon', ',', 'one', 'pound', 'of', 'baking', 'soda', 'and', 'one', 'red', 'onion', '?', 'Hey', '!', 'Yeah', ',', 'it', \"'s\", 'a', 'real', 'shame', 'you', 'ca', \"n't\", 'make', 'it', 'to', 'that', 'one-woman', 'show', 'tonight', '.', 'Oh', ',', 'yeah', ',', 'yeah', ',', 'yeah', '...', 'You', 'are', 'having', 'a', 'party', 'tonight', '?', '?', 'And', 'you', 'were', \"n't\", 'going', 'to', 'tell', 'us', '?', 'How', 'did', 'you', 'think', 'you', 'were', 'gon', 'na', 'get', 'away', 'with', 'that', '?', 'You', 'do', 'that', 'every', 'year', '?', '?', 'Oh', ',', 'that', \"'s\", 'why', 'you', 'got', 'these', 'tickets', 'to', 'that', 'play', ',', 'to', 'get', 'rid', 'of', 'us', '?', '?', 'And', 'last', 'year', 'is', 'that', 'why', 'you', 'sent', 'us', 'to', 'that', 'medieval', 'times', 'restaurant', '?', 'OH', '!', 'And', 'the', 'year', 'before', 'that', ',', 'when', 'you', 'set', 'up', 'that', 'nighttime', 'tour', 'of', 'that', 'button', 'factory', '?', 'Joey', ',', 'why', 'would', \"n't\", 'you', 'invite', 'us', 'to', 'your', 'parties', '?', 'Well', ',', 'then', 'so', 'you', 'just', 'invite', 'me', '...', '!', 'Oh', ',', 'Joey', ',', 'come', 'on', '!', 'Please', ',', 'please', '!', 'Let', 'me', 'come', ',', 'I', 'will', 'behave', ',', 'I', 'promise', '!', 'I', 'will', 'behave', '!', 'Please', ',', 'please', ',', 'please', '...', 'OH', ',', 'a', 'soap', 'opera', 'roof', 'party', '!', '!', 'I', \"'m\", 'going', 'to', 'a', 'soap', 'opera', 'roof', 'party', '!', '!', 'Oh', 'my', 'God', ',', 'oh', 'my', 'God', '!', '!', 'And', 'it', \"'s\", 'out', 'of', 'my', 'system', '!', 'Hey', '...', 'Hi', 'you', 'guys', '!', 'Listen', ',', 'you', 'know', 'what', '?', 'I', \"'m\", 'not', 'feeling', 'really', 'well', '.', 'I', 'think', 'I', 'ca', \"n't\", 'get', 'out', 'for', 'the', 'play', '.', 'I', 'do', \"n't\", 'know', '!', 'I', 'think', 'it', \"'s\", 'kind', 'of', 'serious', '!', 'Oh', ',', 'you', 'know', '...', 'I', 'was', 'watching', 'this', 'thing', 'on', 'TV', 'this', 'morning', 'about', '...', 'Newcastle', 'disease', '...', 'and', 'I', 'think', 'I', 'might', 'have', 'it', '!', '!', '...', 'Ok', ',', 'who', 'is', 'this', '?', 'Oh', ',', 'hi', '!', 'I', 'would', 'check', 'your', 'hand', 'but', '...', 'I', \"'m\", 'sure', 'you', 'do', \"n't\", 'want', 'to', 'get', 'my', 'chicken', 'disease', '!', 'Sure', '!', 'Oh', '...', 'What', '?', 'Yes', ',', 'I', 'am', '!', 'When', 'you', \"'re\", 'sick', ',', 'you', 'do', 'whatever', 'you', 'can', 'to', 'make', 'yourself', 'feel', 'better', '!', 'Oh', ',', 'no', ',', 'no', '!', 'I', 'heard', 'you', 'before', ',', 'that', 'is', 'so', 'not', 'what', 'this', 'is', '!', 'Ok', '!', 'Joey', 'is', 'having', 'a', 'secret', 'Days', 'Of', 'Our', 'Lives', 'party', 'up', 'on', 'the', 'roof', 'and', 'he', 'sent', 'you', 'guys', 'to', 'the', 'play', 'to', 'get', 'rid', 'of', 'you', '!', 'And', 'he', 'did', \"n't\", 'want', 'you', 'guys', 'to', 'know', 'about', 'it', 'but', 'I', 'came', 'over', 'here', 'to', 'tell', 'you', '!', '!', 'Ok', 'professor', 'or', 'detective', '?', 'Yeah', ',', 'and', 'he', 'does', 'it', 'every', 'year', '!', 'That', \"'s\", 'why', 'he', \"'s\", 'sending', 'you', 'to', 'that', 'play', '!', 'That', \"'s\", 'why', 'he', 'sent', 'us', 'to', 'that', 'medieval', 'restaurant', 'and', 'to', 'that', 'button', 'factory', '!', 'Ok', 'actually', 'Mon', ',', 'Matthew', 'was', 'just', 'giving', 'me', 'his', 'phone', 'number', '.', 'Nice', 'to', 'meet', 'you', '.', 'Ok', 'Yeah', '!', 'Yeah', ',', 'well', ',', 'I', 'guess', 'I', 'have', 'forgotten', 'about', 'Joey', 'and', 'clearly', 'you', \"'ve\", 'forgotten', 'about', 'Chandler', '!', 'I', 'always', 'loved', 'that', '!', '!', 'Come', 'on', '!', 'I', 'think', 'this', 'is', 'funny', '!', 'Just', 'some', 'boys', 'gave', 'me', 'their', 'phone', 'numbers', '.', 'I', 'think', 'I', 'am', '.', 'Why', ',', 'why', ',', 'what', \"'s\", 'wrong', 'with', 'these', 'guys', '?', 'Joey', ',', 'you', \"'re\", 'so', 'sweet', '.', 'Who', '?', 'What', '?', 'Really', '?', 'Oh', '!', 'Screw', 'it', ',', 'I', 'did', \"n't\", 'get', 'it', '!', 'Oh', ',', 'Very', 'funny', '...', 'Joey', '.', 'Hey', '!', 'I', 'just', 'wanted', 'to', 'let', 'you', 'know', 'I', \"'ve\", 'changed', 'my', 'mind', ':', 'I', \"'m\", 'gon', 'na', 'do', 'it', ',', 'I', \"'m\", 'gon', 'na', 'kiss', 'Joey', '.', 'Please', ',', 'what', 'about', 'you', 'and', 'Chandler', '?', 'Well', 'hello', '!', 'I', 'could', ',', 'I', 'could', 'but', 'I', 'do', \"n't\", 'want', 'to', '!', 'I', 'want', 'to', 'kiss', 'Joey', '!', 'I', \"'m\", 'gon', 'na', 'do', 'it', '.', 'No', '.', 'I', 'do', \"n't\", 'know', 'why', 'Joey', 'had', 'to', 'kiss', 'her', '!', 'I', 'mean', ',', 'of', 'all', 'the', 'girls', 'at', 'the', 'party', ',', 'GOD', '!', 'Be-cause', 'Ross', 'is', 'the', 'father', 'of', 'my', 'child', '!', 'You', 'know', '...', 'and', 'I', '...', 'want', 'him', 'to', 'hook', 'up', 'with', 'lots', 'of', 'women', '!', 'I', 'just', '...', 'All', 'I', \"'m\", 'saying', 'is', '...', 'I', 'do', \"n't\", 'think', 'that', 'Joey', 'and', 'Charlie', 'have', 'anything', 'in', 'common', '.', 'All', 'right', ',', 'so', '...', 'Ross', ',', 'you', \"'re\", 'ok', 'with', 'all', 'this', '?', 'I', 'mean', '...', 'Oh', ',', 'OH', '!', 'Wow', ',', 'I', 'love', 'those', '!', 'Where', 'did', 'you', 'get', 'them', '?', 'Phoebe', ',', 'Shania', 'Twain', 'is', 'still', 'alive', '!', 'Oh', ',', 'it', \"'s\", 'a', 'gift', 'certificate', 'to', 'this', 'new', 'SPA', 'in', 'SOHO', '.', 'Ah', ',', 'why', ',', 'now', 'I', 'ca', \"n't\", 'get', 'a', 'massage', '?', 'There', 'are', 'so', 'many', 'things', 'that', 'she', 'disapproves', 'of', '!', 'I', 'ca', \"n't\", 'eat', 'veal', ',', 'I', 'ca', \"n't\", 'wear', 'fur', ',', 'I', 'ca', \"n't\", 'go', 'hunting', '...', 'Well', ',', 'I', 'would', 'like', 'to', 'have', 'the', 'option', '!', '!', 'Oh', '!', 'Phoebe', ',', 'come', 'on', ',', 'I', 'do', \"n't\", 'wan', 'na', 'waste', 'it', '!', 'It', 'would', 'be', 'like', 'throwing', 'away', 'a', 'hundred', 'bucks', '!', 'I', 'do', \"n't\", 'care', 'about', 'any', 'of', 'that', '!', '!', 'Oh', '!', 'Oh', ',', 'not', 'as', 'a', 'friend', ',', 'Phoebe', '!', '!', 'Fine', ',', 'I', 'wo', \"n't\", 'use', 'it', '!', 'I', 'promise', '.', 'But', 'I', 'am', 'going', 'hunting', '!', '!', 'Hi', 'there', '!', 'Oh', ',', 'hi', '.', 'I', 'have', 'a', 'massage', 'appointment', 'under', 'Rachel', 'Green', ',', 'and', 'here', 'is', 'my', 'gift', 'certificate', '.', 'And', '...', 'taped', 'back', 'together', '.', 'Ok', 'through', 'the', 'glass', 'doors', '.', 'Alright-y', 'then', '.', 'Wow', ',', 'a', 'Swedish', 'massage', 'from', 'a', 'real', 'Swedish', 'person', '.', 'Oh', '...', 'what', 'an', 'interesting', 'name', '.', 'You', 'know', 'I', '...', 'Wow', '...', 'I', 'really', 'love', 'your', '...', 'No', ',', 'it', \"'s\", 'just', 'that', 'uhm', '...', 'it', 'feels', 'so', 'good', '...', 'Ikea', '...', 'Yeah', ',', 'say', 'hey', ',', 'you', \"'ll\", 'know', 'this', ',', 'what', \"'s\", 'the', 'capital', 'of', 'Sweden', '?', 'Damn', '!', 'I', 'wish', 'I', 'knew', 'if', 'that', 'was', 'right', '!', 'Wow', ',', 'Ikea', '...', 'what', 'a', 'rich', 'culture', '.', 'Uhm', ',', 'you', 'know', 'what', '?', 'I', 'have', 'a', 'friend', 'who', 'is', 'a', 'masseuse', '.', 'Yah', '!', 'She', \"'s\", '...', 'uhm', '...', 'not', 'very', 'good', 'though', '...', 'I', 'do', \"n't\", 'know', '...', 'maybe', 'it', \"'s\", 'because', 'she', 'has', 'got', 'such', 'callousy', 'fingers', 'from', 'playing', 'crummy', 'guitar', '...', 'Phoebe', '!', '!', 'For', 'like', 'a', 'half', 'an', 'hour', '!', 'Man', ',', 'you', 'can', 'lie', 'about', 'Sweden', '!', 'How', 'could', 'you', 'not', 'tell', 'me', 'you', 'worked', 'here', '?', 'Yes', 'you', 'do', ',', 'if', 'you', \"'re\", 'going', 'to', 'make', 'me', 'feel', 'guilty', 'for', 'getting', 'a', 'free', 'massage', '!', 'Oh', '!', 'Phoebe', ',', 'why', 'did', 'you', 'lie', 'to', 'me', 'about', 'working', 'here', '?', 'Phoebe', ',', 'honey', ',', 'if', 'you', 'hate', 'it', 'so', 'much', ',', 'you', 'should', 'walk', 'out', 'there', 'right', 'now', 'and', 'quit', '!', 'Be', 'true', 'to', 'what', 'you', 'believe', 'in', '!', 'Honey', ',', 'you', 'have', 'principles', 'and', 'I', 'so', 'admire', 'that', '!', 'I', 'do', \"n't\", 'have', 'any', '!', 'Good', 'for', 'you', 'Pheebs', '!', 'Oh', ',', 'lucky', 'me', '!', 'Coffee', 'and', 'a', 'live', 'sex', 'show', '!', 'Oh', '...', 'Oh', ',', 'I', \"'m\", 'sorry', '!', 'I', \"'m\", 'not', '...', 'I', 'was', 'just-I', 'was', 'just', 'reading', 'to', 'Emma', '.', 'Yeah', ',', 'yeah', '...', 'It', \"'s\", '...', '``', 'climax', 'your', 'way', 'to', 'better', 'skin', \"''\", '.', 'Not', 'me', ',', 'not', 'me', ',', 'not', 'me', ',', 'not', 'me', ',', 'not', 'me', '!', 'Yeah', '...', 'Oh', ',', 'well', '...', 'Ok', ',', 'uh-uh', '...', \"Let's-Let\", \"'s\", 'shop', '!', '!', 'Which', 'you', \"'re\", 'not', ',', 'because', 'you', \"'ve\", 'totally', 'hung', 'up', 'on', 'him', '!', 'And', 'you', \"'re\", 'gon', 'na', 'want', 'him', 'to', 'eat', 'his', 'heart', 'out', 'so', 'you', \"'re\", 'gon', 'na', 'have', 'to', 'look', 'fabulous', '!', 'Hey', 'Pheebs', ',', \"I'm-I\", \"'m\", 'taking', 'Charlie', 'shopping', ',', 'why', 'do', \"n't\", 'you', 'come', 'and', 'I', \"'ll\", 'help', 'you', 'find', 'something', '.', 'That', \"'s\", 'not', 'what', 'we', \"'re\", 'gon', 'na', 'do', '!', 'Hi', '!', 'Ok', ',', 'you', \"'re\", 'ready', 'to', 'go', 'pick', 'up', 'Phoebe', 'and', 'go', 'shopping', '?', 'Not', 'gon', 'na', 'find', 'any', 'clothes', 'in', 'there', '!', 'Hi', '.', 'Oh', '...', 'you', \"'re\", 'not', 'gon', 'na', 'do', 'a', 'magic', 'trick', ',', 'are', 'ya', '?', 'I', \"'m\", 'there', '!', 'Bye', ',', 'see', 'ya', '.', 'Pheebs', ',', 'that', \"'s\", 'for', 'men', '!', 'On', 'Melanie', 'Griffith', 'in', '``', 'Working', 'girl', \"''\", '.', 'I', 'think', 'what', 'you', 'want', 'is', 'over', 'here', '.', 'Really', '?', 'Oh', ',', 'I', 'ca', \"n't\", '.', 'Because', 'I-I', \"'ve\", 'seen', 'them', '.', 'Yeah', '!', 'I', \"'m\", 'a', 'big', 'fan', '!', 'Of', 'the', 'movies', ',', 'you', 'know', '.', 'Motion', 'pictures', '.', 'The', 'Talkies', '!', 'Sure', '!', 'You', 'know', 'that', 'depends', 'on', 'what', 'it', 'is', '!', 'I', \"'ve\", 'done', 'a', 'lot', 'of', 'stuff', '.', 'She', \"'s\", 'ok', ',', 'I', 'just', 'do', \"n't\", 'get', 'a', 'really', 'good', 'vibe', 'from', 'her', '!', 'I', 'do', \"n't\", 'know', ',', 'you', 'know', ',', 'just', 'the', 'way', 'she', 'waltzed', 'in', 'here', 'all', 'smart', ',', 'and', 'tall', '!', 'You', 'know', ',', 'and', 'just', 'swept', 'Joey', 'off', 'his', 'feet', '...', 'I', 'mean', ',', 'nobody', 'else', 'has', 'a', 'chance', '!', 'Anybody', '!', 'You', ',', 'me', ',', 'you', 'know', ',', 'Monica', \"'s\", 'mom', '...', 'Shhhhh', '!', 'Phoebe', '!', 'All', 'right', ',', 'look', '.', 'I', 'have', 'a', 'little', 'thing', 'for', 'him', '.', 'It', \"'s\", 'just', 'physical', 'and', 'I', 'have', 'it', 'totally', 'under', 'control', '!', 'Ok', '?', 'It', \"'s\", 'just', ',', 'when', 'I', 'see', 'them', 'together', ',', 'sometimes', 'I', 'just', 'get', 'a', 'little', 'jealous', '!', 'Oh', ',', 'I', 'get', 'it', '!', 'I', 'know', ',', 'I', 'know', ',', 'so', 'it', 'is', 'just', 'not', 'a', 'big', 'deal', '.', 'So', 'can', 'we', 'keep', 'this', 'between', 'us', '?', 'Ok', ',', 'great', ',', 'because', 'I', 'got', 'ta', 'get', 'out', 'of', 'here', ',', 'the', 'smell', 'of', 'beets', 'is', 'killing', 'me', '!', 'Oh', ',', 'God', ',', 'do', 'you', 'think', 'she', 'heard', '?', 'It', 'would', 'be', 'so', 'bad', 'if', 'she', 'heard', '!', 'Ok', ',', 'great', '!', 'Oh', ',', 'thank', 'God', 'I', 'ca', \"n't\", 'hear', 'a', 'word', 'that', 'you', \"'re\", 'saying', '!', 'Well', ',', 'get', 'back', 'in', 'there', 'and', 'talk', '!', 'What', '!', '?', 'Ok', 'well', ',', 'I', 'heard', 'that', '!', 'Which', 'means', 'that', 'she', 'heard', 'it', 'too', '!', 'Oh', '!', 'What', 'are', 'we', 'gon', 'na', 'do', '?', 'Oh', 'my', 'God', '!', 'Alright', '!', 'Enough', 'out', 'of', 'you', '!', 'Alright', '!', 'Let', \"'s\", 'just', 'do', 'it', '.', 'Let', \"'s\", 'just', 'go', 'over', 'there', 'and', 'see', 'if', 'she', 'heard', '.', 'Ok.', 'Wha', '...', '?', 'where', '?', 'Where', 'are', 'you', 'going', '?', 'Hey', ',', 'hi', '!', 'Hey', ',', 'where', \"'ve\", 'you', 'been', '?', 'Oh', '!', 'Wi', '...', 'in', 'the', 'dres', '...', 'in', 'the', 'dressing', 'room', '!', '?', 'Well', ',', 'that', \"'s\", 'so', 'weird', '!', 'Phoebe', 'and', 'I', 'were', 'just', 'trying', 'on', 'clothes', 'in', 'the', 'dressing', 'room', '.', 'God', 'it', \"'s\", 'just', 'such', 'a', 'small', 'world', '!', 'Oh', 'God', '.', 'You', 'did', '.', 'You', 'heard', '.', 'Ok', ',', 'listen', ',', 'let', 'me', 'explain', '.', 'Yeah', '.', 'Yeah', '!', 'That', \"'s\", 'Phoebe', '.', 'That', \"'s\", 'Phoebe', '.', 'You', 'know', ',', 'she', 'just', 'wants', 'them', 'all', '!', 'It', \"'s\", 'like', 'she', \"'s\", 'a', 'nympho', '!', 'Yeah', '...', 'I', 'try', '...', 'No', ',', 'that', \"'s\", 'David', '.', 'Tip', 'of', 'the', 'iceberg', '.', 'Do', 'you', 'have', 'anything', 'that', 'would', '...', 'get', 'us', 'out', 'of', 'them', '?', 'Hey', '!', 'Hey', 'what', \"'s\", 'going', 'on', '?', 'Alright', ',', 'I', 'do', \"n't\", 'wan', 'na', 'alarm', 'anybody', ',', 'but', 'Monica', \"'s\", 'hair', 'is', 'twice', 'as', 'big', 'as', 'it', 'was', 'when', 'we', 'landed', '!', 'Ooh', '!', 'You', 'guys', 'are', 'so', 'lucky', 'you', 'are', 'here', 'with', 'people', ',', 'you', 'known', 'it', \"'s\", 'such', 'a', 'romantic', 'place', '.', 'That', \"'s\", 'all', ',', 'I', 'just', 'wish', 'I', 'could', 'share', 'that', 'with', 'a', 'guy', '.', 'Not', 'Joey', ',', 'no', ',', 'I', 'was', 'just', 'lusting', 'after', 'Chandler', '.', 'What', \"'s\", 'with', 'the', 'rain', ',', 'Geller', '?', 'I', 'mean', ',', 'when', 'I', 'signed', 'up', 'for', 'Dino', 'Week', ',', 'nobody', 'said', 'anything', 'about', 'it', 'being', 'monsoon', 'season', '.', 'It', \"'s\", 'not', 'the', 'time', 'Charlie', '.', 'You', 'know', ',', 'this', 'happens', 'all', 'the', 'time', 'to', 'my', 'computer', 'at', 'work', '.', 'Well', ',', 'I', 'usually', 'go', '...', 'play', 'Tetris', 'on', 'somebody', 'else', \"'s\", 'computer', '.', 'Ugh', '.', 'Well', ',', 'I', \"'ve\", 'brought', 'some', 'books', '.', 'We', 'could', 'read', '.', 'We', 'ca', \"n't\", '.', 'We', \"'re\", 'not', 'pharmacists', '!', 'Kate', 'Miller', '?', 'And', '...', 'that', \"'s\", 'the', 'most', 'sex', 'I', \"'m\", 'gon', 'na', 'have', 'this', 'weekend', '.', 'Thank', 'you', '.', 'I', 'know', ',', 'that', 'old', 'lady', 'at', 'the', 'end', 'was', 'ready', 'to', 'take', 'you', 'home', '.', 'Well', ',', 'let', \"'s\", 'see', '.', 'There', 'was', 'a', 'really', 'big', 'guy', 'that', 'I', 'was', 'talking', 'to', ',', 'with', 'the', 'really', 'nice', 'breasts', '...', 'No', '.', 'No', ',', 'I', \"'m\", 'not', 'blushing', ',', 'I', \"'m\", 'sunburnt', '!', 'From', ',', 'you', 'know', ',', 'the', 'rain', '.', 'No', '.', 'Joey', '!', 'Joey', ',', 'come', 'on', '!', 'It', 'does', \"n't\", 'matter', ',', 'you', 'know', ',', 'it', \"'s\", 'not', 'like', 'anything', \"'s\", 'gon', 'na', 'happen', '.', 'Oh', '!', 'Ok.', 'Ok', ',', 'you', 'really', 'wan', 'na', 'know', 'who', 'it', 'is', '?', 'Do', 'ya', '?', 'Later', '!', 'La', '...', 'Ok.', 'See', 'you', ',', 'bye', '.', 'Open', 'your', 'drapes', '!', 'Open', 'your', 'drapes', '!', 'Nooo', '!', 'Look', 'at', 'that', 'woman', 'sitting', 'by', 'the', 'pool', 'getting', 'tan', '...', 'so', 'leathery', 'and', 'wrinkled', ',', 'I', \"'m\", 'so', 'jealous', '!', 'Homo', '.', 'All', 'right', '!', 'Well', ',', 'uh', '...', 'we', \"'re\", 'gon', 'na', 'hit', 'the', 'beach', '?', 'It', 'was', 'really', '...', 'great', '!', 'Oh', '!', 'Oh', '!', 'Weather', 'bitch', '!', 'It', \"'s\", 'open', '!', 'Hi', ',', 'Joe', '!', 'What', ',', 'is', 'everything', 'ok', '?', 'Nooooo', ',', 'why', '?', 'Oh', ',', 'that', \"'s\", 'crazy', '!', '...', 'yeah', ',', 'it', \"'s\", 'true', '.', 'What', ',', 'hey', '!', 'W-What', 'are', 'you', ',', 'what', 'are', 'you', 'talking', 'about', '?', 'Ok', '...', 'uh', '...', 'maybe', 'you', \"'re\", 'not', 'always', 'going', 'after', 'the', 'wrong', 'girl', '...', 'Yeah', ',', 'I', \"'m\", 'not', 'talking', 'about', 'her', '...', 'You', 'know', '?', 'Forget', 'it', '!', 'No', ',', 'I-I-I-I', 'do', \"n't\", ',', 'I', 'actually', 'do', \"n't\", 'know', 'who', 'I', \"'m\", 'talking', 'about', '!', 'So', '!', 'Yeah', ',', 'sure', '!', 'Ok', ',', 'let', \"'s\", 'not', 'make', 'a', 'big', 'thing', 'about', 'this', '!', 'Not', 'working', 'with', 'me', ',', 'Joe', '!', 'Here', \"'s\", 'the', 'thing', ':', 'lately', 'I', 'have', 'been', 'having', 'thoughts', 'musings', ',', 'if', 'you', 'will', '!', 'Only', 'like', 'a', 'month', '!', 'What', 'the', '...', 'DIAL', 'IT', 'DOWN', '!', 'Listen', ',', 'ok', ',', 'and', 'maybe', 'they', \"'re\", 'crazy', 'thoughts', ',', 'but', 'sometimes', 'I', 'do', ',', 'I', 'have', ',', 'I', \"'ve\", 'been', 'thinking', 'about', '...', 'you', 'know', ',', 'us', '!', 'Ok', ',', 'dial', 'it', 'up', 'a', 'little', '!', 'Shoot', '!', 'I', 'do', \"n't\", 'know', ',', 'I', \"'m\", 'not', 'trying', 'to', 'do', 'anything', ',', 'it', \"'s\", 'just', ',', 'we', 'have', 'such', 'a', 'good', 'time', 'when', 'we', \"'re\", 'together', ',', 'you', 'know', '...', 'I', 'mean', ',', 'are', \"n't\", 'you', 'just', 'a', '...', 'little', 'curious', '...', 'what', 'that', 'would', 'be', 'like', '?', '...', 'Who', '...', '?', 'Oh', 'yes', ',', 'of', 'course', ',', 'I', 'remember', 'him', '!', 'Yeah', ',', 'he', 'did', '!', 'Oh', ',', 'see', ',', 'this', 'is', 'what', 'I', \"'m\", 'talking', 'about', '!', 'But', 'can', 'it', '...', 'just', '...', 'happen', 'a', 'little', 'bit', '?', 'But', 'why', ',', 'why', 'not', '?', 'But', 'that', 'was', \"n't\", 'gon', 'na', 'stop', 'you', 'before', '!', 'I', \"'m\", 'sorry', ',', 'too', '!', 'OH', 'GOD', '!', 'I', 'should', \"n't\", 'have', 'said', 'anything', '!', 'It', \"'s\", 'not', 'a', 'big', 'deal', '!', 'It', \"'s\", 'so', 'not', 'a', 'big', 'deal', '!', 'Ok', '!', 'Ok', ',', 'I', '...', 'AAAHHHH', '!', 'What', '?', 'I', 'know', ',', 'I', \"'m\", 'her', '!', 'ooh', '...', 'Hey', ',', 'you', 'know', ',', 'before', 'you', 'said', 'that', 'nothing', 'could', 'happen', 'between', 'us', '?', 'What', 'changed', '?', 'What', '?', 'Ross', 'and', 'Charlie', '?', 'Wow', '!', 'She', \"'s\", 'really', 'making', 'her', 'way', 'through', 'the', 'group', ',', 'huh', '?', 'Ah', ',', 'who', 'am', 'I', 'to', 'talk', '?', 'Oh', ',', 'ju-ju-just', 'stay', 'calm', '.', 'Just', 'be', 'calm', '.', 'For', 'all', 'he', 'knows', 'we', \"'re\", 'just', 'hanging', 'out', 'together', '.', 'Right', '?', 'Just', 'be', 'nonchalant', '.', 'That', \"'s\", 'not', 'nonchalant', '!', 'Oh', '...', 'okay', ',', 'just', 'hide', '!', 'Coming', '!', 'Try', 'under', 'the', 'bed', ',', 'try', 'under', 'the', 'bed', '!', 'There', \"'s\", 'no', 'room', 'under', 'the', 'bed', '.', 'Yeah', '...', 'Hi', '...', '...', 'I', 'really', 'do', \"n't\", '...', 'Yeah', ',', 'sure', '...', 'Uh-huh', '...', 'right', '...', 'yeah', '...', 'Oh', ',', 'I', 'know', '...', 'I', 'know', 'it', \"'s\", 'been', 'really', 'hard', 'for', 'you', '.', 'That', 'is', 'hard', 'to', 'say', ',', 'Ross', '.', 'That', 'is', 'hard', 'to', 'say', '.', 'You', 'would', 'think', '!', 'Joey', '!', 'How', 'are', 'you', 'doing', 'this', '?', 'How', '...', 'wha', '...', 'Hey', '!', 'What', 'are', 'you', '...', 'What', 'is', 'this', '?', 'Have', 'you', 'guys', 'been', 'listening', 'this', 'entire', 'time', '?', 'Ah', ',', 'what', 'is', 'this', '?', 'Well', ',', 'lets', 'see', ',', 'we', 'kissed', 'for', 'ten', 'minutes', 'and', 'now', 'we', \"'re\", 'talking', 'to', 'our', 'friends', 'about', 'it', ',', 'so', 'I', 'guess', 'this', 'is', 'sixth', 'grade', '!', 'All', 'right', ',', 'look', 'you', 'guys', '...', 'Look', ',', 'we', 'appreciate', 'all', 'the', 'advice', ',', 'but', 'this', 'is', 'between', 'Joey', 'and', 'me', 'and', 'I', 'think', 'we', 'can', 'handle', 'it', '...', 'Sure', '...', 'Get', 'out', '!', 'Are', 'they', 'right', '?', 'Yeah', '...', 'Yeah', ',', 'we', 'can', 'wait', ',', 'we', 'do', \"n't\", 'have', 'to', 'do', 'anything', 'tonight', '.', 'Although', '...', 'I', 'mean', ',', 'you', 'know', '...', 'Ross', 'and', 'I', 'have', \"n't\", 'dated', 'in', 'like', '...', 'six', 'years', '...', 'Plus', ',', 'you', 'know', ',', 'he', 'is', 'with', 'Charlie', 'now', '.', 'No', '...', 'Yeah', '...', 'Forgotten', '.', 'Nothing', '...', 'Nothing', '...', 'It', \"'s\", 'really', '...', 'It', \"'s\", 'nothing', '...', 'Come', 'here', ',', 'come', 'here', '...', 'Sorry', ',', 'I', 'just', 'uhm', '...', 'I', 'ca', \"n't\", 'seem', 'to', 'get', 'Ross', 'out', 'of', 'my', 'head', '...', 'Ross', 'is', 'coming', 'over', '.', 'I', 'think', 'now', 'would', 'be', 'a', 'really', 'good', 'time', 'to', 'talk', 'to', 'him', '.', 'Okay', ',', 'well', 'keep', 'in', 'mind', 'that', 'by', 'the', 'time', 'you', \"'re\", 'done', ',', 'they', \"'ll\", 'probably', 'be', 'serving', 'dinner', '.', 'Still', 'nervous', '?', 'Yeah', '!', 'Yeah', ',', 'yeah', 'sure', '!', 'Yeah', '!', 'So', 'hi', '!', 'So', 'you', 'eh', ',', 'you', 'talked', 'to', 'Joey', '?', 'Oh', '!', 'That', \"'s\", 'great', '!', 'Oh', ',', 'so', 'everything', \"'s\", 'okay', '?', 'Ah', '...', 'Well', ',', 'obviously', 'I', 'think', 'so', 'too', '.', 'Really', '?', 'Excited', '?', 'Excuse', 'me', '!', 'You', 'did', \"n't\", 'tell', 'him', ',', 'did', 'you', '?', 'Oh', 'God', '!', 'Alright', ',', 'fine', '.', 'You', 'know', 'what', 'Joey', ',', 'forget', 'it', '.', 'When', 'we', 'go', 'back', 'to', 'New', 'York', ',', 'I', 'will', 'tell', 'him', '.', 'That', 'was', 'one', 'time', ',', 'Ross', ',', 'and', 'they', 'were', 'only', 'like', '5', 'milligrams', '.', 'Aaah', '...', 'Ross', ',', 'actually', 'there', \"'s\", 'something', 'that', 'I', 'really', 'need', 'to', 'talk', 'to', 'you', 'about', '.', 'Okay', ',', 'uhm', '...', 'alright', ',', 'here', \"'s\", 'the', 'deal', '.', 'What', '?', 'What', 'is', 'it', '?', 'Uh', ',', 'look', 'Ross', ',', 'this', 'really', 'is', \"n't\", 'easy', '.', 'Because', 'you', 'took', 'three', 'hundred', 'bottles', 'of', 'shampoo', '?', 'Well', ',', 'yeah', '...', 'Okay', ',', 'look', 'it', \"'s\", 'about', 'me', 'and', '...', 'Wow', '!', 'Well', ',', 'clearly', 'this', 'is', 'not', 'a', 'good', 'time', '.', 'Hi', '!', 'Well', ',', 'I', 'tried', ',', 'but', 'then', 'he', 'had', 'a', 'shampoo', 'related', 'emergency', '.', 'So', 'I', 'guess', 'now', 'it', \"'s\", 'your', 'turn', 'again', '.', 'Yeah', ',', \"'cause\", 'that', \"'s\", 'what', 'we', 'do', '.', 'Okay', ',', 'that', 'sounds', 'fair', '.', 'It', 'just', 'means', 'that', 'once', 'again', 'we', 'ca', \"n't\", '...', 'No', '!', 'Of', 'course', 'we', 'can', 'wait', '.', 'Alright', ',', 'so', 'I', 'guess', 'that', 'means', 'good', 'night', 'then', '?', 'Goo', '--', 'ood', 'night', '!', 'Seriously', ',', 'good', 'night', '!', 'Okay', '.', 'We', 'were', \"n't\", 'doing', 'anything', '!', 'Shhh', '.', 'No', ',', 'come', 'on', ',', 'that', 'is', 'a', 'lie', '.', 'We', 'also', 'kissed', 'in', 'Barbados', '.', 'Yeah', ',', 'you', 'started', 'it', '!', 'I', \"'ve\", 'got', 'to', 'chill', '.', 'We', 'feel', 'so', 'terrible', 'about', 'this', ',', 'Ross', '.', 'Ross', '?', 'Can', 'we', 'just', 'close', 'the', 'door', '?', 'Ross', ',', 'say', 'something', '.', 'Anything', '.', 'No', ',', 'no', ',', 'no', '!', 'Ross', ',', 'this', 'is', 'not', 'how', 'we', 'wanted', 'you', 'to', 'find', 'out', 'about', 'this', '.', 'You', 'have', 'every', 'right', 'to', 'go', 'nuts', '.', 'No', ',', 'but', 'you', 'know', 'what', 'I', 'mean', '.', 'Calm', 'ourselves', '?', 'Well', ',', 'what', 'would', 'we', 'be', 'doing', '?', 'Feel', 'me', 'up', '?', 'Hey', '.', 'Oh', ',', 'you', 'bet', '.', 'Okay', ',', 'well', ',', 'we', 'brought', 'you', 'some', 'wine', '.', 'Well', ',', 'maybe', 'the', 'next', 'batch', ',', 'we', 'could', 'all', 'get', 'some', '.', 'No', 'awareness', '.', 'Look', ',', 'Charlie', ',', 'I', 'just', 'want', 'you', 'to', 'know', '.', 'Ross', 'is', 'just', 'having', 'a', 'little', 'trouble', 'adjusting', 'to', 'the', 'thought', 'of', 'Joey', 'and', 'me', '.', 'You', 'know', ',', 'he', 'normally', 'does', \"n't\", 'drink', 'like', 'this', '.', 'Ross', ',', 'you', 'do', \"n't\", 'even', 'have', 'oven', 'mitts', 'on', '!', 'Ooy', '.', 'Oh', 'my', 'god', ',', 'are', 'we', 'supposed', 'to', 'answer', '?', 'Ross', ',', 'you', 'do', \"n't\", 'seem', 'okay', '.', 'Oh', ',', 'that', \"'s\", 'okay', ',', 'girls', 'tend', 'not', 'to', 'like', 'me', '.', 'You', 'know', 'what', ',', 'Ross', '?', 'I', 'think', 'we', \"'re\", 'gon', 'na', 'take', 'off', 'too', '.', 'No', ',', 'no', ',', 'it', \"'s\", 'just', 'that', 'it', \"'s\", 'getting', 'late', '...', 'Yeah', ',', 'that', \"'s\", 'probably', 'a', 'good', 'idea', '.', 'Uh-huh', '.', 'Okay', '.', 'You', 'know', 'what', ',', 'Joey', ',', 'I', 'do', \"n't\", 'think', 'he', \"'s\", 'ever', 'gon', 'na', 'be', 'okay', 'with', 'this', '.', 'So', '.', 'I', 'say', '‘', 'cheesy', 'line', '’', ',', 'but', 'ok', '.', 'I', 'am', 'sorry', ',', 'I', 'don', '’', 't', 'know', ',', 'I', 'am', 'sorry', ',', 'I', 'don', '’', 't', 'know', 'why', 'I', 'did', 'that', '!', 'Ok', ',', 'so', 'sorry', '.', 'I', 'am', 'sorry', '!', 'Again', '...', 'I', 'do', \"n't\", 'know', ',', 'I', 'don', '’', 't', 'know', 'what', 'happened', ',', 'I', 'must', 'be', 'nervous', '!', 'Ok', ',', 'ok', ',', 'ok', '.', 'I', 'promise', ',', 'I', 'promise', ',', 'I', 'promise', ',', 'I', 'won', '’', 't', 'do', 'it', 'again', '.', 'I', 'really', 'do', '.', 'I', 'promise', '.', 'This', 'is', 'gon', 'na', 'be', 'great', '.', 'Absolutely', '!', 'Absolutely', '.', 'I', 'd', '...', 'it', '’', 's', 'just', 'a', 'little', 'weird', ',', 'it', '’', 's', 'you', ',', 'and', 'it', '’', 's', 'me', ',', 'it', \"'s\", 'just', 'gon', 'na', 'take', 'some', 'getting', 'used', 'to', '.', 'Ok', ',', 'let', '’', 's', 'work', 'from', 'the', 'top', 'down', '!', 'Just', 'work', 'the', 'bra', ',', 'Joe', '!', 'Okay', '.', 'Oh', '!', 'Ow', '!', 'Well', 'this', 'is', 'romantic', '!', 'It', '’', 's', 'a', 'standard', 'issue', 'bra', 'clasp', '!', 'Ok', 'well', ',', 'well', 'I', \"'m\", 'really', ',', 'I', \"'m\", 'sorry', 'about', 'that', 'Joey', ',', 'but', 'do', 'you', 'think', 'that', 'maybe', 'on', 'some', 'level', ',', 'you', 'do', \"n't\", 'want', 'to', 'take', 'off', 'my', 'bra', '?', 'oooh', '!', 'Oh', 'oh', '!', 'oh', 'oh', '!', 'What', 'is', 'up', 'with', 'Miss', 'Hawaiian', 'Tropic', '?', 'Well', ',', 'it', 'was', 'good', '..', 'until', 'we', 'got', 'back', 'to', 'our', 'apartment', ',', 'and', 'then', 'we', 'were', 'fooling', 'around', 'and', 'he', 'started', 'to', 'put', 'his', 'hand', 'up', 'my', 'leg', 'and', 'I', 'kept', 'slapping', 'it', 'away', '!', 'Well', ',', 'it', 'was', \"n't\", 'just', 'me', ',', 'alright', '?', 'He', 'freaked', 'out', 'too', '!', 'He', 'could', \"n't\", 'even', 'undo', 'my', 'bra', '!', 'I', 'do', 'not', 'know', 'what', \"'s\", 'wrong', 'with', 'us', ',', 'I', 'mean', ',', 'we', 'have', 'kissed', 'before', 'and', 'that', \"'s\", 'been', 'great', '!', 'But', 'this', 'time', 'it', 'was', 'leading', 'somewhere', 'and', 'I', 'was', 'very', 'aware', 'of', 'the', 'fact', 'that', 'it', 'was', 'Joey', 'touching', 'me', '.', 'Ok', ',', 'that', \"'s\", 'true', '.', 'That', \"'s\", 'true', ',', 'we', 'can', 'do', 'this', '.', 'You', \"'re\", 'right', ',', 'you', \"'re\", 'right', ',', 'we', 'can', 'do', 'this', '.', 'We', \"'re\", 'just', 'gon', 'na', 'power', 'through', '!', 'No', 'need', '!', '!', 'Problem', 'solved', ',', 'we', 'are', 'powering', 'through', '.', 'Hey', '!', 'Got', 'champagne', '?', 'Excellent', '!', 'Stick', 'it', 'in', 'the', 'ice', 'bucket', ',', 'the', 'phone', 'is', 'off', 'the', 'hook', ',', 'and', 'in', 'the', 'interest', 'of', 'powering', 'through', '...', 'Ok', 'Sexy', ',', 'sexy', ',', 'very', 'sexy', ',', 'sexy', '.', 'Alright', '!', 'Lets', 'do', 'it', '!', 'Oh', '!', 'Get', 'over', 'it', 'soldier', ',', 'we', \"'ve\", 'got', 'ta', 'do', 'this', '!', 'Ok.', 'Aha', '!', 'You', 'like', 'that', 'huh', '?', 'You', 'like', 'that', '?', 'Let', \"'s\", 'take', 'this', 'into', 'high', 'gear', 'Yeah', 'baby', ',', 'I', \"'ll\", 'show', 'you', 'how', 'we', 'do', 'it', '!', 'What', '?', 'Oh', 'my', 'God', '!', 'I', \"'m\", 'so', 'sorry', '.', 'Joey', '?', 'Are', 'you', 'ok', '?', 'What', 'is', 'the', 'matter', 'with', 'us', '?', 'No', ',', 'I', 'mean', 'with', 'us', ',', 'you', 'know', '.', 'I', 'mean', ',', 'is', 'it', 'supposed', 'to', 'be', 'this', '...', 'difficult', '?', 'Hi', '!', 'Hey', ',', 'listen', ',', 'can', 'we', 'ask', 'you', 'a', 'question', '?', 'When', 'you', 'and', 'Monica', 'first', 'hooked', 'up', ',', 'was', 'it', 'weird', 'going', 'from', 'friends', 'to', '...', 'more', 'than', 'that', '?', 'No', ',', 'no', ',', 'no', '...', 'No', ',', 'I', 'mean', '...', 'se-x-u-ally', '...', 'Well', ',', 'just', 'because', 'it', 'happened', 'that', 'way', 'for', 'them', 'does', \"n't\", 'mean', 'it', 'has', 'to', 'happen', 'that', 'way', 'for', 'us', '.', 'Right', ',', 'totally', '.', 'Yeah', ',', 'and', 'if', 'does', \"n't\", 'work', ',', 'then', 'we', \"'ll\", 'be', 'just', 'one', 'of', 'those', 'couples', 'that', 'never', 'have', 'sex', '.', 'Hmmm', '...', 'Me', 'too', '...', 'I', 'wonder', 'how', 'Monica', 'and', 'Chandler', 'could', 'do', 'it', '?', 'Aah', '...', 'I', 'bet', 'you', \"'re\", 'right', '.', 'Yeah', '.', 'Love', 'you', 'too', '...', 'Alright', ',', 'I', \"'m\", 'going', 'to', 'bed', '.', 'Wait', ',', 'you', 'ca', \"n't\", 'go', 'away', 'this', 'weekend', '!', 'It', \"'s\", 'Emma', \"'s\", 'birthday', '!', 'We', \"'re\", 'having', 'a', 'party', '.', 'No', ',', 'that', 'day', '...', 'that', 'wo', \"n't\", 'be', 'her', 'real', 'birthday', '!', 'Well', ',', 'ca', \"n't\", 'you', 'just', 'go', 'to', 'Vermont', 'the', 'next', 'day', '?', 'And', 'I', 'mean', ',', 'you', 'know', ',', 'you', 'guys', '...', 'This', 'is', 'a', 'big', 'deal', '.', 'I', 'mean', ',', 'how', 'can', 'we', 'have', 'her', 'first', 'birthday', 'party', 'without', 'her', 'aunt', 'and', 'her', 'uncle', '!', 'You', 'know', 'Pheebs', ',', 'when', 'I', 'was', 'little', ',', 'on', 'my', 'birthday', ',', 'my', 'daddy', 'would', 'hide', 'a', 'present', 'in', 'every', 'room', 'of', 'the', 'house', ',', 'and', 'then', 'he', 'would', 'draw', 'a', 'treasure', 'map', 'to', 'help', 'me', 'find', \"'em\", 'all', '.', 'Oh', ',', 'good', ',', 'good', '!', 'We', 'had', 'this', 'idea', 'to', 'make', 'a', 'birthday', 'video', 'for', 'Emma', 'and', 'we', \"'ll\", 'give', 'it', 'to', 'her', 'when', 'she', 'is', '18', '.', 'Oh', 'no', ',', 'it', \"'s\", 'still', 'nap', 'time', '.', 'But', 'she', \"'ll\", 'be', 'up', 'soon', '.', 'I', 'said', 'it', \"'s\", 'still', 'nap', 'time', '.', 'Hey', 'Joey', ',', 'will', 'you', 'please', 'set', 'this', 'up', 'for', 'people', 'to', 'put', 'Emma', \"'s\", 'presents', 'on', '?', 'Oh', ',', 'she', \"'s\", 'still', 'napping', 'Look', ',', 'I', 'know', 'that', 'you', 'guys', 'really', 'want', 'to', 'get', 'to', 'Vermont', 'and', 'this', 'is', \"n't\", 'a', 'really', 'big', 'deal', 'to', 'you', ',', 'but', 'it', 'really', 'is', 'to', 'us', ',', 'ok', '?', 'Emma', 'will', 'never', 'have', 'a', 'first', 'birthday', 'again', '.', 'No', 'really', ',', 'she', 'did', \"n't\", 'sleep', 'well', 'last', 'night', ',', 'so', 'we', 'ca', \"n't\", 'wake', 'her', 'up', '.', 'Oh', '!', 'Emma', 'might', 'like', 'what', '?', 'What', 'did', 'you', 'get', 'her', '?', 'Well', ',', 'this', 'sounds', 'like', 'fun', '!', 'Well', ',', 'you', 'know', 'what', '?', 'Actually', '?', 'People', 'are', 'getting', 'a', 'little', 'antsy', 'waiting', 'Emma', 'to', 'wake', 'up', 'from', 'her', 'nap', ',', 'so', 'would', 'you', 'mind', 'performing', 'them', 'once', 'now', '?', 'All', 'right', ',', 'let', '’', 's', 'get', 'this', 'party', 'started', ',', 'huh', '?', 'Joey', 'and', 'Phoebe', 'are', 'gon', 'na', 'perform', 'a', 'little', 'something', 'for', 'us', '.', 'So', ',', 'Joey', ',', 'what', 'are', 'you', 'gon', 'na', 'do', 'for', 'us', '?', 'Oh', ',', 'ok', ',', 'which', 'one', '?', 'Wow', '!', 'That', 'was', 'amazing', '!', 'Oh', ',', 'Phoebe', ',', 'I', '’', 'm', 'sorry', '!', 'Phoebe', 'has', 'prepared', 'something', 'as', 'well', '.', 'Is', 'that', 'it', '?', 'Ross', ',', 'um', ',', 'don', '’', 't', 'forget', 'to', 'get', 'a', 'shot', 'of', 'Emma', '’', 's', 'cake', '.', 'It', '’', 's', 'in', 'a', 'box', 'in', 'the', 'fridge', '.', 'Oh', ',', 'you', \"'re\", 'gon', 'na', 'love', 'this', 'cake', '.', 'I', 'got', 'it', 'from', 'a', 'bakery', 'in', 'New', 'Jersey', ',', 'Corino', '’', 's', '.', 'Well', ',', 'anyway', ',', 'they', 'make', 'these', 'great', 'novelty', 'cakes', ',', 'in', 'all', 'different', 'shapes', ',', 'and', 'if', 'you', 'give', 'them', 'a', 'photo', ',', 'they', '’', 'll', 'copy', 'it', 'in', 'icing', '!', 'Yes', '!', 'On', 'a', 'cake', 'shaped', 'like', 'a', 'bunny', '.', 'Ross', ',', 'what', 'are', 'you', 'talking', 'about', '?', 'oh', '!', 'Oh', 'my', 'God', '!', 'They', 'put', 'my', 'baby', '’', 's', 'face', 'on', 'a', 'penis', '!', 'Why', 'you', 'guys', 'this', 'is', \"n't\", 'funny', ',', 'all', 'right', '?', 'If', 'I', 'wanted', 'this', 'cake', 'to', 'be', 'a', 'disaster', 'I', 'would', 'have', 'baked', 'it', 'myself', '!', 'Oh', '!', 'Believe', 'you', 'me', '!', 'I', 'am', 'going', 'to', 'bring', 'this', 'cake', 'back', ',', 'I', 'do', \"n't\", 'even', 'want', 'it', 'in', 'my', 'home', '...', 'Joey', ',', 'do', \"n't\", 'touch', 'it', '!', '!', 'Yes', ',', 'yes', '.', 'I', 'still', 'want', 'my', 'daughters', 'picture', ',', 'but', 'on', 'a', 'bunny', 'cake', '.', 'Yellow', 'cake', ',', 'chocolate', 'frosting', 'with', 'nuts', '!', 'OOH', '!', 'God', '!', 'Sorry', '!', 'Emma', \"'s\", 'awake', '.', 'I', 'ca', \"n't\", 'believe', 'this', '.', 'This', 'is', 'her', 'first', 'birthday', '.', 'She', \"'s\", 'awake', '.', 'We', \"'re\", 'not', 'even', 'there', '.', 'Everybody', 'left', '.', 'We', 'still', 'have', 'this', 'stupid', 'obscene', 'cake', '.', 'Oh', ',', 'why', 'do', 'you', 'even', 'bother', '?', 'I', 'already', 'ruined', 'her', 'first', 'birthday', '...', 'And', 'do', 'you', 'know', 'how', 'important', 'these', 'early', 'experiences', 'are', 'Ross', '?', 'Very', '!', 'According', 'to', 'the', 'back', 'cover', 'of', 'that', 'book', 'that', 'you', 'gave', 'me', '.', 'I', 'guess', '...', 'Oh', ',', 'I', 'just', 'had', 'such', 'an', 'idea', 'of', 'what', 'this', 'day', 'would', 'be', 'like', ',', 'you', 'know', '?', 'Emma', 'laughing', 'and', 'everybody', 'gathered', 'around', 'her', 'cake', 'singing', '``', 'Happy', 'Birthday', \"''\", '.', 'Then', 'we', 'would', 'all', 'go', 'into', '...', 'HEY', 'GET', 'OUT', 'OF', 'THE', 'ROAD', 'YOU', 'STUPID', 'STUDENT', 'DRIVER', '!', '!', '!', 'They', 'have', 'to', 'learn', '!', 'What', '?', 'Oh', 'my', 'God', '!', 'Look', 'what', '...', 'you', 'made', 'it', 'into', 'a', 'bunny', '.', 'How', 'did', 'you', 'do', 'that', '?', 'Well', ',', 'I', \"'m\", 'very', 'impressed', '.', 'I', 'do', \"n't\", 'care', 'that', 'you', 'left', '.', 'I', \"'m\", 'just', 'glad', 'that', 'you', \"'re\", 'here', '.', 'Thanks', 'you', 'guys', '!', 'What', '?', 'Oh', '!', 'Emma', ',', 'that', \"'s\", 'right', '!', 'You', \"'re\", 'that', 'many', '!', 'NO', ',', 'no', 'science', 'camp', '!', 'Oh', '!', '...', 'Oh', 'and', 'Emma', ',', 'look', 'at', 'your', 'stuffed', 'animals', 'lined', 'up', 'so', 'neatly', '!', 'Oh', 'yeah', ',', 'nothing', '!', 'These', 'are', 'happy', 'tears', '!', 'This', 'is', 'just', 'what', 'I', 'wanted', '.', 'I', \"'ve\", 'never', 'given', 'her', 'a', 'cookie', '.', 'Have', 'you', '?', 'Of', 'course', ',', 'I', \"'d\", 'be', 'honored', '!', 'OH', '!', 'What', \"'s\", 'it', 'the', 'anniversary', 'of', '?', 'Your', 'first', 'date', ',', 'your', 'first', 'kiss', ',', 'first', 'time', 'you', 'had', 'sex', '...', 'Amy', '!', 'Hi', '!', 'Oh-oh-hoh', '!', 'Wow', '!', 'You', 'remember', 'Joey', '?', 'So', 'now', ',', 'what', 'are', 'you', 'doing', 'here', '?', 'Oh', 'sorry', ',', 'hold', 'on', '.', 'Let', 'me', 'just', 'check', 'on', 'the', 'baby', '!', 'Oh', ',', 'I', 'know', ',', 'is', \"n't\", 'she', '?', 'All', 'right', '.', 'What', \"'s\", 'your', 'news', ',', 'Amy', '?', 'What', '?', 'Oh', 'my', 'God', '!', 'To', 'who', '?', 'A-And', '?', '?', 'No', ',', 'what', \"'s\", 'he', 'like', '?', 'Yeah', '.', 'Huh', '...', 'wow', ',', 'so', 'he', \"'s\", 'got', 'ta', 'be', '...', 'Sweety', ',', 'I', 'got', 'ta', 'tell', 'ya', '...', 'it', 'sounds', 'a', 'little', 'bit', 'like', 'you', 'like', 'the', 'apartment', 'more', 'than', 'you', 'like', '...', 'Oh', '...', 'sit', 'down', ',', 'sit', 'down', '.', 'Oh', ',', 'honey', ',', 'you', 'know', ',', 'I', 'once', 'also', 'almost', 'married', 'somebody', 'that', 'I', 'didn', '’', 't', 'love', '.', 'Do', 'you', 'remember', 'Barry', '?', 'Sometimes', 'just', 'nodding', 'is', 'ok.', 'Uhm', ',', 'so', 'but', 'anyway', ',', 'listen', ',', 'not', 'marrying', 'Barry', 'was', 'the', 'best', 'decision', 'that', 'I', 'ever', ',', 'ever', 'made', '.', 'Honey', ',', 'you', 'deserve', 'true', 'love', '.', 'Your', 'soulmate', 'is', 'out', 'there', ',', 'somewhere', '.', 'Someone', 'that', 'is', 'your', 'age', ',', 'that', 'is', 'smart', ',', 'that', 'is', 'fun', 'and', 'that', 'you', 'care', 'about', '!', 'Ok.', 'Ok', ',', 'let', '’', 's', 'keep', 'talking', '.', 'Amy', ',', 'hi', '!', 'Oh', ',', 'good', 'for', 'you', '!', 'Yes', 'you', 'are', '!', 'Oh', ',', 'I', 'am', 'so', 'proud', 'of', 'you', '!', 'But', 'Erin', 'Brockovich', 'had', 'her', 'own', 'house', '.', 'Yeah', '...', 'Amy', 'kept', 'kicking', 'me', 'in', 'her', 'sleep', 'yelling', '‘', 'Myron', ',', 'get', 'off', '!', '’', 'Joey', ',', 'I', 'can', '’', 't', 'do', 'that', '!', 'Well', 'Joey', ',', 'uhm', 'look', ',', 'I', 'know', 'that', 'she', '’', 's', 'difficult', ',', 'but', 'I', 'think', 'it', '’', 's', 'really', 'good', 'that', 'she', '’', 's', 'here', '.', 'No', ',', 'it', \"'s\", 'just', '...', 'look', ',', 'you', 'know', ',', 'when', 'I', 'first', 'moved', 'to', 'the', 'city', 'I', 'was', 'a', 'lot', 'like', 'her', '!', 'I', 'was', 'spoiled', ',', 'self-centered', 'and', 'you', 'guys', 'really', 'took', 'care', 'of', 'me', '.', 'Well', ',', 'uhm', '...', 'whatever', ',', 'I', 'have', 'really', 'appreciated', 'it', ',', \"'cause\", 'I', 'don', '’', 't', 'think', 'I', 'would', 'be', 'the', 'person', 'that', 'I', 'am', 'today', 'if', 'it', 'wasn', '’', 't', 'for', 'you', 'guys', '.', 'See', ',', 'I', 'wan', 'na', 'help', 'Amy', 'the', 'way', 'you', 'guys', 'helped', 'me', '.', 'And', 'I', 'know', 'it', '’', 's', 'gon', 'na', 'take', 'patience', ',', 'but', 'that', '’', 's', 'ok.', 'Amy', ',', 'that', '’', 's', 'what', 'I', 'was', 'supposed', 'to', 'wear', 'today', ',', 'that', '’', 's', 'why', 'I', 'hung', 'it', 'on', 'the', 'door', '.', 'Amy', ',', 'you', 'know', 'what', '?', 'I', 'was', 'thinking', 'that', 'maybe', 'now', 'it', \"'d\", 'be', 'a', 'good', 'time', 'for', 'us', 'to', 'sit', 'down', 'and', ',', 'you', 'know', ',', 'talk', 'about', 'your', 'future', '.', 'Well', ',', 'what', 'happened', '?', 'Oh', ',', 'that', 'is', 'so', 'tacky', '.', 'Phoebe', ',', 'that', '’', 's', 'huge', '!', 'I', 'think', 'it', 'could', 'be', 'kind', 'of', 'great', '!', 'Uuuh', '!', '!', 'How', 'about', 'at', 'a', 'Footlocker', '?', 'Oh', '!', 'That', \"'s\", 'interesting', ',', 'since', 'she', 'died', 'seven', 'years', 'ago', '!', '!', 'Hello', '?', 'Oh', ',', 'it', \"'s\", 'our', 'nanny', '!', 'Hi', '!', 'Oh', '...', 'God', '!', 'I', 'hope', 'you', 'feel', 'better', '!', 'Ok', ',', 'bye', '!', 'That', \"'s\", 'Molly', ',', 'she', \"'s\", 'sick', '.', 'Can', 'you', 'watch', 'Emma', 'today', '?', 'Menstrual', 'cramps', '.', 'Can', 'any', 'of', 'you', 'watch', 'Emma', '?', 'Great', ',', 'shoot', ',', 'what', 'are', 'we', 'gon', 'na', 'do', '?', 'Well', ',', 'actually', '...', 'Yeah', '.', 'Why', 'not', '?', 'Wha', '...', 'the', 'next', 'one', '?', 'Ross', ',', 'I', 'am', 'trying', 'to', 'help', 'her', 'become', 'a', 'better', 'person', '.', 'This', 'is', 'a', 'huge', 'breakthrough', 'for', 'her', '!', 'She', 'just', 'offered', 'to', 'do', 'something', 'for', 'another', 'human', 'being', '!', '!', 'Ross', ',', 'I', \"'m\", 'telling', 'you', ',', 'she', \"'s\", 'giving', 'up', 'getting', 'her', 'eyebrows', 'shaped', 'to', 'do', 'this', 'alright', '?', 'Do', 'you', 'understand', 'how', 'important', 'that', 'is', 'in', 'our', 'world', '?', 'Absolutely', '.', 'Hey', '!', 'Hi', ',', 'how', \"'s\", 'my', 'girl', '?', 'Yeah', '!', 'You', 'pierced', 'her', 'ears', '!', '?', 'Oh', 'my', 'God', ',', 'Oh', 'my', 'God', ',', 'here', 'comes', 'Ross', '.', 'He', \"'s\", 'gon', 'na', 'flip', 'out', '.', 'Ugh', '.', 'Nah', ',', 'I', 'do', \"n't\", 'really', 'want', 'her', 'to', 'see', '.', 'Nothing', '.', 'Oh', ',', 'they', \"'re\", 'real', '!', 'I', 'know', ',', 'I', 'know', ',', 'and', 'you', 'were', 'right', 'Ross', '.', 'You', 'are', 'soo', 'irresponsible', 'I', 'am', 'never', 'letting', 'you', 'baby-sit', 'ever', 'again', '!', 'I', 'ca', \"n't\", 'believe', 'this', '.', 'All', 'I', 'wanted', 'to', 'do', 'was', 'help', 'you', 'try', 'to', 'figure', 'out', 'what', 'to', 'do', 'with', 'your', 'life', 'and', 'this', 'is', 'how', 'you', 'repay', 'me', '?', 'Oh', 'yeah', '?', 'Since', 'when', '?', 'What', '?', 'Babies', 'do', \"n't\", 'care', 'if', 'they', \"'re\", 'slim', '.', 'Joey', ',', 'get', 'Amy', \"'s\", 'bags', ',', 'she', 'is', 'moving', 'out', '!', 'You', 'put', 'holes', 'in', 'my', 'baby', \"'s\", 'ears', '!', 'I', 'ca', \"n't\", 'believe', 'I', 'ever', 'even', 'tried', 'to', 'help', 'you', '.', 'You', 'are', 'so', 'beyond', 'help', '.', 'Excuse', 'me', '?', 'Joey', ',', 'where', 'are', 'those', 'bags', '?', 'Seriously', '?', 'Hips', 'or', 'thighs', '?', 'Oh', '!', 'Oh', 'my', 'God', '!', 'I', 'thought', 'she', 'was', 'on', 'Atkins', '.', 'Oh', ',', 'I', 'can', 'give', 'you', 'that', '.', 'Yeah', '.', 'I', 'just', ',', 'I', 'kept', 'trying', 'to', 'make', 'you', 'a', 'better', 'person', ',', 'but', 'you', \"'re\", '...', 'you', \"'re\", 'already', 'a', 'pretty', 'perfect', 'version', 'of', 'what', 'you', 'are', '.', 'Did', 'you', 'just', 'say', 'Emma', '?', 'Hi', '!', 'My', 'God', '!', 'Mmh-mmh', '!', 'Oh', ',', 'Pheebs', ',', 'baby', ',', 'that', \"'s\", 'nice', 'but', ',', 'you', 'know', 'what', ',', 'I', 'think', 'I', \"'m\", 'ok.', 'Why', 'do', \"n't\", 'you', 'give', 'it', 'to', 'one', 'of', 'your', 'other', 'single', 'girlfriends', '?', 'GIVE', 'ME', 'THE', 'BOOK', '!', 'Pablo', 'Diaz', ',', 'Brady', 'Smith', ',', 'huh', ',', '``', 'Guy-in-van', \"''\", '?', 'Oh', '!', 'Phoebe', ',', 'is', \"n't\", 'Jethro', 'Tull', 'a', 'band', '?', 'Hi', '!', 'I', \"'m\", 'sorry', ',', 'this', 'sounds', 'like', 'something', 'I', \"'m\", 'never', 'gon', 'na', 'be', 'interested', 'in', '.', 'Just', 'tell', 'Joey', 'that', 'you', 'watched', 'the', 'tape', 'and', 'you', 'liked', 'it', ',', 'but', 'your', 'bosses', 'did', \"n't\", '.', 'Then', 'that', 'way', ',', 'you', \"'re\", 'the', 'good', 'guy', 'and', 'they', \"'re\", 'the', 'bad', 'guys', '.', 'Who', \"'s\", 'Gladys', '?', 'Oh', ',', 'and', 'Monica', 'gets', 'to', 'keep', 'her', '?', 'In', 'her', 'house', '?', 'I', 'am', 'so', 'jealous', '!', 'Well', ',', 'I', 'mean', ',', 'sure', ',', 'of', 'course', '.', 'But', '...', 'you', 'already', 'gave', 'that', 'to', 'Monica', ',', 'so', '...', 'No', ',', 'I', 'could', \"n't\", 'let', 'you', 'do', 'that', '.', 'But', 'I', 'do', \"n't\", 'want', 'you', 'to', '.', 'But', 'I', 'insist', 'harder', '!', 'No', ',', 'no', ',', 'that', \"'s\", 'ok.', 'You', 'won', 'fair', 'and', 'square', '.', 'I', \"'m\", 'so', 'sad', '!', 'Did', 'you', 'watch', 'the', 'tape', '?', 'But', 'you', 'are', 'a', 'liar', '.', 'Well', ',', 'this', 'is', 'going', 'well', '.', 'Wow', '!', 'Oh', ',', 'she', \"'s\", 'so', 'nice', 'and', 'big', '!', 'Oh', ',', 'Monica', ',', 'where', 'are', 'you', 'going', 'to', 'display', 'Gladys', 'oh', 'so', 'proudly', '?', 'Well', ',', 'hey', '!', 'How', 'about', 'right', 'above', 'the', 'TV', '?', '.', 'That', 'way', ',', 'it', 'will', 'be', 'the', 'first', 'thing', 'that', 'you', 'see', 'when', 'you', 'walk', 'in', 'the', 'door', '!', 'Oh', '!', 'There', \"'s\", 'nothing', 'above', 'your', 'bed', '!', '!', 'O-oh', 'my', 'God', '!', 'Joey', ',', 'what', '...', 'is', '...', 'this', '...', 'thing', '...', 'doing', 'here', '?', 'Joey', ',', 'we', \"'re\", 'not', 'keeping', 'this', '!', 'Alright', ',', 'fine', '.', 'You', 'can', 'keep', 'it', '.', 'As', 'long', 'as', 'you', 'do', \"n't\", 'mind', 'that', 'she', \"'s\", 'haunted', '.', 'Well', ',', 'legend', 'has', 'it', 'Joey', ',', 'that', '...', 'she', 'comes', 'alive', 'when', 'you', \"'re\", 'asleep', '.', 'She', 'climbs', 'out', 'of', 'the', 'frame', ',', 'and', 'then', 'drags', 'her', 'half-a-body', 'across', 'the', 'floor', ',', 'just', 'looking', 'for', 'legs', 'to', 'steal', '.', 'And', 'then', 'with', 'her', 'one', 'good', 'hand', ',', 'she', 'slo-o-owly', 're-e-a-aches', 'up', 'and', 'turns', 'your', 'doorknob', '.', 'Well', ',', 'why', 'I', 'told', 'him', 'it', \"'s\", 'haunted', '.', 'Two', 'can', 'play', 'at', 'this', 'game', '.', 'Yes', 'I', 'can', '!', 'She', \"'s\", 'yours', '!', 'She', \"'s\", 'yours', '!', 'She', \"'s\", 'mine', '!', 'She', \"'s\", 'mine', '!', 'I', 'want', 'Gladys', '!', 'She', \"'s\", 'mine', '!', 'She', \"'s\", 'mine', '!', 'Excellent', '!', 'Hi', '!', 'Emma', 'will', 'be', 'up', 'in', 'a', 'minute', '!', 'Oh', 'hey', 'Ross', '...', 'Listen', ',', 'I', 'heard', 'about', 'you', 'and', 'Charlie', '.', 'I', \"'m\", 'really', 'sorry', '.', 'Absolutely', '.', 'So', ',', 'uhm', '...', 'what', 'are', 'you', 'gon', 'na', 'do', 'today', '?', 'Oh', 'my', 'God', ',', 'what', '!', '?', 'Ok', ',', 'look', ',', 'Ross', '.', 'I', 'do', 'not', 'want', 'Emma', 'going', 'to', 'the', 'playground', '.', 'All', 'right', ',', 'well', ',', 'if', 'you', 'must', 'know', '...', 'I', 'had', 'a', 'traumatic', '...', 'swing', 'incident', '...', 'when', 'I', 'was', 'little', '.', 'Yes', ',', 'I', 'was', '4', 'years', 'old', 'and', 'I', 'was', 'on', 'the', 'swing', 'and', 'then', 'all', 'of', 'a', 'sudden', 'my', 'hair', 'got', 'tangled', 'in', 'the', 'chain', '.', 'And', 'to', 'get', 'me', 'out', 'my', 'mom', 'had', 'to-had', 'to', 'cut', 'a', 'big', 'chunk', 'of', 'my', 'hair', '!', 'And', 'it', 'was', 'uneven', 'for', 'weeks', '!', 'Ok', ',', 'fine', '!', 'You', 'can', 'make', 'fun', 'of', 'me', '.', 'I', 'do', 'not', 'want', 'Emma', 'going', 'there', '.', 'And', 'I', 'was', 'thinking', 'Claire', 'Danes', '.', 'Ross', ',', 'those', 'things', 'go', 'like', '40', 'miles', 'an', 'hour', '!', 'Ok', '?', 'When', 'you', \"'re\", '...', 'and', 'there', 'is', 'that', 'moment', 'when', 'you', 'are', 'at', 'the', 'top', ',', 'when', 'you', 'just', 'do', \"n't\", 'know', 'if', 'you', \"'re\", 'gon', 'na', 'return', 'back', 'to', 'earth', '!', 'All', 'right', '!', 'Irrational', ',', 'huh', '?', 'All', 'right', ',', 'well', ',', 'I', '’', 'll', 'remember', 'that', 'the', 'next', 'time', 'you', 'freak', 'out', 'about', 'a', 'spider', 'in', 'your', 'apartment', '!', 'Ok', ',', 'careful', '.', 'Careful', ',', 'watch', 'her', 'hair', '.', 'WATCH', 'HER', 'HAIR', '!', 'I', 'know', 'but', 'they', '’', 're', 'just', 'so', 'beautiful', '!', 'Oh', ',', 'my', 'God', ',', 'I', 'just', 'pulled', 'one', 'out', '.', 'Ok.', 'Ok.', 'Ok', ',', 'careful', ',', 'ok.', 'Oh', ',', 'she', '’', 's', 'smiling', '!', 'Oh', 'my', 'God', ',', 'she', 'does', 'like', 'it', '!', 'Awe', '!', 'Oh', 'my', 'God', '!', 'Looks', ',', 'she', '’', 's', 'a', 'little', 'dare-devil', '!', 'Oh', ',', 'let', 'me', 'push', ',', 'can', 'I', 'push', '?', 'Ok.', 'Oh', 'God', '.', 'Get', 'the', 'camera', ',', 'it', '’', 's', 'in', 'the', 'diaper', 'bag', '.', 'Oh', ',', 'oh', 'Ross', ',', 'oh', 'my', 'God', ',', 'are', 'you', 'okay', '?', 'Ross', ',', 'see', '!', 'I', 'told', 'you', ',', 'those', 'swings', 'are', 'evil', '!', 'Alright', ',', 'that', 'is', 'it', '.', 'That', 'is', 'the', 'last', 'time', 'Emma', 'is', 'getting', 'on', 'one', 'of', 'those', 'things', 'for', 'her', 'entire', 'life', '.', 'Ross', ',', \"c'mon\", ',', 'please', '.', 'Can', 'we', 'just', 'get', 'out', 'of', 'here', ',', 'before', 'somebody', 'else', 'gets', 'hurt', '?', 'I', 'know', 'what', 'this', 'is', 'all', 'about', '...', 'You', \"'ve\", 'always', 'been', 'jealous', 'of', 'my', 'hair', '.', 'Alright', 'fine', '.', 'I', \"'ll\", 'do', 'it', '.', 'If', 'you', 'hold', 'a', 'spider', '.', 'IF', 'you', 'hold', 'a', 'spider', '.', 'Ok', '...', 'I', 'got', 'a', 'spider', '.', 'There', 'were', 'two', ',', 'I', 'picked', 'the', 'bigger', 'one', '.', 'Ok', '...', 'Ok', '...', 'O-k', '...', 'Ok', '...', 'whoo', '...', 'ok', '...', 'wow', '...', 'ok', '...', 'OH', '!', 'Hi', '!', 'I', 'ca', \"n't\", 'believe', 'this', '!', 'This', 'is', 'Emma', \"'s\", 'first', 'Thanksgiving', '!', 'It', \"'s\", 'not', '?', 'When', 'was', 'she', 'born', '?', 'Hi', '!', 'Happy', 'Thanksgiving', '!', 'Did', 'you', 'at', 'least', 'win', 'the', 'contest', '?', 'Ca', \"n't\", 'wait', '!', 'Yeah', '.', 'Well', ',', 'let', \"'s\", 'see', '...', 'uh', '...', 'I', 'know', 'that', 'she', 'has', 'a', 'meeting', 'with', 'her', 'lawyer', 'and', 'then', 'she', 'has', 'to', 'make', 'a', 'very', 'big', 'poop', '.', 'Why', '?', 'Oh', 'my', 'God', '!', 'That', \"'s\", 'the', 'creepiest', 'thing', 'I', \"'ve\", 'ever', 'heard', '!', 'Oh', '!', 'Phoebe', ',', 'all', 'babies', 'are', 'beautiful', '!', 'Phoebe', ',', 'just', 'the', 'idea', 'of', 'pitting', 'one', 'baby', 'against', 'another', ',', 'I', 'mean', ',', 'you', 'know', ',', 'and', 'judging', 'who', \"'s\", 'cuter', 'just', 'for', 'a', 'trophy', '...', 'And', 'a', 'thousand', 'dollars', '.', '...', 'is', 'something', 'I', \"'m\", 'very', 'interested', 'in', '!', 'Oh', 'please', ',', 'do', 'not', 'tell', 'Ross', '.', 'He', 'still', 'believes', 'that', 'what', \"'s\", 'in', 'the', 'inside', 'is', 'important', '...', 'Where', 'am', 'I', 'gon', 'na', 'get', 'a', 'cowgirl', 'outfit', 'on', 'Thanksgiving', '?', 'Oh', ',', 'take', 'the', 'clothes', 'of', 'Joey', \"'s\", 'Cabbage', 'Patch', 'Kid', '.', 'Oh', 'Phoebe', ',', 'listen', '.', 'Well', ',', 'I', 'think', 'we', 'got', 'ta', 'go', '.', 'This', 'place', 'is', 'really', 'freaking', 'me', 'out', '.', 'I', \"'ve\", 'been', 'watching', 'this', 'guy', 'over', 'there', ',', 'I', 'do', \"n't\", 'think', 'he', 'came', 'with', 'a', 'kid', '!', 'Phoebe', ',', 'I', 'think', '...', 'It', \"'s\", 'just', 'too', 'weird', ',', 'I', 'just', 'saw', 'a', 'one', 'year', 'old', 'running', 'around', 'with', 'pantyhose', 'on', '!', 'Oh', ',', 'Phoebe', '!', 'Come', 'on', '!', 'You', 'know', 'what', ',', 'it', \"'s\", 'already', 'three', \"o'clock\", 'and', 'they', 'have', \"n't\", 'even', 'gotten', 'to', 'Emma', \"'s\", 'group', 'yet', '.', 'We', 'got', 'ta', 'go', ',', 'we', 'got', 'dinner', '!', 'Phoebe', ',', 'you', 'have', 'to', 'calm', 'down', '.', 'Really', '?', 'You', 'heard', 'them', 'say', 'that', '?', 'All', 'right', ',', 'okay', '.', 'Alright', ',', 'let', \"'s\", 'give', 'to', 'these', 'babies', 'something', 'to', 'cry', 'about', '!', 'No', ',', 'what', '?', 'No', 'Phoebe', ',', 'I', 'am', 'not', 'letting', 'you', 'put', 'makeup', 'on', 'my', 'baby', '!', 'Because', 'I', 'already', 'did', '!', 'No', '...', 'What', 'are', 'you', 'doing', 'here', '!', 'And', 'I', 'won', '!', 'Yes', '!', 'Y-E-S', '.', 'Yes', '!', 'Yeah', '.', 'That', \"'s\", 'me', '!', 'She', 'won', 'a', 'thousand', 'dollars', '!', 'Well', ',', 'I', 'do', \"n't\", 'know', ',', 'you', 'guys', 'figure', 'it', 'out', ',', 'I', 'got', 'to', 'put', 'Emma', 'down', 'for', 'a', 'nap', '.', 'Alright', ',', 'Emma', 'is', 'napping', '...', 'what', 'happened', 'to', 'your', 'shirt', '?', 'You', 'know', 'what', ',', 'we', 'just', 'say', 'that', 'she', 'said', 'it', 'was', '5', \"o'clock\", '.', 'We', \"'ll\", 'just', 'act', 'casual', '.', 'We', \"'re\", 'not', 'late', ',', 'we', \"'re\", 'right', 'on', 'time', '.', 'Oh', ',', 'God', '.', 'This', 'is', 'bad', '.', 'This', 'is', 'so', 'bad', '.', 'Oh', ',', 'hey', ',', 'I', 'have', 'an', 'idea', '.', 'Why', 'do', \"n't\", 'we', 'play', 'rock-paper-scissors', ',', 'and', 'whoever', 'loses', 'goes', 'in', 'first', '.', 'Ready', '?', '.', 'Alright', ',', 'enough', ',', 'enough', ',', 'come', 'on', '.', 'Let', \"'s\", 'just', 'all', 'go', 'in', 'at', 'the', 'same', 'time', '.', 'Alright', ',', 'come', 'on', '...', 'Alright', ',', 'you', 'guys', '.', 'We', \"'re\", 'so', 'sorry', 'we', \"'re\", 'late', '.', 'Please', 'let', 'us', 'in', ',', 'so', 'we', 'can', 'have', 'dinner', 'together', '.', 'You', 'guys', ',', 'come', 'on', ',', 'it', 'does', \"n't\", 'matter', 'why', 'we', \"'re\", 'late', '.', 'We', \"'re\", 'all', 'here', 'now', ',', 'please', 'let', 'us', 'in', 'so', 'we', 'can', 'have', 'some', 'of', 'your', 'delicious', 'turkey', '.', 'Oh', ',', 'I', 'just', 'remembered', '.', 'We', 'do', 'have', 'something', 'to', 'eat', '.', 'Monica', 'put', 'something', 'in', 'our', 'oven', 'this', 'morning', '.', 'Huh', '...', 'OH', 'MY', 'GOD', 'IT', \"'S\", 'BRUSSELS', 'SPROUTS', '.', 'Oh', ',', 'I', 'know', '...', 'I', 'still', 'have', 'my', 'old', 'key', '!', 'We', 'can', 'just', 'unlock', 'the', 'door', '.', 'You', 'know', 'what', '?', 'I', 'do', \"n't\", 'want', 'to', 'be', 'with', 'them', 'either', ',', 'but', 'it', \"'s\", 'Thanksgiving', 'and', 'we', 'should', 'not', 'want', 'to', 'be', 'together', ',', 'together', '.', 'Oh', '!', 'So', 'bad', '.', 'Dessert', '?', 'Congratulatioooons', '!', 'Ewww', ',', 'is', 'that', 'what', 'that', 'is', '?', 'Yeah', '!', 'I', \"'ll\", 'cook', '!', 'Hey', '!', 'I', 'lent', 'them', 'to', 'Ross', '.', 'I', \"'m\", 'so', 'happy', 'for', 'you', '!', 'Hey', ',', 'who', \"'s\", 'Phoebe', 'with', '?', 'Do', 'you', 'think', 'I', \"'m\", 'someone', 'else', '?', 'Well', ',', 'believe', 'it', 'or', 'not', ',', 'it', \"'s\", 'true', '.', 'When', 'Joey', 'and', 'I', 'were', 'together', ',', 'he', 'was', 'wonderful', '.', 'He', 'was', 'thoughtful', 'and', 'mature', '.', 'And', 'for', 'the', 'one', 'week', 'that', 'we', 'went', 'out', ',', 'he', 'did', \"n't\", 'sleep', 'with', 'anybody', 'else', '!', 'Hi', '!', 'Oh', '!', 'Well', ',', 'it', \"'s\", 'a', 'little', 'low', '...', 'pick', 'up', 'a', 'little', '...', 'a', 'little', 'bit', 'more', '...', 'a', 'little', 'bit', 'more', '...', 'There', 'you', 'go', '!', 'Now', 'throw', 'it', 'away', '!', 'Ross', ',', 'please', ',', 'trust', 'me', '.', 'I', 'buy', '30', 'fashion', 'magazines', 'a', 'month', '.', 'Now', ',', 'I', 'do', \"n't\", 'know', 'who', \"'s\", 'running', 'for', 'president', 'or', 'who', 'that', '...', 'NATO', 'guy', 'is', ',', 'but', 'I', 'do', 'know', 'that', 'you', 'have', 'to', 'get', 'as', 'far', 'away', 'as', 'you', 'can', 'from', 'that', 'hat', '.', 'Hi', 'what', '?', 'Oh', '!', 'Oh', ',', 'no', '!', 'Oh', ',', 'yeah', '.', 'Joey', 'doesn', '’', 't', 'share', 'food', '.', 'I', 'mean', ',', 'just', 'last', 'week', 'we', 'were', 'having', 'breakfast', 'and', 'he', 'had', 'a', 'couple', 'of', 'grapes', 'on', 'his', 'plate', 'and', '...', 'Oh', 'no', '!', 'Not', 'me', '!', 'Emma', '!', 'Ah', ',', 'this', 'place', 'is', 'great', '!', 'Ross', ',', 'look', ',', 'I', 'know', 'that', 'some', 'of', 'this', 'stuff', 'is', 'out', 'there', ',', 'but', 'I', 'mean', ',', 'come', 'on', ',', 'look', 'at', 'this', ',', 'look', 'at', 'this', 'sweater', '!', '.', 'I', 'mean', ',', 'this', 'is', 'just', 'beautiful', '!', 'Yeah', ',', 'down', 'from', 'seven', 'hundred', ',', 'you', 'are', 'saving', 'like', 'two', 'hundred', 'bucks', '!', 'No', ',', 'no', ',', 'no', ',', 'no', '!', 'Ross', ',', 'wait', '!', 'Come', 'on', '!', 'You', 'know', ',', 'there', '’', 's', 'other', 'stuff', '.', 'Here', '’', 's', 'a', 'nice', 'shirt', ',', 'look', 'at', 'these', 'nice', 'pants', '...', 'Yes', ',', 'they', 'will', '!', 'You', 'know', 'what', 'you', 'should', 'do', '?', 'Just', 'go', 'take', 'a', 'walk', ',', 'all', 'right', '?', 'I', 'know', 'your', 'size', 'and', 'I', '’', 'm', '...', 'I', '’', 'm', 'gon', 'na', 'pick', 'up', 'some', 'really', 'good', 'stuff', 'for', 'you', '.', 'Yes', '!', 'And', 'I', 'know', 'what', 'looks', 'sexy', 'on', 'guys', '.', 'Please', ',', 'just', 'wear', 'what', 'I', 'suggest', ',', 'and', 'she', '’', 's', 'gon', 'na', 'go', 'nuts', 'for', 'you', '.', 'Why', 'do', 'men', 'keep', 'talking', 'to', 'me', 'like', 'this', '?', 'Oh', '!', 'Really', '?', 'Do', 'you', 'wan', 'na', 'try', 'some', 'of', 'them', 'on', 'for', 'me', '?', 'Oh', 'no', '!', 'I', 'took', 'one', 'of', 'Ross', \"'\", 'bags', 'by', 'mistake', ',', 'and', 'one', 'of', 'mine', 'is', 'missing', '.', 'My', 'God', ',', 'get', 'a', 'room', '!', 'Oh', 'God', '.', 'What', 'about', 'you', ',', 'Joe', '?', 'What', 'would', 'you', 'give', 'up', ',', 'sex', 'or', 'food', '?', 'No', ',', 'you', 'got', 'ta', 'pick', 'one', '!', 'You', 'got', 'ta', 'see', 'these', 'latest', 'pictures', 'of', 'Emma', '.', 'Yeah', '.', 'Oh', ',', 'no', ',', 'no', '.', 'That', 'is', 'a', 'doll', '.', 'Oh', '.', 'Who', 'is', 'the', 'blonde', ',', 'she', \"'s\", 'pretty', '.', 'He', \"'s\", 'not', 'having', 'an', 'affair', '!', 'No', ',', 'you', \"'re\", 'not', '!', 'Last', 'week', 'you', 'thought', 'Ross', 'was', 'trying', 'to', 'kill', 'you', '!', 'Oh', ',', 'that', 'does', \"n't\", 'mean', 'anything', '.', '``', 'Dude', ',', 'Where', \"'s\", 'My', 'Car', '?', \"''\", 'They', \"'re\", 'in', 'a', 'caaar', '...', 'Geez', '!', 'Oh', ',', 'yeah', ',', 'ok.', 'Let', 'me', 'just', 'grab', 'my', 'night', 'vision', 'goggles', 'and', 'my', 'stun', 'gun', '.', 'I', '’', 'm', 'telling', 'you', 'guys', ',', 'we', 'followed', 'them', 'out', 'to', 'a', 'house', 'in', 'Westchester', ',', 'the', 'went', 'in', 'for', 'like', 'forty-five', 'minutes', 'and', 'then', 'they', 'came', 'out', 'looking', 'pretty', 'happy', '!', 'Oh', ',', 'look', 'at', 'her', ',', 'so', 'happy', '!', 'Phoebe', 'and', 'I', 'saw', 'Chandler', 'with', 'a', 'blonde', 'woman', 'today', 'outside', 'on', 'the', 'street', 'and', 'then', 'we', 'followed', 'them', 'to', 'a', 'house', 'in', 'Westchester', '.', 'Who', \"'s\", 'Nancy', '?', 'Are', 'you', 'serious', '?', 'What', 'is', 'wrong', 'with', 'raising', 'a', 'kid', 'in', 'the', 'city', '?', 'I', \"'m\", 'doing', 'it', ',', 'Ross', 'is', 'doing', 'it', ',', 'Sarah', 'Jessica', 'Parker', 'is', 'doing', 'it', '!', 'Yeah', 'it', 'is', '.', 'Well', ',', 'it', 'is', ',', 'all', 'right', '?', 'When', 'we', 'were', 'out', 'there', 'today', ',', 'all', 'I', 'kept', 'thinking', 'was', ':', 'I', 'ca', \"n't\", 'believe', 'Chandler', 'is', 'screwing', 'this', 'woman', ',', 'but', 'MAN', 'this', 'would', 'be', 'a', 'nice', 'place', 'to', 'live', '!', \"C'mon\", 'Daddy', ',', 'listen', 'to', 'me', '!', 'All', 'of', 'my', 'life', ',', 'everyone', 'has', 'always', 'told', 'me', ',', \"'You\", \"'re\", 'a', 'shoe', '!', 'You', \"'re\", 'a', 'shoe', ',', 'you', \"'re\", 'a', 'shoe', ',', 'you', \"'re\", 'a', 'shoe', '!', \"'\", '.', 'And', 'today', 'I', 'just', 'stopped', 'and', 'I', 'said', ',', \"'What\", 'if', 'I', 'do', \"n't\", 'wan', 'na', 'be', 'a', 'shoe', '?', 'What', 'if', 'I', 'wan', 'na', 'be', 'a-', 'a', 'purse', ',', \"y'know\", '?', 'Or', 'a-', 'or', 'a', 'hat', '!', 'No', ',', 'I', 'do', \"n't\", 'want', 'you', 'to', 'buy', 'me', 'a', 'hat', ',', 'I', \"'m\", 'saying', 'that', 'I', 'am', 'a', 'ha-', 'It', \"'s\", 'a', 'metaphor', ',', 'Daddy', '!', 'Well', 'maybe', 'I', \"'ll\", 'just', 'stay', 'here', 'with', 'Monica', '.', 'You', \"'re\", 'fly', 'is', 'open', ',', 'Geller', '!', 'Ow', ',', 'that', 'had', 'to', 'hurt', '!', 'No', 'Mon', ',', 'you', 'want', 'to', 'put', 'them', 'in', 'concentric', 'circles', '.', 'I', 'want', 'to', 'do', 'this', '.', 'Oooohh', 'that', '’', 's', 'interesting', '.', '14', '?', 'Space', 'cowboy', '!', 'Ow', '...', 'Oh', 'Gosh', '!', 'Oh-oh-oh', ',', 'he', '’', 's', 'a', 'transponce—transpondster', '!', 'Y', '’', 'know', 'what', ',', 'you', 'are', 'mean', 'boys', ',', 'who', 'are', 'just', 'being', 'mean', '!', 'That', 'is', 'not', 'true', '.', 'She', 'did', '!', 'She', 'forced', 'me', '!', 'Well', 'it', 'stupid', ',', 'unfair', 'question', '!', 'Hey', ',', \"what's-what\", \"'s\", 'going', 'on', '?', '!', 'Funny', ',', 'because', 'I', 'was', 'just', 'gon', 'na', 'go', 'across', 'the', 'hall', 'and', 'write', 'that', 'on', 'Chandler', '.', 'Well', ',', 'Phoebe', 'that', '’', 's', 'fine', 'because', 'I', '’', 'm', 'not', 'moving', '.', 'Yeah', ',', 'I', 'do', '.', 'I-I', 'do', ',', 'do', 'that', '.', 'Well', 'y', '’', 'know', ',', 'I', 'don', '’', 't', 'want', 'you', 'to', 'be', 'cold', '.', 'And', 'a', 'crappy', 'New', 'Year', '.', 'You', 'ca', \"n't\", 'move', '.', 'You', 'just', '...', 'you', 'just', 'ca', \"n't\", '.', 'Yeah', '.', 'So', 'do', \"n't\", 'move', ',', 'okay', '?', 'Just', 'stay', 'here', 'and', '...', 'maybe', 'close', 'your', 'blinds', 'at', 'night', '.', 'Yeah', ',', 'we', \"'re\", 'gon', 'na', 'let', 'you', 'be', 'alone', '.', 'Aah', '!', 'Why', '?', 'What', 'are', 'these', 'for', '?', 'Ooh', '!', 'Oh', 'wow', 'this', 'is', 'so', 'beautiful', '.', 'Oh', 'God', ',', 'that', \"'s\", 'right', '.', 'I', 'blocked', 'that', 'out', '.', 'Oh', ',', \"d'you\", 'like', 'it', '?', 'What', '?', 'Pheebs', ',', 'I', '...', 'there', 'is', \"n't\", 'gon', 'na', 'be', 'any', 'flying', 'about', '!', 'We', 'actually', 'thought', 'we', 'were', 'a', 'little', 'too', 'mature', 'for', 'stuff', 'like', 'that', '.', 'Seriously', 'Pheebs', ',', 'it', \"'s\", 'not', 'gon', 'na', 'be', 'that', 'kind', 'of', 'a', 'party', '.', 'Nooo', '!', 'Phoebe', ',', 'of', 'course', 'there', 'is', 'more', '!', 'I', 'mean', ',', 'I', \"'ll\", 'just', 'go', 'and', 'talk', 'to', 'Monica', 'and', 'get', 'an', 'ETA', 'on', 'the', 'pee-pee', \"'s\", '!', 'Well', ',', 'he', \"'s\", 'coming', 'from', 'Jersey', ',', 'he', 'said', 'he', 'would', 'get', 'here', 'as', 'fast', 'as', 'he', 'could', '!', 'Uh', '!', 'The', 'police', '!', 'Yeah', '?', 'All', 'right', ',', 'look', ',', 'we', 'did', 'not', 'know', 'that', 'you', 'wanted', 'a', 'stripper', 'so', 'we', 'went', 'to', 'the', 'phonebook', 'and', 'we', 'got', 'the', 'first', 'name', 'we', 'could', 'find', '!', 'No', ',', 'that', \"'s\", 'ok', ',', 'let', \"'s\", 'me', 'just', 'get', 'my', 'check', 'book', '!', 'This', 'is', 'so', 'awesome', '!', 'College', 'guys', 'are', 'so', 'cute', '!', 'I', 'know', '.', 'But', 'if', 'some', 'guy', 'who', 'looks', 'like', 'Corey', 'Haim', 'wants', 'to', 'kiss', 'me', 'tonight', ',', 'I', \"'m\", 'sooo', 'gon', 'na', 'let', 'them', '!', 'It', '...', 'You', 'can', 'so', 'totally', 'tell', '.', 'Well', 'lets', 'see', '.', 'Maybe', 'he', 'knows', 'where', 'Ross', 'is', '.', 'Hey', ',', 'how', \"'s\", 'it', 'going', '.', 'Yeah', ',', 'Rachel', '.', 'And', 'this', 'is', 'Ross', \"'\", 'sister', ',', 'Monica', '.', 'We', 'met', 'at', 'Thanksgiving', '.', '.', 'Bitchin', \"'\", 'Oh', '.', 'I', 'am', 'sooo', 'drunk', '.', 'I', 'am', 'soo', 'not', 'going', 'to', 'do', 'good', 'on', 'my', 'SATs', 'tomorrow', '.', 'Oh', 'yeah', '.', 'There', 'is', 'a', 'plan', '!', 'Why', 'do', \"n't\", 'I', 'just', 'start', 'taking', 'my', 'smart', 'pills', 'now', '?', 'Oh', ',', 'what', 'a', 'line', '.', 'Oh', 'well', ',', 'You', 'know', ',', 'I', 'think', 'it', \"'s\", 'kinda', 'really', 'important', 'that', 'I', 'go', 'somewhere', 'where', 'there', \"'s\", 'sun', ',', 'so', 'I', \"'m\", 'sort', 'of', '...', 'Hey', '!', 'Yeah', 'okay', '.', 'No', ',', 'wait', '.', 'No', 'there', \"'s\", 'got', 'ta', 'be', 'something', 'else', 'that', 'you', 'can', 'do', '.', 'I', 'mean', ',', 'what', 'skills', 'do', 'you', 'have', '?', 'So', 'maybe', 'something', 'in', 'an', 'office', '.', 'Really', '?', 'Yeah', '.', 'Oh', ',', 'Monica', 'made', 'me', 'send', 'her', 'to', 'my', 'mother', \"'s\", '.', 'Apparently', 'babies', 'and', 'weddings', 'do', \"n't\", 'mix', '.', 'Uh', '...', 'November', '?', 'Hey', 'Pheebs', '...', 'Uhm', '...', 'you', 'have', \"n't\", 'told', 'these', 'guys', 'what', 'they', \"'re\", 'doing', 'in', 'the', 'wedding', 'yet', '.', 'Well', ',', 'this', 'is', 'really', 'awkward', 'Oh', ',', 'and', 'I', 'can', 'leave', '!', 'Goody', ',', 'what', 'is', 'it', '!', 'What', ',', 'what', ',', 'what', ',', 'no', ',', 'I', 'do', \"n't\", 'wan', 'na', 'do', 'that', '.', 'Happy', 'wedding', 'day', '!', 'Ok-dokey', ',', 'Joey', ',', 'listen', '.', 'This', 'is', 'gon', 'na', 'be', 'bridesmaid', 'central', ',', 'all', 'right', '?', 'We', \"'re\", 'gon', 'na', 'have', 'hair', 'and', 'make-up', 'going', 'on', 'in', 'the', 'bathroom', 'and', 'oh', ',', 'I', 'had', 'to', 'move', 'a', 'couple', 'of', 'things', 'in', 'the', 'fridge', 'to', 'make', 'room', 'for', 'the', 'corsages', '.', 'What', \"d'you\", 'want', '?', 'Oh', ',', 'Ross', ',', \"c'mon\", ',', 'please', '!', 'Do', \"n't\", 'make', 'this', 'harder', 'than', 'it', 'already', 'is', '!', 'Well', ',', 'Chandler', 'said', 'that', 'it', \"'s\", 'really', 'important', 'to', 'him', 'too', '!', 'Oh', ',', 'you', 'are', 'the', 'lesser', 'of', 'two', 'evils', '!', 'Hi', 'Even', 'so', ',', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'pick', 'Ross', '.', 'All', 'right', 'fine', ',', 'I', 'pick', 'you', '.', 'Oh', 'my', '...', 'Well', ',', 'in', 'my', 'defense', ',', 'you', 'were', 'not', 'supposed', 'to', 'tell', 'each', 'other', '.', 'Who', \"'s\", 'there', '?', 'Uh', '.', 'You', 'know', 'what', ',', 'I', 'ca', \"n't\", 'do', 'this', '.', 'I', 'do', \"n't\", 'know', 'which', 'one', 'of', 'you', 'guys', 'to', 'pick', '.', 'Wow', ',', 'this', 'is', 'a', 'tough', 'one', '.', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'have', 'to', 'go', 'with', 'the', 'dog', '.', 'Since', 'when', 'do', 'you', 'watch', 'the', 'news', '?', 'Wow', ',', 'you', 'know', ',', 'it', \"'s\", 'so', 'beautiful', 'out', 'there', '.', 'You', 'always', 'wanted', 'to', 'get', 'married', 'outside', '.', 'Why', 'do', \"n't\", 'you', 'guys', 'just', 'do', 'it', 'on', 'the', 'street', '?', 'Well', ',', 'look', ',', 'it', \"'s\", 'hardly', 'snowing', 'anymore', '.', 'I', 'mean', 'you', 'could', \"n't\", 'ask', 'for', 'a', 'more', 'romantic', 'setting', '.', 'This', 'could', 'be', 'the', 'simple', 'wedding', 'you', \"'ve\", 'always', 'wanted', '!', 'Oh', 'Phoebe', ',', 'I', \"'m\", 'so', 'happy', 'for', 'you', 'honey', '.', 'Geez', 'Ross', ',', 'you', 'could', 'have', 'showered', '.', 'How', 'was', 'the', 'honeymoon', '?', 'Oh', '!', 'I', 'did', 'not', 'know', 'you', 'spoke', 'French', '.', 'Oh', '...', 'you', \"'re\", 'so', 'sexy', '!', 'Seriously', 'stop', 'it', ',', 'or', 'I', \"'m\", 'gon', 'na', 'jump', 'on', 'ya', '.', 'Ross', '...', 'My', 'father', 'had', 'an', 'heart', 'attack', '...', '...', 'while', 'I', 'was', 'at', 'Barney', '’', 's', '.', 'Yeah', ',', 'they', 'said', 'he', \"'s\", 'gon', 'na', 'be', 'fine', ',', 'but', 'he', \"'s\", 'still', 'heavily', 'sedated', '.', 'No', ',', 'come', 'on', ',', 'I', \"'m\", 'totally', 'ok', '.', 'I', 'do', \"n't\", 'need', 'you', 'to', 'come', '!', 'I', 'can', 'totally', 'handle', 'this', 'on', 'my', 'own', '.', 'Ok', '.', 'If', 'you', 'really', 'need', 'to', '.', 'Oh', ',', 'I', 'really', 'could', '.', 'Ohh', '...', 'Oh', ',', 'uhm', ',', 'excuse', 'me', ',', 'I', \"'m\", 'here', 'to', 'see', 'my', 'father', '.', 'My', 'name', 'is', 'Rachel', 'Green', '.', 'Ross', ',', 'please', ',', 'this', 'is', 'a', 'hospital', ',', 'ok', '?', 'That', 'actually', 'means', 'something', 'here', '.', 'Can', 'somebody', 'please', 'go', 'in', '?', 'Ross', ',', 'please', ',', 'do', \"n't\", 'be', 'so', 'scared', 'of', 'him', '!', 'Oh', '!', 'Oh', '!', 'Oh', 'my', 'God', '!', 'Ohhh', ',', 'ohhh', ',', 'wow', ',', 'that', 'ear', 'and', 'nose', 'hair', 'trimmer', 'I', 'got', 'him', 'was', 'just', 'money', 'down', 'the', 'drain', ',', 'huh', '?', 'Oh', ',', 'great', ',', 'Are', 'you', 'gon', 'na', 'be', 'ok', '?', 'Hi', '!', 'Uh', '.', 'Did', 'you', 'call', 'your', 'parents', '?', 'Oh', 'good', '.', 'What', '?', 'What', 'do', 'you', 'mean', '?', 'You', \"'ve\", 'been', 'in', 'my', 'room', 'before', '!', 'Ok', 'I', 'got', 'ta', 'tell', 'ya', ',', 'it', \"'s\", 'really', 'weird', 'when', 'you', 'use', 'my', 'whole', 'name', '.', 'Yeah', '.', 'Yeah', ',', 'just', 'so', 'weird', 'seeing', 'him', 'like', 'that', ',', 'you', 'know', '?', 'I', 'mean', 'he', 'is', 'a', 'doctor', ',', 'you', 'do', \"n't\", 'expect', 'doctors', 'to', 'get', 'sick', '!', 'Ow', '.', 'I', 'do', \"n't\", 'want', 'him', 'to', 'wake', 'up', 'alone', '!', 'I', 'should', 'go', 'to', 'the', 'hospital', '!', 'What', '?', 'Really', ',', 'I', 'should', \"n't\", 'feel', 'guilty', '?', 'Ok', ',', 'maybe', 'you', \"'re\", 'right', '.', 'Wait', ',', 'wait', ',', 'wait', ',', 'wait', '.', 'Would', 'you', 'stay', 'here', 'with', 'me', 'for', 'a', 'little', 'while', '?', 'Ok', '.', 'Thank', 'you', 'for', 'coming', 'with', 'me', 'today', '.', 'Rachel', 'Green', 'is', 'very', 'happy', 'you', \"'re\", 'in', 'her', 'room', '!', 'I', 'just', 'do', \"n't\", 'want', 'to', 'be', 'alone', 'tonight', '.', 'Wait', ',', 'we', 'wo', \"n't\", 'know', 'that', 'until', 'we', 'do', 'it', ',', 'will', 'we', '?', 'Taking', 'advantage', '?', 'I', \"'m\", 'giving', 'you', 'the', 'advantage', ',', 'enjoy', '!', 'Wow', '.', 'Ok.', 'Mhm-mh', '!', 'Sure', '.', 'Hmm-hmm', '.', 'Yep', '.', 'FYI', '..', 'In', 'the', 'future', ',', 'when', 'a', 'girl', 'asks', 'for', 'some', 'ill-advised', 'sympathy', 'sex', '...', 'just', 'do', 'it', '.', 'Really', '?', 'Well', ',', 'it', 'seems', 'to', 'me', 'if', 'you', \"'d\", 'done', 'the', 'right', 'thing', ',', 'I', 'would', 'not', 'have', 'woken', 'up', 'today', 'feeling', 'stupid', 'and', 'embarrassed', ',', 'I', 'would', 'have', 'woken', 'up', 'feeling', 'comforted', 'and', 'satisfied', '!', 'Oh', 'stop', 'that', '!', 'Oh', ',', 'really', ',', 'well', 'Ross', ',', 'you', 'know', 'what', '?', 'I', 'am', 'a', 'big', 'girl', '.', 'I', 'do', \"n't\", 'need', 'someone', 'telling', 'me', 'what', 'is', 'best', 'for', 'me', '.', 'Oh', ',', 'really', ',', 'really', '?', 'Well', ',', 'it', 'was', \"n't\", 'very', 'good', 'for', 'me', 'either', '.', 'What', '?', 'Oh', ',', 'good', '.', 'Okay', '...', 'Hey', 'listen', ',', 'just', 'before', 'you', 'go', 'I-I', 'again', ',', 'I', 'just', 'wan', 'na', 'say', '``', 'thank', 'you', \"''\", 'for', 'coming', 'with', 'me', '.', 'And', 'also', ',', 'you', 'know', 'I', 'uh', ',', 'I', 'was', 'thinking', 'about', 'what', 'you', 'said', ',', 'you', 'know', ',', 'about', 'the', 'whole', 'sex', 'thing', 'and', '...', 'it', \"'s\", 'probably', 'not', 'a', 'great', 'idea', 'to', 'go', 'down', 'that', 'road', 'again', '.', 'It', \"'s\", 'a', 'shame', 'though', ',', 'I', 'mean', ',', 'when', 'we', 'did', 'it', ',', 'it', 'was', 'pretty', 'good', '.', 'Hey', 'uhm', ',', 'do', 'you', 'remember', 'that', 'one', 'really', 'great', 'time', '...', '?', 'You', 'know', 'it', 'was', 'you', \"'re\", 'uhm', '...', 'birthday', '...', 'Well', ',', 'I', 'guess', 'that', \"'s\", 'all', 'in', 'the', 'past', ',', 'now', '.', 'Not', 'even', 'one', 'more', 'time', '?', 'No', 'matter', 'how', 'much', 'we', 'want', 'it', '.', 'That', \"'s\", 'what', 'we', 'decided', '.', '...', 'It', \"'s\", 'kinda', 'hard', 'though', '!', 'You', 'know', ',', 'when', 'two', 'people', 'have', 'a', 'connection', ',', 'you', 'know', ',', 'that', \"'s\", '...', 'just', 'seems', 'like', 'such', 'a', '...', 'waste', '.', '...', 'Ross', '?', 'Just', 'so', 'you', 'know', '...', 'With', 'us', '...', 'it', \"'s\", 'never', 'off', 'the', 'table', '.', 'Hi', 'you', 'guys', '.', 'Ooh', ',', 'Italian', '!', 'Hey', 'you', 'guys', '...', 'You', \"'re\", 'never', 'gon', 'na', 'believe', 'it', '.', 'This', 'headhunter', 'called', 'me', '.', 'I', 'have', 'a', 'meeting', 'tomorrow', 'with', 'Gucci', '.', 'Gucci', 'wants', 'me', '.', 'Congratulations', '!', 'Ooh', '!', 'Hi', ',', 'I', \"'m\", 'here', 'to', 'see', 'mr', 'Campbell', '...', 'with', 'Gucci', '.', 'The', 'reservation', 'is', 'probably', 'under', 'Gucci', '.', 'It', \"'s\", 'spelled', 'like', 'Gukki', ',', 'which', 'could', 'be', 'confusing', '.', 'Oh', 'my', 'God', '!', 'That', \"'s\", 'my', 'boss', '.', 'You', 'have', 'to', 'seat', 'us', 'somewhere', 'else', '.', 'But', 'my', '...', 'but', 'my', 'boss', 'can', 'not', 'see', 'me', '.', 'I', \"'m\", 'interviewing', 'for', 'another', 'job', '.', 'Sssshhhh', '!', 'Hi', '...', 'I', \"'m\", 'on', 'a', 'date', '...', 'Yeah', ',', 'it', 'is', '.', 'Yeah', ',', 'you', 'know', ',', 'it', \"'s\", 'tough', '.', 'Single', 'mom', ',', 'career', '...', 'You', 'got', 'ta', 'get', 'out', 'there', '.', 'Oh', '.', 'Yes', ',', 'hi', '!', 'Hi', '!', 'Excuse', 'us', '.', 'Okay', '.', 'Oh', ',', 'yeah', '...', 'Oh', 'he', \"'s\", 'cute', '!', 'Wha', '...', 'My', 'resumé', '?', 'I', 'would', \"n't\", '...', 'I', 'would', \"n't\", 'call', 'my', 'online', 'dating', 'profile', 'a', 'resumé', '.', 'Whatever', 'happened', 'to', 'just', 'singing', 'for', 'no', 'reason', '?', 'Huh', '?', 'What', '?', 'I-I', 'do', \"n't\", '.', 'No', ',', 'I-I-I', 'love', 'it', 'there', '.', 'Oh', '!', 'It', \"'s\", 'not', 'good', '.', 'Well', ',', 'I', 'did', \"n't\", 'get', 'the', 'job', 'at', 'Gucci', 'and', 'I', 'got', 'fired', 'from', 'Ralph', 'Lauren', '.', 'Well', ',', 'my', 'boss', 'was', 'at', 'the', 'same', 'restaurant', 'where', 'I', 'was', 'having', 'my', 'interview', 'and', 'he', 'heard', 'everything', '.', 'So', 'later', 'he', 'calls', 'me', 'to', 'his', 'office', 'and', 'he', 'tells', 'me', 'that', 'he', \"'s\", 'gon', 'na', 'have', 'to', 'let', 'me', 'go', ',', 'because', 'I', \"'m\", 'not', 'a', 'team', 'player', '.', 'And', 'I', 'said', '``', 'Wait', 'a', 'minute', '!', 'Yes', 'I', 'am', '.', \"''\", 'and', 'I', 'had', 'to', 'sit', 'there', 'for', '45', 'minutes', 'while', 'he', 'proved', 'that', 'that', 'in', 'fact', '...', 'was', 'true', '.', 'Oh', 'it', '...', 'good', '!', 'Yeah', ',', 'but', 'I', \"'m\", 'not', 'gon', 'na', 'hear', 'from', 'that', 'for', 'a', 'couple', 'of', 'days', '.', 'Ah', ',', 'all', 'right', '.', 'Here', \"'s\", 'to', 'Ross', '!', 'No', ',', 'it', \"'s\", 'not', 'that', '.', 'I', 'got', 'fired', 'today', '.', 'And', 'I', 'did', \"n't\", 'get', 'the', 'other', 'job', '.', 'Oh', '!', 'No', ',', 'it', \"'s\", 'okay', ',', 'you', 'did', \"n't\", 'know', '.', 'Oh', ',', 'thank', 'you', '...', 'Well', ',', 'now', 'I', 'do', \"n't\", 'have', 'to', '.', 'Ross', ',', 'what', 'is', 'taking', 'you', 'so', 'long', '?', 'Mark', '?', 'Oh', 'my', 'God', '!', 'I', \"'m\", 'fantastic', '.', 'You', 'remember', 'Ross', '?', 'Oh', ',', 'well', ',', 'you', \"'re\", 'not', 'catching', 'me', 'on', 'my', 'best', 'day', '.', 'No', ',', 'but', 'it', \"'s\", 'good', ',', 'you', 'know', ',', 'I', \"'m\", 'gon', 'na', 'take', 'some', 'time', 'off', 'and', 'do', 'some', 'charity', 'work', '.', 'Well', ',', 'screw', 'charity', 'work', '.', 'What', \"'ve\", 'you', 'got', '?', 'Great', '!', 'I', \"'ll\", 'call', 'ya', '!', 'Oh', 'my', 'God', '!', 'Ross', '!', 'That', \"'s\", 'Mark', '.', 'From', 'Bloomingdales', '?', 'You', 'were', 'insanely', 'jealous', 'of', 'him', '.', 'Yes', '.', 'Oh', '.', 'What', '?', 'You', 'do', \"n't\", 'want', 'me', 'to', 'get', 'a', 'job', '?', 'Ugh', '.', 'Ross', ',', 'you', 'know', 'what', '?', 'Okay', ',', 'let', \"'s\", 'talk', 'about', 'it', 'later', ',', 'there', 'comes', 'security', '.', 'Hi', 'you', 'guys', '!', 'Oh', ',', 'it', 'was', 'great', '.', 'Mark', 'is', 'so', 'sweet', '.', 'Oh', 'Ross', ',', 'come', 'on', '.', 'He', \"'s\", 'happily', 'married', '.', 'His', 'wife', 'just', 'had', 'twins', '.', 'He', 'offered', 'me', 'one', '.', 'I', 'know', ',', 'it', \"'s\", 'amazing', '.', 'It', \"'s\", 'amazing', '.', 'It', \"'s\", 'so', 'much', 'better', 'than', 'what', 'I', 'had', 'at', 'Ralph', 'Lauren', '.', 'The', 'money', 'is', 'great', '...', 'He', 'offered', 'me', 'one', '.', 'The', 'job', 'is', 'in', 'Paris', '.', 'Oh', ',', 'God', '!', 'Please', ',', 'somebody', 'say', 'something', '.', 'I', 'know', ',', 'it', \"'s\", 'huge', ',', 'and', 'it', \"'s\", 'scary', ',', 'and', 'it', \"'s\", '...', 'really', 'far', ',', 'far', 'away', 'from', 'you', 'guys', ',', 'but', 'this', 'is', 'such', 'an', 'incredible', 'opportunity', 'for', 'me', '.', 'And', 'I', \"'ve\", 'already', 'talked', 'to', 'them', 'about', 'our', 'situation', 'with', 'Emma', ',', 'and', 'they', 'said', 'they', \"'ll\", 'do', 'whatever', 'we', 'need', 'to', 'make', 'us', 'feel', 'comfortable', '.', 'I', 'mean', ',', 'I', \"'ll\", 'fly', 'back', 'and', 'forth', ',', 'they', \"'ll\", 'fly', 'you', 'out', '...', 'Anything', 'we', 'want', '.', 'Thank', 'you', '!', 'Thank', 'you', '!', 'I', 'think', 'it', 'is', '.', 'I', 'got', 'a', 'really', 'incredible', 'job', 'offer', '.', 'It', \"'s\", 'in', 'Paris', '.', 'Look', ',', 'you', 'guys', '...', 'this', 'is', 'really', ',', 'really', 'important', 'to', 'me', '.', 'And', 'it', 'means', 'a', 'lot', 'if', 'you', 'could', 'try', 'to', 'get', 'on', 'board', '.', 'Joey', ',', 'it', 'would', 'mean', 'so', '...', 'Joey', '...', 'Hi', '.', 'Oh', ',', 'well', ',', 'she', \"'s\", 'asleep', 'now', '.', 'Stop', 'forcing', 'that', 'thing', 'on', 'her', '.', 'Oh', ',', 'you', \"'re\", 'not', 'gon', 'na', 'believe', 'what', 'happened', 'to', 'me', 'today', '!', 'Ralph', 'Lauren', 'called', ',', 'and', 'gave', 'me', 'my', 'job', 'back', '!', 'Yee', '.', 'I', 'mean', ',', 'it', 'was', 'so', 'weirdest', 'thing', '.', 'They', 'fired', 'me', 'and', 'then', 'out', 'of', 'nowhere', 'they', 'just', 'hire', 'me', 'back', '!', 'I', 'mean', ',', 'that', 'place', 'must', 'have', 'been', 'falling', 'apart', 'without', 'me', '.', 'No', ',', 'I', \"'m\", 'still', 'going', '.', 'When', 'the', 'Louis', 'Vuitton', 'people', 'found', 'out', 'that', 'Ralph', 'Lauren', 'wanted', 'me', 'back', ',', 'the', 'offered', 'me', 'more', 'money', '!', 'Is', \"n't\", 'that', 'great', '?', 'Hi', '!', 'You', 'are', 'never', 'going', 'to', 'believe', 'what', 'happened', 'to', 'me', 'today', '.', 'Ralph', 'Lauren', 'called', 'again', 'and', 'they', 'offered', 'me', 'more', 'money', '.', 'Yeah', '.', 'It', 'was', 'the', 'weirdest', 'thing', '.', 'Zelner', 'called', 'me', 'and', 'he', 'said', 'we', \"'ll\", 'do', 'everything', 'we', 'can', 'to', 'get', 'you', 'back', '.', 'And', 'that', 'I', 'should', 'thank', 'some', 'Ron', '...', 'I', 'do', \"n't\", 'even', 'know', 'what', 'department', 'that', 'guy', \"'s\", 'in', '.', 'Well', ',', 'I', 'took', 'it', '.', 'Ye-ah', '.', 'Yeah', '!', 'You', 'know', ',', 'the', 'money', \"'s\", 'great', '.', 'It', \"'s\", 'certainly', 'the', 'easier', 'choice', '...', 'Yeah', ',', 'you', 'know', ',', 'was', 'I', 'looking', 'forward', 'to', 'going', 'to', 'Paris', '?', 'Sure', '.', 'You', 'know', ',', 'was', 'I', 'excited', 'about', 'working', 'in', 'the', 'fashion', 'capital', 'of', 'the', 'world', '?', 'Ooh', ',', 'absolutely', '...', 'Oh', '...', '!', 'Yeah', ',', 'but', 'you', 'know', ',', 'this', 'is', '...', 'it', \"'s\", 'fine', '.', 'I', \"'m\", 'fine', 'going', 'back', 'to', 'a', 'job', 'where', 'I', \"'ve\", 'pretty', 'much', 'gotten', 'everything', 'out', 'of', 'that', 'I', 'possibly', 'can', '...', 'Well', 'yeah', ',', 'but', 'I', 'mean', ',', 'it', 'was', 'good', 'scared', 'though', ',', 'you', 'know', '?', 'Like', 'when', 'I-moved-to-New-York', 'scared', '.', 'Or', 'uhm', ',', 'when', 'I-found-out-I-was-', 'gon', 'na', '-have-Emma', 'scared', '...', 'But', 'this', 'is', '...', 'fine', '.', 'This', 'is', 'gon', 'na', 'be', 'good', '.', 'What', '?', 'You', 'really', 'think', 'so', '?', 'But', 'I', 'already', 'told', 'Zelner', 'that', 'I', 'would', 'come', 'back', '...', 'All', 'right', '.', 'ALL', 'RIGHT', '!', 'I', \"'m\", 'gon', 'na', 'do', 'it', '.', 'I', \"'m\", 'gon', 'na', 'go', 'to', 'Paris', '.', 'Yeah', '!', 'I', \"'m\", 'going', 'to', 'Paris', '.', 'Thank', 'you', ',', 'Ross', '!', 'Oh', '!', 'Oh', ',', 'I', \"'m\", 'so', 'happy', '.', 'Ok', '!', 'Ca', \"n't\", 'believe', 'I', \"'m\", 'risking', 'this', 'again', ',', 'but', 'you', \"'re\", 'on', '!', 'All', 'right', 'Joe', ',', 'you', 'remember', 'the', 'rules', '!', 'Heads', 'I', 'win', ',', 'tails', 'you', 'lose', '.', 'Oh', ',', 'that', 'sounds', 'good', '!', 'It', \"'s\", 'all', 'done', '!', 'I', 'know', '...', 'Honey', ',', 'seriously', ',', 'I', 'did', 'it', 'all', '.', 'The', 'luggage', 'that', 'I', \"'m\", 'taking', 'is', 'in', 'the', 'bedroom', ',', 'this', 'is', 'Emma', \"'s\", 'Paris', 'stuff', ',', 'these', 'are', 'the', 'boxes', 'that', 'I', \"'m\", 'having', 'shipped', ',', 'and', 'that', \"'s\", 'the', 'sandwich', 'that', 'I', 'made', 'for', 'the', 'plane', '...', 'Oh', ',', 'well', '.', 'Everything', 'that', 'I', 'need', 'is', 'in', 'here', 'and', 'my', 'travel', 'documents', 'are', 'on', 'the', 'counter', 'organized', 'in', 'the', 'order', 'that', 'I', 'will', 'be', 'needing', 'them', '.', 'It', 'should', 'be', 'right', 'next', 'to', 'my', 'plane', 'ticket', '.', 'What', '?', 'Maybe', 'I', 'put', 'it', 'in', 'here', '.', 'Oh', ',', 'oh', ',', 'it', \"'s\", 'not', 'in', 'there', '!', 'Oh', ',', 'no', '!', 'I', 'must', 'have', 'packed', 'it', 'in', 'one', 'of', 'these', 'boxes', '!', 'Shoot', '.', 'Oh', ',', 'I', 'ca', \"n't\", 'believe', 'I', 'did', 'this', '!', 'No', ',', 'no', ',', 'no', '.', 'It', \"'s\", 'ok', '.', 'I', \"'m\", 'gon', 'na', 'be', 'fine', '.', 'Well', ',', 'I', \"'ve\", 'been', 'better', '.', 'You', 'guys', 'are', 'gon', 'na', 'come', 'and', 'visit', 'me', ',', 'right', '?', 'I', \"'m\", 'gon', 'na', 'miss', 'you', 'so', 'much', '.', 'You', 'know', 'what', '?', 'Uhm', ',', 'I', 'have', 'some', 'goodbye', 'stuff', 'that', 'I', 'wanted', 'to', 'say', 'to', 'each', 'of', 'you', 'and', 'I', 'was', 'gon', 'na', 'save', 'it', 'until', 'the', 'end', 'of', 'the', 'night', ',', 'but', 'come', 'here', '.', 'Oh', ',', 'Pheebs', ',', 'I', 'do', \"n't\", 'even', 'know', 'where', 'to', 'start', '.', 'Oh', ',', 'oh', '.', '.', 'What', 'is', 'this', '?', 'I', \"'m\", 'gon', 'na', 'throw', 'this', 'away', ',', 'but', 'thank', 'you', 'so', 'much', 'for', 'the', 'gesture', '!', 'I', 'love', 'you', 'Phoebe', '.', 'All', 'right', '.', 'Well', ',', 'if', 'I', 'gon', 'na', 'do', 'this', ',', 'I', \"'d\", 'better', 'keep', 'going', '.', 'Ok.', 'Monica', '?', 'Can', 'you', 'come', 'here', 'with', 'me', 'for', 'a', 'minute', '?', 'Mon', '...', 'Okay', '...', 'I', \"'ve\", 'got', 'ta', '...', 'just', 'say', 'what', 'it', 'is', 'I', \"'m\", 'gon', 'na', 'say', '...', 'None', 'of', 'the', 'amazing', 'things', 'that', 'have', 'happened', 'to', 'me', 'in', 'the', 'last', 'ten', 'years', ',', 'would', 'have', 'happened', 'if', 'it', 'was', \"n't\", 'for', 'you', '.', 'No-one', 'has', 'been', 'more', 'like', 'a', 'sister', 'to', 'me', '...', 'I', 'would', \"n't\", 'know', 'what', 'I', \"'m\", 'gon', 'na', 'do', 'without', 'you', '...', 'I', '...', 'I', '...', 'I', '...', 'Oh', ',', 'I', \"'m\", 'sure', 'gon', 'na', 'miss', 'pretending', 'to', 'laugh', 'at', 'your', 'weird', 'jokes', 'that', 'I', 'do', \"n't\", 'get', '.', 'Well', ',', 'these', 'are', \"n't\", 'mine', '.', 'Maybe', 'Monica', 'used', 'to', 'use', 'them', 'with', '...', 'Well', ',', 'I', 'think', 'you', \"'re\", 'forgetting', 'the', 'kinkiest', 'former', 'resident', 'of', 'that', 'room', '.', 'Can', 'I', 'talk', 'to', 'you', 'alone', 'for', 'a', 'minute', '?', 'Oh', 'honey', '...', 'Oh', ',', 'you', 'know', 'what', '?', 'Let', \"'s\", 'not', 'say', 'anything', 'else', '.', 'I', 'love', 'you', '.', 'Okay', '.', 'Oh', '...', 'Oh', '!', 'Oh', '...', 'Well', '...', 'I', 'think', 'I', \"'m\", 'gon', 'na', 'take', 'off', '.', 'Oh', ',', 'you', 'guys', '.', 'This', 'was', 'an', 'amazing', 'night', '.', 'Thank', 'you', 'so', 'much', '.', 'I', 'love', 'you', '.', 'Good', 'night', '.', 'What', '?', 'Ross', '...', 'You', 'really', 'think', 'I', 'did', \"n't\", 'say', 'goodbye', 'to', 'you', 'because', 'I', 'do', \"n't\", 'care', '?', 'I', 'can', 'not', 'believe', 'that', 'after', 'ten', 'years', ',', 'you', 'do', 'not', 'know', 'ONE', 'thing', 'about', 'me', '.', 'Because', 'it', 'is', 'too', 'damn', 'hard', 'Ross', '.', 'I', 'ca', \"n't\", 'even', 'begin', 'to', 'explain', 'to', 'you', 'how', 'much', 'I', \"'m\", 'gon', 'na', 'miss', 'you', '.', 'When', 'I', 'think', 'about', 'not', 'seeing', 'you', 'every', 'day', ',', 'it', 'makes', 'me', 'not', 'want', 'to', 'go', '...', 'Okay', ',', 'so', 'if', 'you', 'think', 'that', 'I', 'did', \"n't\", 'say', 'goodbye', 'to', 'you', 'because', 'you', 'do', \"n't\", 'mean', 'as', 'much', 'to', 'me', 'as', 'everybody', 'else', ',', 'you', \"'re\", 'wrong', '.', 'It', \"'s\", 'because', 'you', 'mean', 'more', 'to', 'me', '.', 'So', 'there', ',', 'all', 'right', ',', 'there', \"'s\", 'your', 'goodbye', '...', 'Oh', '!', 'What', '?', 'WHAT', '?', 'So', 'if', 'you', 'think', 'I', 'did', \"n't\", 'say', 'goodbye', 'to', 'you', 'because', 'you', 'do', \"n't\", 'mean', 'as', 'much', 'to', 'me', 'as', 'everybody', 'else', ',', 'you', \"'re\", 'wrong', '.', 'It', \"'s\", 'because', 'you', 'mean', 'more', 'to', 'me', '.', 'What', '?', '!', 'Shh', '..', 'Go', 'back', 'to', 'sleep', '.', 'I', 'have', 'to', 'go', 'home', '.', 'It', 'really', 'was', '.', 'You', \"'ve\", 'learned', 'some', 'new', 'moves', '!', 'Ah', '.', 'I', 'know', '!', 'Morning', '!', 'Hey', '.', 'Good', '.', 'You', '?', 'Chick', 'and', 'the', 'duck', '?', 'Did', \"n't\", 'they', 'die', '...', 'You', 'too', '.', 'Last', 'night', 'was', 'just', 'wonderful', '.', 'I', 'woke', 'up', 'today', 'with', 'the', 'biggest', 'smile', 'on', 'my', 'face', '.', 'Uh-huh', '.', 'I', 'know', '.', 'It', 'was', 'just', ',', 'it', 'was', 'just', 'the', 'perfect', 'way', 'to', 'say', 'goodbye', '.', 'Hi', '!', 'Hi', '!', 'So', 'I', 'just', 'dropped', 'Emma', 'off', 'at', 'my', 'mom', \"'s\", '.', 'No', ',', 'we', 'decided', 'that', 'I', 'would', 'go', 'ahead', 'and', 'set', 'up', 'first', ',', 'and', 'then', 'my', 'mom', 'would', 'bring', 'Emma', 'to', 'Paris', 'on', 'Sunday', '.', 'Are', 'you', 'kidding', '?', 'Eight', 'hours', 'with', 'my', 'mother', 'talking', 'about', 'Atkins', '?', 'Good', 'luck', ',', 'Emma', '!', 'Yeah', '?', 'Gunther', '...', 'Oh', '...', 'I', 'love', 'you', 'too', '.', 'Probably', 'not', 'in', 'the', 'same', 'way', ',', 'but', 'I', 'do', '.', 'And', ',', 'and', 'when', 'I', \"'m\", 'in', 'a', 'café', ',', 'having', 'coffee', ',', 'or', 'I', 'see', 'a', 'man', 'with', 'hair', 'brighter', 'than', 'the', 'sun', ',', 'I', \"'ll\", 'think', 'of', 'you', '.', 'Aw', '.', 'Oh', '...', 'Bye', 'guys', '.', 'Hi', '!', 'You', 'guys', ',', 'the', 'car-service', 'just', 'got', 'here', '.', 'I', 'ca', \"n't\", 'believe', 'they', \"'re\", 'not', 'home', 'yet', '!', 'I', 'have', 'to', 'catch', 'my', 'stupid', 'plane', '.', 'I', 'wan', 'na', 'see', 'the', 'baby', '!', 'Oh', 'my', 'God', '!', 'Hi', '!', 'Oh', 'my', 'gosh', '!', 'Oh', '.', 'What', '...', 'What', '...', 'Aw', '..', 'Oh', 'my', 'gosh', '.', 'Wow', ',', 'so', 'beautiful', '.', 'Oh', ',', 'you', 'guys', ',', 'I', 'ca', \"n't\", 'believe', 'this', '.', 'But', 'I', \"'ll\", 'leave', 'now', ',', 'or', 'I', \"'m\", 'gon', 'na', 'miss', 'my', 'plane', '.', 'Me', 'too', '.', 'Oh', ',', 'I', \"'m\", 'just', 'sorry', 'I', \"'m\", 'not', 'gon', 'na', 'be', 'around', 'to', 'watch', 'you', 'two', 'attempt', 'to', 'handle', 'this', '!', 'Alright', ',', 'I', 'ca', \"n't\", 'say', 'goodbye', 'to', 'you', 'guys', 'again', '.', 'I', 'love', 'you', 'all', 'so', 'much', '.', 'I', 'will', '.', 'Ross', ',', 'come', 'here', '.', 'I', 'just', 'want', 'you', 'to', 'know', '..', 'Last', 'night', '..', 'I', \"'ll\", 'never', 'forget', 'it', '.', 'Alright', ',', 'now', 'I', 'really', 'have', 'to', 'go', '.', 'Okay', '.', 'Au', 'revoir', '!', 'Oh', ',', 'they', \"'re\", 'gon', 'na', 'really', 'hate', 'me', 'over', 'there', '.', 'Oh', 'my', 'God', '!', 'I', 'was', 'so', 'afraid', 'I', 'was', \"n't\", 'gon', 'na', 'remember', 'any', 'of', 'my', 'high-school', 'French', ',', 'but', 'I', 'understood', 'every', 'word', 'you', 'just', 'said', '!', 'Oh', '.', 'Oh', ',', 'shoot', '.', 'I', 'had', 'it', '.', 'Oh', ',', 'I', 'ca', \"n't\", 'believe', 'this', '.', 'I', 'have', 'it', ',', 'I', 'have', 'it', ',', 'I', 'have', 'it', '.', 'Oh', ',', 'okay', ',', 'I', 'ca', \"n't\", 'find', 'it', ',', 'but', 'I', 'remember', 'that', 'I', 'was', 'in', 'seat', '32C', ',', 'because', 'that', \"'s\", 'my', 'bra-size', '.', 'Okay', ',', 'fine', '!', 'But', 'you', 'know', 'what', '?', 'If', 'I', 'was', 'in', '36D', ',', 'we', 'would', 'not', 'be', 'having', 'this', 'problem', '.', 'Oh', '!', 'Shoot', '!', 'Damn', 'it', '!', 'Where', 'is', 'it', '?', 'Oh', '!', 'Oh', '!', 'I', 'found', 'it', '!', 'I', 'found', 'it', '!', 'Hah', '!', 'I', 'found', 'it', '!', 'I', 'told', 'you', 'I', 'would', 'find', 'it', '!', 'In', 'your', 'face', '!', 'You', \"'re\", 'a', 'different', 'person', '.', 'Hello', '?', 'Yeah', '.', 'Phoebe', '?', 'Is', 'everything', 'okay', '?', 'What', '?', 'Why', '?', 'Oh', ',', 'honey', ',', 'I', \"'m\", 'sure', 'there', \"'s\", 'nothing', 'wrong', 'with', 'the', 'plane', '.', 'Alright', ',', 'look', ',', 'I', 'have', 'to', 'go', '.', 'I', 'love', 'you', ',', 'and', 'I', 'will', 'call', 'you', 'the', 'minute', 'I', 'get', 'to', 'Paris', '.', 'Oh', ',', 'that', 'was', 'just', 'my', 'crazy', 'friend', '.', 'She', 'told', 'me', 'I', 'should', 'get', 'off', 'the', 'plane', ',', 'because', 'she', 'had', 'a', 'feeling', 'that', 'there', 'was', 'something', 'wrong', 'with', 'the', 'left', 'Philange', '.', 'I', 'would', \"n't\", 'worry', 'about', 'it', '.', 'She', \"'s\", 'always', 'coming', 'up', 'with', 'stuff', 'like', 'this', ',', 'and', 'you', 'know', 'what', '?', 'She', \"'s\", 'almost', 'never', 'right', '.', 'Well', '...', 'Wait', ',', 'what', 'are', 'you', 'doing', '?', 'Could', 'I', 'get', 'some', 'peanuts', '?', 'This', 'is', 'ridiculous', '!', 'I', '...', 'Yeah', ',', 'okay', '.', 'Oh', 'my', 'God', '...', 'What', '..', 'What', 'are', 'you', 'guys', 'doing', 'here', '?', 'What', '?', 'What', '?', 'Ross', ',', 'you', \"'re\", 'scaring', 'me', '.', 'What', \"'s\", 'going', 'on', '?', 'Yeah', '?', 'What', '?', 'Oh', 'my', 'God', '.', 'I', '-', 'I', 'have', 'to', 'get', 'on', 'the', 'plane', '.', 'Yes', ',', 'I', 'do', '.', 'They', \"'re\", 'waiting', 'for', 'me', ',', 'Ross', '.', 'I', 'ca', \"n't\", 'do', 'this', 'right', 'now', ',', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'so', 'sorry', '.', 'Ross', ',', 'hi', '.', 'It', \"'s\", 'me', '.', 'I', 'just', 'got', 'back', 'on', 'the', 'plane', '.', 'And', 'I', 'just', 'feel', 'awful', '.', 'That', 'is', 'so', 'not', 'how', 'I', 'wanted', 'things', 'to', 'end', 'with', 'us', '.', 'It', \"'s\", 'just', 'that', 'I', 'was', \"n't\", 'expecting', 'to', 'see', 'you', ',', 'and', 'all', 'of', 'a', 'sudden', 'you', \"'re\", 'there', 'and', 'saying', 'these', 'things', '...', 'And', '...', 'And', 'now', 'I', \"'m\", 'just', 'sitting', 'here', 'and', 'thinking', 'of', 'all', 'the', 'stuff', 'I', 'should', 'have', 'said', ',', 'and', 'I', 'did', \"n't\", '.', 'I', 'mean', ',', 'I', 'did', \"n't\", 'even', 'get', 'to', 'tell', 'you', 'that', 'I', 'love', 'you', 'too', '.', 'Because', 'of', 'course', 'I', 'do', '.', 'I', 'love', 'you', '.', 'I', 'love', 'you', '.', 'I', 'love', 'you', '.', 'What', 'am', 'I', 'doing', '?', 'I', 'love', 'you', '!', 'Oh', ',', 'I', \"'ve\", 'got', 'ta', 'see', 'you', '.', 'I', \"'ve\", 'got', 'ta', 'get', 'off', 'this', 'plane', '.', 'Excuse', 'me', '?', 'I', \"'m\", 'sorry', '.', 'I', \"'m\", 'really', 'sorry', ',', 'but', 'I', 'need', 'to', 'get', 'off', 'the', 'plane', ',', 'okay', '?', 'I', 'need', 'to', 'tell', 'someone', 'that', 'I', 'love', 'love', 'them', '.', 'Oh', ',', 'please', ',', 'miss', ',', 'you', 'do', \"n't\", 'understand', '!', 'Oh', ',', 'come', 'on', ',', 'miss', ',', 'is', \"n't\", 'there', 'any', 'way', 'that', 'you', 'can', 'just', 'let', 'me', 'off', '...', 'I', 'got', 'off', 'the', 'plane', '.', 'I', 'do', 'love', 'you', '.', 'Okay', '.', \"'Cause\", 'this', 'is', 'where', 'I', 'wan', 'na', 'be', ',', 'okay', '?', 'No', 'more', 'messing', 'around', '.', 'I', 'do', \"n't\", 'wan', 'na', 'mess', 'this', 'up', 'again', '.', 'Okay', '.', 'You', 'and', 'me', ',', 'alright', '?', 'This', 'is', 'it', '.', 'I', 'know', '.', 'It', 'seems', 'smaller', 'somehow', '.']\n" ] } ] }, { "cell_type": "code", "source": [ "preprocessed_text = text_normalization(text)\n", "fdist = nltk.probability.FreqDist(preprocessed_text)\n", "# Frequency Distribution Plot\n", "fdist.plot(30,cumulative=False)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 495 }, "id": "PIwwb92HaO0j", "outputId": "50966186-cea6-4ba4-c748-d45fbfa67310" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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\n" }, "metadata": {} }, { "output_type": "execute_result", "data": { "text/plain": [ "" ] }, "metadata": {}, "execution_count": 36 } ] }, { "cell_type": "markdown", "source": [ "## Statistics" ], "metadata": { "id": "V6Mim2V7lx6M" } }, { "cell_type": "code", "source": [ "# Plotly imports\n", "import plotly.offline as py\n", "py.init_notebook_mode(connected=True)\n", "import plotly.graph_objs as go\n", "import plotly.tools as tls\n", "\n", "import codecs\n", "\n", "import pandas as pd\n", "from wordcloud import WordCloud, STOPWORDS\n", "\n", "from sklearn.feature_extraction.text import TfidfVectorizer, CountVectorizer\n", "from sklearn.decomposition import NMF, LatentDirichletAllocation" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 17 }, "id": "-WT1TFfzmYUt", "outputId": "2180e364-368b-4f04-f306-638bcf37ff66" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/html": [ " \n", " " ] }, "metadata": {} } ] }, { "cell_type": "markdown", "source": [ "Most frequent words in dataset, without stopwords\n", "\n" ], "metadata": { "id": "EZk7sSJkpa4J" } }, { "cell_type": "code", "source": [ "all_words = df['Texts'].str.split(expand=True).stack().value_counts()" ], "metadata": { "id": "8mQ-qjkdl2eM" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "sns.barplot(all_words[:20]);\n", "plt.xticks(rotation=45);\n", "plt.title(\"Word frequency\");\n", "plt.xlabel(\"Words\");\n", "plt.ylabel(\"Frequency\");" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 492 }, "id": "LmD_liX_ospn", "outputId": "bcfe9ea6-0c37-4277-f042-94202ab21dff" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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f9M2iIiIcrpXv7/f5qMa00RERESUVRiaiIiIiFRgaCIiIiJSgaGJiIiISIUMhaYrV64Yuh1ERERE2VqGQlPp0qXh5eWFFStWICEhwdBtIiIiIsp2MhSajh8/jsqVK2PQoEGwtbVFr169cOTIEUO3jYiIiCjbyFBocnFxwaxZsxATE4NFixbh9u3bqF27NipWrIjg4GDcv3/f0O0kIiIiylKZGghuZGSEli1bIiQkBJMnT8alS5cwZMgQ2NnZwd/fH7dv3zZUO4mIiIiyVKZC07Fjx/DNN9+gaNGiCA4OxpAhQ3D58mXs3LkTMTExaNasmaHaSURERJSljDLyoODgYCxevBjnz5+Hr68vli1bBl9fX+TK9TKDOTg4YMmSJShZsqQh20pERESUZTIUmn799Vd07doVnTt3RtGiRV9bxtraGgsXLsxU44iIiIiyiwyFposXL76zjLGxMQICAjJSPREREVG2k6ExTYsXL0ZISEia5SEhIVi6dGmmG0VERESU3WQoNE2aNAmFCxdOs9za2ho//vhjphtFRERElN1kKDRFR0fDwcEhzXJ7e3tER0dnulFERERE2U2GQpO1tTVOnz6dZvmpU6dQqFChTDeKiIiIKLvJUGhq3749+vXrh/DwcKSkpCAlJQW7d+9G//790a5dO0O3kYiIiCjLZejquQkTJuDatWuoX78+jIxeVqHVauHv788xTURERJQjZSg0GRsbY+3atZgwYQJOnTqFvHnzolKlSrC3tzd0+4iIiIiyhQyFJp2yZcuibNmyhmoLERERUbaVodCUkpKCJUuWICwsDPfu3YNWq9Vbv3v3boM0joiIiCi7yFBo6t+/P5YsWQI/Pz9UrFgRGo3G0O0iIiIiylYyFJrWrFmDdevWwdfX19DtISIiIsqWMjTlgLGxMUqXLm3othARERFlWxnqaRo8eDBmzZqF2bNn89RcDuYatMyg9UVN9TdofURERB9ShkLTgQMHEB4ejm3btqFChQrIkyeP3vqNGzcapHFERERE2UWGQpOVlRVatGhh6LYQERERZVsZCk2LFy82dDuIiIiIsrUMDQQHgBcvXmDXrl347bff8PTpUwBATEwM4uLiDNY4IiIiouwiQz1N169fR8OGDREdHY3ExER8+eWXMDc3x+TJk5GYmIh58+YZup1EREREWSpDPU39+/eHm5sbHj16hLx5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Nm7cmOmGOTg4wNbWFmFhYXBxcQHw8kq4w4cPo0+fPgAADw8PPH78GFFRUXB1dQUA7N69G1qtFu7u7kqZUaNGITk5GXny5AEA7Ny5E05OTihQoIBSJiwsDAMGDFC2v3PnTnh4eGR6P4iIiChnSFdoCggI0Lv/9ddfZ2rjcXFxuHTpknL/6tWrOHnyJAoWLIgSJUpgwIAB+OGHH1CmTBllyoFixYqhefPmAIBy5cqhYcOG6NGjB+bNm4fk5GQEBgaiXbt2KFasGACgQ4cO+P7779GtWzcMGzYMZ86cwaxZszBjxgxlu/3794enpyemT58OPz8/rFmzBseOHcP8+fMztX9ERESUc6QrNC1evNigGz927Bi8vLyU+4MGDQLwMpwtWbIEQ4cORXx8PHr27InHjx+jdu3aCA0NVeZoAoCVK1ciMDAQ9evXR65cudCqVSv8/PPPynpLS0vs2LEDffv2haurKwoXLowxY8Yo0w0AQM2aNbFq1SqMHj0aI0eORJkyZbBp0ybO0URERESKDE1uaSj16tV762ByjUaD8ePHY/z48W8sU7BgQWUiyzepXLky9u/f/9Yybdq0QZs2bd7eYCIiIvpkZerqOSIiIqJPBUMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREalglNUNIMoJXIOWGayuqKn+BquLiIgMhz1NRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqGGV1A4jo3VyDlhm0vqip/gatj4joU8CeJiIiIiIVGJqIiIiIVGBoIiIiIlKBoYmIiIhIBYYmIiIiIhUYmoiIiIhUyNahady4cdBoNHo3Z2dnZX1CQgL69u2LQoUKIX/+/GjVqhXu3r2rV0d0dDT8/PyQL18+WFtbIygoCC9evNArs2fPHlSrVg0mJiYoXbo0lixZ8iF2j4iIiD4i2X6epgoVKmDXrl3KfSOj/2vywIEDsWXLFoSEhMDS0hKBgYFo2bIlDh48CABISUmBn58fbG1tERERgdu3b8Pf3x958uTBjz/+CAC4evUq/Pz80Lt3b6xcuRJhYWHo3r07ihYtCh8fnw+7s0RZiHNBERG9XbYPTUZGRrC1tU2z/MmTJ1i4cCFWrVqFL774AgCwePFilCtXDocOHUKNGjWwY8cO/O9//8OuXbtgY2MDFxcXTJgwAcOGDcO4ceNgbGyMefPmwcHBAdOnTwcAlCtXDgcOHMCMGTMYmoiIiEiRrU/PAcDFixdRrFgxlCpVCh07dkR0dDQAICoqCsnJyfD29lbKOjs7o0SJEoiMjAQAREZGolKlSrCxsVHK+Pj4IDY2FmfPnlXKpK5DV0ZXx5skJiYiNjZW70ZEREQ5V7YOTe7u7liyZAlCQ0Px66+/4urVq6hTpw6ePn2KO3fuwNjYGFZWVnqPsbGxwZ07dwAAd+7c0QtMuvW6dW8rExsbi+fPn7+xbZMmTYKlpaVys7Ozy+zuEhERUTaWrU/PNWrUSPm7cuXKcHd3h729PdatW4e8efNmYcuAESNGYNCgQcr92NhYBiciIqIcLFv3NL3KysoKZcuWxaVLl2Bra4ukpCQ8fvxYr8zdu3eVMVC2trZprqbT3X9XGQsLi7cGMxMTE1hYWOjdiIiIKOfK1j1Nr4qLi8Ply5fRqVMnuLq6Ik+ePAgLC0OrVq0AAOfPn0d0dDQ8PDwAAB4eHpg4cSLu3bsHa2trAMDOnTthYWGB8uXLK2W2bt2qt52dO3cqdRCR4XyIK/R4FSARvS/ZuqdpyJAh2Lt3L65du4aIiAi0aNECuXPnRvv27WFpaYlu3bph0KBBCA8PR1RUFLp06QIPDw/UqFEDANCgQQOUL18enTp1wqlTp7B9+3aMHj0affv2hYmJCQCgd+/euHLlCoYOHYp///0Xc+fOxbp16zBw4MCs3HUiIiLKZrJ1T9PNmzfRvn17PHjwAEWKFEHt2rVx6NAhFClSBAAwY8YM5MqVC61atUJiYiJ8fHwwd+5c5fG5c+fG33//jT59+sDDwwNmZmYICAjA+PHjlTIODg7YsmULBg4ciFmzZqF48eJYsGABpxsgIiIiPdk6NK1Zs+at601NTTFnzhzMmTPnjWXs7e3TnH57Vb169XDixIkMtZGIiIg+Ddk6NBERZUeGHDfFMVNEH49sPaaJiIiIKLtgTxMRUTbDKwCJsif2NBERERGpwNBEREREpAJPzxERfYJ4CpAo/djTRERERKQCQxMRERGRCjw9R0RE7wVPAVJOw54mIiIiIhUYmoiIiIhUYGgiIiIiUoFjmoiI6KPFcVP0IbGniYiIiEgFhiYiIiIiFXh6joiI6C0MeQrwdaf/eIrx48GeJiIiIiIV2NNERESUw32I3qycso23YU8TERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0ERERESkAkMTERERkQoMTUREREQqMDQRERERqcDQRERERKQCQxMRERGRCgxNRERERCowNBERERGpwNBEREREpAJDExEREZEKDE1EREREKjA0EREREanA0PSKOXPmoGTJkjA1NYW7uzuOHDmS1U0iIiKibIChKZW1a9di0KBBGDt2LI4fP44qVarAx8cH9+7dy+qmERERURZjaEolODgYPXr0QJcuXVC+fHnMmzcP+fLlw6JFi7K6aURERJTFGJr+v6SkJERFRcHb21tZlitXLnh7eyMyMjILW0ZERETZgVFWNyC7+O+//5CSkgIbGxu95TY2Nvj333/TlE9MTERiYqJy/8mTJwCA2NhYAEBK4nODtU1XZ2qGrJ/byF7byAn7wG1kn/q5jey1jZywDzltG7rtiMi7HyAkIiK3bt0SABIR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\n" }, "metadata": {} } ] }, { "cell_type": "markdown", "source": [ "Creat wordcloud with Rachel's word" ], "metadata": { "id": "aiXQzDfJtjBh" } }, { "cell_type": "code", "source": [ "rachel = df[df.Characters==\"RACHEL\"][\"Texts\"].values\n", "rachel[:2]" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "q6AL_wH-oWb-", "outputId": "7d0a38bf-c0f9-409e-bedc-d1cb6b53be39" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "array([\"Oh God Monica hi! I just went to your building and you weren't there and then this guy with a big hammer said you might be here and you are, you are!\",\n", " 'Hi, sure!'], dtype=object)" ] }, "metadata": {}, "execution_count": 161 } ] }, { "cell_type": "code", "source": [ "img1 = plt.imread(\"/content/style_transfer_sirius2021summer/data/bigram_pics/rachel.jpg\")\n", "hcmask_rachel = img1" ], "metadata": { "id": "Dv7T19b_qXSW" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "plt.figure(figsize=(16,13));\n", "wc = WordCloud(background_color=\"black\", max_words=199,\n", " mask=hcmask_rachel, stopwords=stop, max_font_size=40);\n", "wc.generate(\" \".join(rachel));\n", "plt.title(\"Rachel\", fontsize=20);\n", "plt.imshow(wc.recolor( colormap= 'Pastel2' , random_state=17), alpha=0.98);\n", "plt.axis('off');" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 818 }, "id": "zzzOEG_XqX9H", "outputId": "8b166b6f-d5aa-496a-a5a7-07db611a3435" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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dscdd/DOO+/w+uuv8/bbb/PBBx8wc+bMtuvPPPMMXq8Xi8XChg0bGDBgQKf91NTUnPAesbGxAJSWlp7bwZ+BmJgYSkpKcLvd7YKeiIh88ajIgIhIF/fb3/4Wi8UCwP3339/u2uHDhwEYPnz4CcMNfLzHpTOjRo0CoKCggPz8/M863LMycuRIoHWcbrf7ooxBREQuDQo4IiJdXL9+/bj++usB2LFjB6tXr2679tG+m+bm5hO+v7S0tK1KWWcWL17c9ve//vWvn3W4Z+WKK64AoL6+nqeffvqijEFERC4NCjgiIl8A999/f1t1sYceeqjt9b59+wKQlZXF1q1bO7yvpaWFm2+++aQb8mfNmtVWwvmRRx7h5ZdfPmHb6urq87K5/4477iA5ORmA73//+2zcuPGk7Tdv3syGDRvO+ThEROTiU8AREfkCGDJkSNssx8aNG9sOy7ztttuA1vLPCxcu5Le//S0bN25k586d/Otf/2LEiBGsX7+eyZMnn7T/5557jtDQUPx+PzfddBPXXHMNr776Knv27GHnzp28+OKL3HnnnfTs2ZPy8vJz/nx2u51XXnkFu91OU1MTM2fO5NZbb+W1115jz5497Nq1i7fffpsHH3yQYcOGMXXqVA4dOnTOxyEiIhefigyIiHxB/PSnP22rovbrX/+alStXMnbsWH75y1/y4IMPUldXx09/+tMO7/ve977HkCFD2LJlywn7HjhwIOvXr2fJkiUUFhbyxhtv8MYbb5y3Z+nMhAkTWL9+Pddffz2FhYW88MILvPDCCydsHx4efgFHJyIiF4pmcEREviDGjh3L7NmzAVi1ahW7du0C4Oc//znvvfcec+bMISoqioCAAJKSkrj66qtZtWoVf/rTn06r/9GjR3Ps2DH+8Y9/MHPmTOLj47FarYSGhjJ06FDuu+8+1q5dS2pq6vl6RCZMmEBWVhb//ve/WbhwIYmJiQQEBBAYGEhycjJz5szhN7/5DRkZGdx+++3nbRwiInLxmIxL8UADERERERGRs6AZHBERERER6TIUcEREREREpMtQwBERERERkS5DAUdERERERLoMBRwREREREekyFHBERERERKTLUMAREREREZEuw3q6De12+/kch4iIiIiIyEm5XK5TttEMjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJlKOCIiIiIiEiXoYAjIiIiIiJdhgKOiIiIiIh0GQo4IiIiIiLSZSjgiIiIiIhIl6GAIyIiIiIiXYYCjoiIiIiIdBkKOCIiIiIi0mUo4IiIiIiISJehgCMiIiIiIl2GAo6IiIiIiHQZCjgiIiIiItJl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\n" }, "metadata": {} } ] }, { "cell_type": "markdown", "source": [ "Preprocess every text in dataset" ], "metadata": { "id": "paNYn6WN7MkL" } }, { "cell_type": "code", "source": [ "def text_normalization_v2(text):\n", " text = str(text).lower() # convert to all lower letters\n", " spl_char_text = re.sub(r'[^a-z]', ' ', text) # remove any special characters including numbers\n", " tokens = nltk.word_tokenize(spl_char_text) # tokenize words\n", " lema = wordnet.WordNetLemmatizer() # lemmatizer initiation\n", " tags_list = pos_tag(tokens, tagset = None) # parts of speech\n", " lema_words = []\n", " for token, pos_token in tags_list:\n", " if pos_token.startswith('V'): # if the tag from tag_list is a verb, assign 'v' to it's pos_val\n", " pos_val = 'v'\n", " elif pos_token.startswith('J'): # adjective\n", " pos_val = 'a'\n", " elif pos_token.startswith('R'): # adverb\n", " pos_val = 'r'\n", " else: # otherwise it must be a noun\n", " pos_val = 'n'\n", " lema_token = lema.lemmatize(token, pos_val) # performing lemmatization\n", " lema_words.append(lema_token) # addid the lemmatized words into our list\n", "\n", " lema_words = [word for word in lema_words if word not in stop]\n", "\n", " return \" \".join(lema_words) # return our list as a human sentence\n", " # return lema_words" ], "metadata": { "id": "DYQOYdHsIR_I" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "df_text = df['Texts'].apply(text_normalization_v2)" ], "metadata": { "id": "Ii9MTUW5yaLA" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Implement TF-IDF" ], "metadata": { "id": "NnfVq2uo7KMh" } }, { "cell_type": "code", "source": [ "tfidf = TfidfVectorizer(max_df=0.95, min_df=2, decode_error=\"ignore\")\n", "x_tfidf = tfidf.fit_transform(df_text)\n", "feature_names = tfidf.get_feature_names_out()" ], "metadata": { "id": "8RMbqtCYyaZw" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "count_vec = np.asarray(x_tfidf.sum(axis=0)).ravel()\n", "zipped = list(zip(feature_names, count_vec))" ], "metadata": { "id": "43f3DrnD74RM" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "# Extract top 15 and bottom 15 words\n", "top_words = list(zip(*sorted(zipped, key=lambda x: x[1], reverse=True)[:15]))\n", "bottom_words = list(zip(*sorted(zipped, key=lambda x: x[1])[:15]))\n", "\n", "# Plotting\n", "fig, axes = plt.subplots(1, 2, figsize=(12, 6))\n", "\n", "# Top words\n", "axes[0].barh(range(len(top_words[0])), top_words[1], align='center', color='skyblue')\n", "axes[0].set_yticks(range(len(top_words[0])))\n", "axes[0].set_yticklabels(top_words[0])\n", "axes[0].invert_yaxis() # Invert y-axis to have the most frequent words at the top\n", "axes[0].set_xlabel('Frequency')\n", "axes[0].set_title('Top 15 Words')\n", "\n", "# Bottom words\n", "axes[1].barh(range(len(bottom_words[0])), bottom_words[1], align='center', color='salmon')\n", "axes[1].set_yticks(range(len(bottom_words[0])))\n", "axes[1].set_yticklabels(bottom_words[0])\n", "axes[1].invert_yaxis() # Invert y-axis to have the least frequent words at the top\n", "axes[1].set_xlabel('Frequency')\n", "axes[1].set_title('Bottom 15 Words')" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 379 }, "id": "x8usd9K89PGW", "outputId": "d512d10c-0839-4c80-9960-6d6fb670d964" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "Text(0.5, 1.0, 'Bottom 15 Words')" ] }, "metadata": {}, "execution_count": 185 }, { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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ePGivLy8FBkZqeeff/6WMWSX7y+EDpabg33eXzTwCLMdO9PoEICHTm5y/T0/Y96/f3/VrVtXv/32m8qWLauIiAj17t1bJpNJsbGxiomJsZohT09P17Vr13T16lU5OTlp8+bNCgsL088//6ykpCTduHHD6rgkOTk5WYpySSpdurTOnz+fbUz29vaytychAwDwIBw/flzvvPOOdu3apQsXLlhmyhMSElSjRg0VL15cTz31lJYtW6YmTZro9OnT2rlzpxYuXChJiouLU+HChVW/fn1Ln56enqpSpYri4uKyHZd8DwAoKO7559KCgoJUs2ZNLVmyRPv27dORI0fUu3dvSVJycrLGjx+vgwcPWrbDhw/r+PHjcnBw0JkzZ9SuXTsFBARo5cqV2rdvn95//31J0vXr1y1j2NraWo1pMplYCRYAgHyiffv2+vvvv7Vo0SLt2rVLu3btkmSdy7t3764vv/xSaWlpWr58ufz9/eXv729UyAAA5Ct5sip7v379NGfOHP3222964oknLM941apVS/Hx8fLx8bnlefv27VNGRoZmzpwpG5ub3xF88cUXeRESAAB4AC5evKj4+HgtWrTIcpt6dHR0lnYdOnTQgAEDtH79ei1fvlw9e/a0HPPz89ONGze0a9cuq1vZ4+PjVa1atQdzIQAAGChPCvNu3bppxIgRWrRokZYsWWLZ/84776hdu3YqV66cnnvuOdnY2Cg2NlY//fSTJk2aJB8fH6Wlpem9995T+/btFRMTow8//DAvQgIAAA9AkSJF5OnpqY8++kilS5dWQkKCQkNDs7RzdnZWx44dNWbMGMXFxalr166WY76+vurQoYP69++vhQsXytXVVaGhoSpbtqw6dOjwIC8HAABD3POt7NLN3zJ99tln5eLiYvnpFElq2bKlvv32W23cuFF169ZVgwYNNHv2bJUvX16SVLNmTc2aNUvTpk1TjRo1tGzZMoWFheVFSAAA4AGwsbHRZ599pn379qlGjRp67bXX9O67796ybffu3RUbG6smTZqoXLlyVsfCw8NVu3ZttWvXTg0bNpTZbNa6deuyPM4GAEBBdM+rsmdq0aKFqlevrnnz5uVFd3kqczU8VmUHgPuHVdlz52Fflb1r164qVKiQPv30U6NDsch8T1mVHch7rMoO5F5ucv09z5hfunRJX331laKiojR48OB77Q4AAORj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qXTp0lYz77dCvgcAFBT5pjB/8skn9dtvv2nDhg1W+5OTkzVw4EAdPHjQssXGxur48eOqVKnSLfuyt7eXm5ub1QYAAG7tzJkzateunQICArRy5Urt27dP77//viTp+vXrlnaOjo5WhX5esrW1tXptMpmUkZFx23PI9wCAgiLf3Mr+9NNPq3379urWrZsKFSqkF154QZJUq1YtHT16VD4+PgZHCADAw2XXrl1Wr3/88Uf5+vqqUKFCVvv37dunjIwMzZw507LK+hdffHHH/qtUqaIbN27owIEDql27tiTpxIkTunTpkqWNn5+fzp49q7Nnz1pmzY8eParLly+rWrVq93R9AAAUFPlmxlySOnXqpKVLl+qll17Sl19+KUkaNWqUduzYoSFDhujgwYM6fvy4vv7669su/gYAAG6uhj58+HDFx8drxYoVeu+99/Tqq69maefj46O0tDS99957OnXqlJYuXaoPP/zwjv1XrVpVTzzxhAYMGKDdu3frwIEDGjBggNXM+hNPPCF/f391795d+/fv1+7du9WzZ081bdrU8lw6AACPunxVmEvSc889p8jISPXo0UOrVq1SQECAtm3bpmPHjqlJkyYKCgrSO++8ozJlyhgdKgAA+VrPnj31v//9T/Xq1dPgwYP16quvasCAAVna1axZU7NmzdK0adNUo0YNLVu2TGFhYTkaY8mSJSpZsqQef/xxderUSf3795erq6tlcVaTyaSvv/5aRYoU0eOPP64nnnhCFStW1Oeff56n1woAwMPMZM7uB00LkKSkJLm7u2vsD6fk4OJ65xPwyAgNKmZ0CAAeUZm5KTExsUA9G/3rr7/Ky8vLspjcg5T5nl4IHSw3B/sHOjYAIP+xHTvT0PFzk+vzzTPmAADg4fP9998rOTlZ/v7+OnfunEaOHClvb289/vjjRocGAMBDg8IcAADctbS0NL355ps6deqUXF1dFRwcrGXLlmVZZR0AAGSPwhwAANy1li1bqmXLlkaHAQDAQy3fLf4GAAAAAMCj5JGaMR9e07NALbADAACysh09RbbkewDAQ4QZcwAAAAAADERhDgAAAACAgSjMAQAAAAAwEIU5AAAAAAAGojAHAAAAAMBAj9Sq7LNiL8rB5brRYcAgoUHFjA4BAPAApIW9qTQHe6PDAAA8hGzHzjRkXGbMAQAAAAAwEIU5AAAAAAAGojAHAAAAAMBAFOYAAAAAABiIwhwAAAAAAAPl+8LcZDJp9erVRocBAADykLe3t+bMmWN0GAAA5AuP1M+lAQCA/GHPnj1ydnY2OgwAAPIFCnMAAAqg69evy87OzugwslW8eHGjQwAAIN8w/Fb2W93KFhgYqHHjxlleX7hwQZ06dZKTk5N8fX21Zs2aBxskAAD5XEhIiIYMGaJhw4apWLFiatmypbZt26Z69erJ3t5epUuXVmhoqG7cuGF1ziuvvKJhw4apSJEiKlmypBYtWqSUlBS99NJLcnV1lY+Pj7777jvLOenp6erbt68qVKggR0dHValSRXPnzrWKpXfv3urYsaNmzJih0qVLy9PTU4MHD1ZaWpqlzb/z/6xZs+Tv7y9nZ2d5eXlp0KBBSk5Ovn9vGAAA+YjhhXlOjB8/Xp07d9ahQ4fUpk0bde/eXX///Xe27VNTU5WUlGS1AQBQ0EVGRsrOzk4xMTEaN26c2rRpo7p16yo29v+1d+dBUdzpG8Cf4b4vB7kEPCDoKl648sNE8WA9Y3SNStQiYlgTr2wsjxgSIzGmojGaWDHGuK6Ca1myul57uB5B8KCMJ6gcITLBVVMeCYYrKoe8vz8sOrZ4AQM9DM+naqqY7u80bz81M99+5+pzWLt2LTZs2ICPPvqo1m30ej1OnjyJN998E9OnT8e4cePQp08fnD17FoMHD0ZMTAxu374NAKiurkabNm2wfft25OTkYNGiRXj33Xexbds21XZTU1NhMBiQmpqKTZs2ISkpCUlJSY+t3cLCAl988QWys7OxadMmHDp0CG+//fYT95fzPRERmYtm0ZjHxsZiwoQJCAoKwscff4yysjKcPHnyseOXLl0KV1dX5eLv79+E1RIREWkjODgYy5cvR0hICA4cOAB/f398+eWX6NixI0aPHo3Fixdj5cqVqK6uVm7TrVs3LFy4EMHBwYiPj4ednR30ej2mTp2K4OBgLFq0CIWFhTh//jwAwNraGosXL0avXr3Qrl07TJo0CVOmTKnVmLu7uyv/+8UXX8SIESOQkpLy2Npnz56NAQMGoG3bthg4cCA++uijWtt8GOd7IiIyF82iMe/atavyt6OjI1xcXHDz5s3Hjo+Pj0dxcbFyuXLlSlOUSUREpKmwsDDl79zcXERERECn0ynLnn/+eZSVleHq1avKsgfnWEtLS7Rq1QqhoaHKMi8vLwBQzbtr1qxBWFgYPD094eTkhL/85S+4fPmyqpbOnTvD0tJSue7j4/PEufubb77BoEGD4OfnB2dnZ8TExKCwsFB5p/5RON8TEZG50Lwxt7CwgIiolj34HTTg/qvzD9LpdKpX+x9ma2sLFxcX1YWIiMjc1edXzh81xz64rKaxr5l3k5OTMW/ePMTFxeHAgQPIzMzElClTUFFR8dTtPm7uvnTpEl588UV07doVO3bswJkzZ7BmzRoAqLXdB3G+JyIic6H5r7J7enri2rVryvWSkhIUFBRoWBEREVHz16lTJ+zYsQMiojTX6enpcHZ2Rps2beq93fT0dPTp0wczZsxQlhkMhgbVeubMGVRXV2PlypWwsLj/nsHTPsZORERkTjR/x3zgwIHYvHkzjh49igsXLmDy5Mmqj74RERFR3c2YMQNXrlzBm2++ie+++w579uxBQkIC5syZozS/9REcHIzTp09j//79+P777/H+++/j1KlTDao1KCgIlZWVWL16NX744Qds3rwZX3/9dYO2SURE1Jxo3pjHx8cjMjJS+WGY0aNHo0OHDlqXRURE1Kz5+flh7969OHnyJLp164Zp06YhLi4OCxcubNB233jjDYwZMwbR0dEIDw9HYWGh6t3z+ujWrRs+++wzfPLJJ+jSpQu2bNmCpUuXNmibREREzYlOHv6CtxkqKSmBq6srEo78ADsnZ63LIY2800OvdQlERIqauam4uJjfjTaSmkx/fmcmXOxstS6HiIiaIeuElUbbVl3mes3fMSciIiIiIiJqydiYExEREREREWmIjTkRERERERGRhtiYExEREREREWmIjTkRERERERGRhqy0LqApzenWir98S0REZOas4z+GNed7IiJqRviOOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGG2JgTERERERERaYiNOREREREREZGGrLQuoCmICACgpKRE40qIiIjuq5mTauYoajjO90REZErqMte3iMa8sLAQAODv769xJURERGqlpaVwdXXVugyzwPmeiIhM0bPM9S2iMffw8AAAXL58mQc/RlBSUgJ/f39cuXIFLi4uWpfT7DFP42KexsU8jevBPJ2dnVFaWgpfX1+tyzIbnO8bjo/5hmOGDccMjYM5NlxDMxSRZ57rW0RjbmFx/6v0rq6uvFMakYuLC/M0IuZpXMzTuJincdXkyebRuDjfGw8f8w3HDBuOGRoHc2y4hmT4rHM9f/yNiIiIiIiISENszImIiIiIiIg01CIac1tbWyQkJMDW1lbrUswC8zQu5mlczNO4mKdxMc/GxXwbjhk2HDNsOGZoHMyx4ZoyQ53wPC1EREREREREmmkR75gTERERERERmSo25kREREREREQaYmNOREREREREpCE25kREREREREQaahGN+Zo1a9C2bVvY2dkhPDwcJ0+e1Lokk/PBBx9Ap9OpLh07dlTW3717FzNnzkSrVq3g5OSEl19+GTdu3FBt4/LlyxgxYgQcHBzQunVrzJ8/H1VVVU29K5o4cuQIRo4cCV9fX+h0OuzevVu1XkSwaNEi+Pj4wN7eHlFRUbh48aJqzK1btzBp0iS4uLjAzc0NcXFxKCsrU405f/48+vbtCzs7O/j7+2P58uWNvWuaeFqesbGxte6vQ4cOVY1hnr9ZunQpfv/738PZ2RmtW7fG6NGjkZeXpxpjrMd4WloaevbsCVtbWwQFBSEpKamxd6/JPUue/fv3r3UfnTZtmmoM86yfus7p27dvR8eOHWFnZ4fQ0FDs3bu3iSo1XXXJMDs7Gy+//DLatm0LnU6HVatWNV2hJqwuGa5fvx59+/aFu7s73N3dERUVxWNR1C3DnTt3olevXnBzc4OjoyO6d++OzZs3N2G1pqm+PU5ycjJ0Oh1Gjx7duAU2E3XJMSkpqdb8bmdnZ5xCxMwlJyeLjY2NbNy4UbKzs2Xq1Kni5uYmN27c0Lo0k5KQkCCdO3eWa9euKZeffvpJWT9t2jTx9/eXlJQUOX36tPzf//2f9OnTR1lfVVUlXbp0kaioKMnIyJC9e/eKXq+X+Ph4LXanye3du1fee+892blzpwCQXbt2qdYvW7ZMXF1dZffu3XLu3Dl56aWXpF27dnLnzh1lzNChQ6Vbt27y7bffytGjRyUoKEgmTJigrC8uLhYvLy+ZNGmSZGVlydatW8Xe3l7WrVvXVLvZZJ6W5+TJk2Xo0KGq++utW7dUY5jnb4YMGSKJiYmSlZUlmZmZMnz4cAkICJCysjJljDEe4z/88IM4ODjInDlzJCcnR1avXi2Wlpayb9++Jt3fxvYseUZGRsrUqVNV99Hi4mJlPfOsn7rO6enp6WJpaSnLly+XnJwcWbhwoVhbW8uFCxeauHLTUdcMT548KfPmzZOtW7eKt7e3fP75501bsAmqa4YTJ06UNWvWSEZGhuTm5kpsbKy4urrK1atXm7hy01HXDFNTU2Xnzp2Sk5Mj+fn5smrVKj4f1rPHKSgoED8/P+nbt6+MGjWqaYo1YXXNMTExUVxcXFTz+/Xr141Si9k35r1795aZM2cq1+/duye+vr6ydOlSDasyPQkJCdKtW7dHrisqKhJra2vZvn27siw3N1cAyPHjx0XkfiNlYWGhumOuXbtWXFxcpLy8vFFrNzUPN5LV1dXi7e0tn376qbKsqKhIbG1tZevWrSIikpOTIwDk1KlTypj//ve/otPp5McffxQRka+++krc3d1VeS5YsEBCQkIaeY+09bjG/EmTCfN8sps3bwoAOXz4sIgY7zH+9ttvS+fOnVX/Kzo6WoYMGdLYu6Sph/MUud+Yv/XWW4+9DfOsn7rO6ePHj5cRI0aoloWHh8sbb7zRqHWasoYcFwUGBrIxl4YfW1ZVVYmzs7Ns2rSpsUo0ecY4Pu/Ro4csXLiwMcprFuqTYVVVlfTp00f++te/PvVYqqWoa46JiYni6uraKLWY9UfZKyoqcObMGURFRSnLLCwsEBUVhePHj2tYmWm6ePEifH190b59e0yaNAmXL18GAJw5cwaVlZWqHDt27IiAgAAlx+PHjyM0NBReXl7KmCFDhqCkpATZ2dlNuyMmpqCgANevX1fl5+rqivDwcFV+bm5u6NWrlzImKioKFhYWOHHihDKmX79+sLGxUcYMGTIEeXl5+OWXX5pob0xHWloaWrdujZCQEEyfPh2FhYXKOub5ZMXFxQAADw8PAMZ7jB8/fly1jZox5v58+3CeNbZs2QK9Xo8uXbogPj4et2/fVtYxz7qrz5zODNV4XNRwxsjw9u3bqKysrPWc0VI0NEMRQUpKCvLy8tCvX7/GLNVk1TfDDz/8EK1bt0ZcXFxTlGny6ptjWVkZAgMD4e/vj1GjRhmt17EyylZM1M8//4x79+6pDnwAwMvLC999951GVZmm8PBwJCUlISQkBNeuXcPixYvRt29fZGVl4fr167CxsYGbm5vqNl5eXrh+/ToA4Pr164/MuWZdS1az/4/K58H8WrdurVpvZWUFDw8P1Zh27drV2kbNOnd390ap3xQNHToUY8aMQbt27WAwGPDuu+9i2LBhOH78OCwtLZnnE1RXV2P27Nl4/vnn0aVLFwAw2mP8cWNKSkpw584d2NvbN8YuaepReQLAxIkTERgYCF9fX5w/fx4LFixAXl4edu7cCYB51kd95vTHZdhS5yUeFzWcMTJcsGABfH19a71o1FLUN8Pi4mL4+fmhvLwclpaW+Oqrr/CHP/yhscs1SfXJ8NixY9iwYQMyMzOboMLmoT45hoSEYOPGjejatSuKi4uxYsUK9OnTB9nZ2WjTpk2D6jHrxpye3bBhw5S/u3btivDwcAQGBmLbtm0t7uCPTN8rr7yi/B0aGoquXbuiQ4cOSEtLw6BBgzSszPTNnDkTWVlZOHbsmNalmIXH5fn6668rf4eGhsLHxweDBg2CwWBAhw4dmrpMIjIRy5YtQ3JyMtLS0oz3g1EthLOzMzIzM1FWVoaUlBTMmTMH7du3R//+/bUuzeSVlpYiJiYG69evh16v17qcZi0iIgIRERHK9T59+qBTp05Yt24dlixZ0qBtm/VH2fV6PSwtLWv9svCNGzfg7e2tUVXNg5ubG5577jnk5+fD29sbFRUVKCoqUo15MEdvb+9H5lyzriWr2f8n3Q+9vb1x8+ZN1fqqqircunWLGT+D9u3bQ6/XIz8/HwDzfJxZs2bh3//+N1JTU1Wv6hrrMf64MS4uLmb5At/j8nyU8PBwAFDdR5ln3dRnTn9chub6GH8aHhc1XEMyXLFiBZYtW4YDBw6ga9eujVmmSatvhhYWFggKCkL37t0xd+5cjB07FkuXLm3sck1SXTM0GAy4dOkSRo4cCSsrK1hZWeFvf/sb/vnPf8LKygoGg6GpSjcpxnhOtLa2Ro8ePZT5vSHMujG3sbFBWFgYUlJSlGXV1dVISUlRvdJBtZWVlcFgMMDHxwdhYWGwtrZW5ZiXl4fLly8rOUZERODChQuqZujgwYNwcXHB7373uyav35S0a9cO3t7eqvxKSkpw4sQJVX5FRUU4c+aMMubQoUOorq5WDugjIiJw5MgRVFZWKmMOHjyIkJAQs/3Y9bO6evUqCgsL4ePjA4B5PkxEMGvWLOzatQuHDh2q9RF+Yz3GIyIiVNuoGWNuz7dPy/NRaj46+OB9lHnWTX3mdGaoxuOihqtvhsuXL8eSJUuwb98+1e+ftETGuh9WV1ejvLy8MUo0eXXNsGPHjrhw4QIyMzOVy0svvYQBAwYgMzMT/v7+TVm+yTDGffHevXu4cOGCMr83SKP8pJwJSU5OFltbW0lKSpKcnBx5/fXXxc3NzWg/a28u5s6dK2lpaVJQUCDp6ekSFRUler1ebt68KSL3T6UUEBAghw4dktOnT0tERIREREQot6859c/gwYMlMzNT9u3bJ56eni3mdGmlpaWSkZEhGRkZAkA+++wzycjIkP/9738icv90aW5ubrJnzx45f/68jBo16pGnS+vRo4ecOHFCjh07JsHBwarTexUVFYmXl5fExMRIVlaWJCcni4ODg1me3utJeZaWlsq8efPk+PHjUlBQIN9884307NlTgoOD5e7du8o2mOdvpk+fLq6urpKWlqY6vcft27eVMcZ4jNec3mv+/PmSm5sra9asMcvT2Twtz/z8fPnwww/l9OnTUlBQIHv27JH27dtLv379lG0wz/p52pweExMj77zzjjI+PT1drKysZMWKFZKbmysJCQk8XVodMywvL1eej318fGTevHmSkZEhFy9e1GoXNFfXDJctWyY2Njbyj3/8Q/WcUVpaqtUuaK6uGX788cdy4MABMRgMkpOTIytWrBArKytZv369Vrugubpm+DD+Kvt9dc1x8eLFsn//fjEYDHLmzBl55ZVXxM7OTrKzsxtci9k35iIiq1evloCAALGxsZHevXvLt99+q3VJJic6Olp8fHzExsZG/Pz8JDo6WvLz85X1d+7ckRkzZoi7u7s4ODjIH//4R7l27ZpqG5cuXZJhw4aJvb296PV6mTt3rlRWVjb1rmgiNTVVANS6TJ48WUTunzLt/fffFy8vL7G1tZVBgwZJXl6eahuFhYUyYcIEcXJyEhcXF5kyZUqtSfvcuXPywgsviK2trfj5+cmyZcuaaheb1JPyvH37tgwePFg8PT3F2tpaAgMDZerUqbVebGOev3lUlgAkMTFRGWOsx3hqaqp0795dbGxspH379qr/YS6elufly5elX79+4uHhIba2thIUFCTz589XncdchHnW15Pm9MjISOV5t8a2bdvkueeeExsbG+ncubP85z//aeKKTU9dMiwoKHjk/T0yMrLpCzchdckwMDDwkRkmJCQ0feEmpC4ZvvfeexIUFCR2dnbi7u4uERERkpycrEHVpqWuz4cPYmP+m7rkOHv2bGWsl5eXDB8+XM6ePWuUOnQiIg1/352IiIiIiIiI6sOsv2NOREREREREZOrYmBMRERERERFpiI05ERERERERkYbYmBMRERERERFpiI05ERERERERkYbYmBMRERERERFpiI05ERERERERkYbYmBMRERERERFpiI05ERERERERkYbYmBM1E7GxsdDpdLUu+fn5WpdGRERERsC5nqjlstK6ACJ6dkOHDkViYqJqmaenp+p6RUUFbGxsmrIsIiIiMhLO9UQtE98xJ2pGbG1t4e3trboMGjQIs2bNwuzZs6HX6zFkyBAAQFZWFoYNGwYnJyd4eXkhJiYGP//8s7KtX3/9Fa+++iqcnJzg4+ODlStXon///pg9e7YyRqfTYffu3aoa3NzckJSUpFy/cuUKxo8fDzc3N3h4eGDUqFG4dOmSsj42NhajR4/GihUr4OPjg1atWmHmzJmorKxUxpSXl2PBggXw9/eHra0tgoKCsGHDBogIgoKCsGLFClUNmZmZfAeBiIjMEuf6+zjXU0vDxpzIDGzatAk2NjZIT0/H119/jaKiIgwcOBA9evTA6dOnsW/fPty4cQPjx49XbjN//nwcPnwYe/bswYEDB5CWloazZ8/W6f9WVlZiyJAhcHZ2xtGjR5Geng4nJycMHToUFRUVyrjU1FQYDAakpqZi06ZNSEpKUk34r776KrZu3YovvvgCubm5WLduHZycnKDT6fDaa6/VeucgMTER/fr1Q1BQUP0CIyIiamY41xOZOSGiZmHy5MliaWkpjo6OymXs2LESGRkpPXr0UI1dsmSJDB48WLXsypUrAkDy8vKktLRUbGxsZNu2bcr6wsJCsbe3l7feektZBkB27dql2o6rq6skJiaKiMjmzZslJCREqqurlfXl5eVib28v+/fvV+oODAyUqqoqZcy4ceMkOjpaRETy8vIEgBw8ePCR+/3jjz+KpaWlnDhxQkREKioqRK/XS1JS0jOkRkRE1HxwrudcTy0Xv2NO1IwMGDAAa9euVa47OjpiwoQJCAsLU407d+4cUlNT4eTkVGsbBoMBd+7cQUVFBcLDw5XlHh4eCAkJqVM9586dQ35+PpydnVXL7969C4PBoFzv3LkzLC0tles+Pj64cOECgPsfVbO0tERkZOQj/4evry9GjBiBjRs3onfv3vjXv/6F8vJyjBs3rk61EhERNQec6znXU8vExpyoGXF0dHzkR7ocHR1V18vKyjBy5Eh88skntcb6+Pg88/e1dDodRES17MHvi5WVlSEsLAxbtmypddsHf6jG2tq61narq6sBAPb29k+t409/+hNiYmLw+eefIzExEdHR0XBwcHimfSAiImpOONdzrqeWiY05kRnq2bMnduzYgbZt28LKqvbDvEOHDrC2tsaJEycQEBAAAPjll1/w/fffq17N9vT0xLVr15TrFy9exO3bt1X/5+9//ztat24NFxeXetUaGhqK6upqHD58GFFRUY8cM3z4cDg6OmLt2rXYt28fjhw5Uq//RUREZC441xOZF/74G5EZmjlzJm7duoUJEybg1KlTMBgM2L9/P6ZMmYJ79+7ByckJcXFxmD9/Pg4dOoSsrCzExsbCwkL9lDBw4EB8+eWXyMjIwOnTpzFt2jTVK+KTJk2CXq/HqFGjcPToURQUFCAtLQ1//vOfcfXq1WeqtW3btpg8eTJee+017N69W9nGtm3blDGWlpaIjY1FfHw8goODERERYZygiIiIminO9UTmhY05kRny9fVFeno67t27h8GDByM0NBSzZ8+Gm5ubMiF/+umn6Nu3L0aOHImoqCi88MILtb6/tnLlSvj7+6Nv376YOHEi5s2bp/pYmYODA44cOYKAgACMGTMGnTp1QlxcHO7evVunV9XXrl2LsWPHYsaMGejYsSOmTp2KX3/9VTUmLi4OFRUVmDJlSgOSISIiMg+c64nMi04e/lIJEbVY/fv3R/fu3bFq1SqtS6nl6NGjGDRoEK5cuQIvLy+tyyEiImqWONcTmSZ+x5yITFp5eTl++uknfPDBBxg3bhwnaiIiIjPDuZ6IH2UnIhO3detWBAYGoqioCMuXL9e6HCIiIjIyzvVE/Cg7ERERERERkab4jjkRERERERGRhtiYExEREREREWmIjTkRERERERGRhtiYExEREREREWmIjTkRERERERGRhtiYExEREREREWmIjTkRERERERGRhtiYExEREREREWno/wGtHEATTzavDQAAAABJRU5ErkJggg==\n" }, "metadata": {} } ] }, { "cell_type": "code", "source": [ "# Define helper function to print top words\n", "def print_top_words(model, feature_names, n_top_words):\n", " for index, topic in enumerate(model.components_):\n", " message = \"\\nTopic #{}:\".format(index)\n", " message += \" \".join([feature_names[i] for i in topic.argsort()[:-n_top_words - 1 :-1]])\n", " print(message)\n", " print(\"=\"*70)" ], "metadata": { "id": "uQ6_C7eF_EzW" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "lda = LatentDirichletAllocation(n_components=11, max_iter=5,\n", " learning_method = 'online',\n", " learning_offset = 50.,\n", " random_state = 0)\n", "lda.fit(x_tfidf)\n", "n_top_words = 40\n", "print(\"\\nTopics in LDA model: \")\n", "feature_names = tfidf.get_feature_names_out()\n", "print_top_words(lda, feature_names, n_top_words)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "c7_qdeZ_9Sig", "outputId": "632fb40f-4755-4429-fcb8-e9edb16ecb2a" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "\n", "Topics in LDA model: \n", "\n", "Topic #0:see ohh like ready hear ya best sleep someone woman beautiful house place sound party oh around throw dog welcome bing different bet get ow hair surprise set feeling doin know guy goodbye look kick okay top suck small porn\n", "======================================================================\n", "\n", "Topic #1:really right huh nice want mean look girl try last call miss night problem weird show turn think know sit well find must phone picture ring like promise propose smell get car great oh yay touch tape might emily say\n", "======================================================================\n", "\n", "Topic #2:yeah oh god thank come much fun give pretty break good watch know cool name hard couple mr week already ha geller married ticket freak damn half without hat hour buy catch nobody husband daddy actor front heart think well\n", "======================================================================\n", "\n", "Topic #3:think get ok love baby tell one bye know still thing take would well go marry wrong oh care way ta emma want yeah right matter course ever home guy dude meet mean kind see something mon look like worry\n", "======================================================================\n", "\n", "Topic #4:sure say good rach please bad hello win know get oh year honey lot people anything na well want like mike one give sex go date money gon come okay stupid mean mom three day look even right tell check\n", "======================================================================\n", "\n", "Topic #5:hi sorry go wow fine excuse oh idea whoa happy game glad dress birthday charlie uhm late green dr david walk card amy rachel bitch special mona oooh drake gunther appreciate good choice uh body flight gosh hotel je gavin\n", "======================================================================\n", "\n", "Topic #6:wait well umm happen guess ooh move minute make crazy wear use stay joe go stuff pick today ben dad big dinner deal exactly ugh either cry four ahh pant finish seat amaze push laugh cake unless save get shirt\n", "======================================================================\n", "\n", "Topic #7:joey ross talk let ask stop nothing feel listen go know two friend little get second put room keep okay suppose together right oh question come well later play think open hold cute read uh bit table new absolutely rachel\n", "======================================================================\n", "\n", "Topic #8:gon na yes phoebe thanks alright man believe back leave hell go remember totally hmm bring okay lie sister hang get know lady everybody well high yeah take uh least present bag thanksgiving think richard school naked son ross fight\n", "======================================================================\n", "\n", "Topic #9:hey chandler guy work wan pheebs na understand seriously part true live away eat wife close important smoke box gay nope crap restaurant christmas street lucky enjoy erica sign wonderful ralph able look hop reason breast hall lauren choose case\n", "======================================================================\n", "\n", "Topic #10:okay know great uh monica rachel well get oh go maybe think need could yeah ah time never look help want good see guy like really actually right say tell kid come mean long make start everything would funny one\n", "======================================================================\n" ] } ] }, { "cell_type": "code", "source": [ "first_topic = lda.components_[0]\n", "second_topic = lda.components_[1]\n", "third_topic = lda.components_[2]\n", "fourth_topic = lda.components_[3]" ], "metadata": { "id": "8IQ-fMURBAf_" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "first_topic_words = [feature_names[i] for i in first_topic.argsort()[:-50 - 1 :-1]]\n", "second_topic_words = [feature_names[i] for i in second_topic.argsort()[:-50 - 1 :-1]]\n", "third_topic_words = [feature_names[i] for i in third_topic.argsort()[:-50 - 1 :-1]]\n", "fourth_topic_words = [feature_names[i] for i in fourth_topic.argsort()[:-50 - 1 :-1]]" ], "metadata": { "id": "e09YKMVaBCMg" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "# Generating the wordcloud with the values under the category dataframe\n", "firstcloud = WordCloud(\n", " stopwords=STOPWORDS,\n", " background_color='black',\n", " width=2500,\n", " height=1800\n", " ).generate(\" \".join(first_topic_words))\n", "plt.imshow(firstcloud)\n", "plt.axis('off')\n", "plt.show()" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 394 }, "id": "jCfexWZBBPIU", "outputId": "eeacaf99-630d-4119-a2fb-aa53060c7840" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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\n" }, "metadata": {} } ] }, { "cell_type": "code", "source": [ "# Generating the wordcloud with the values under the category dataframe\n", "cloud = WordCloud(\n", " stopwords=STOPWORDS,\n", " background_color='black',\n", " width=2500,\n", " height=1800\n", " ).generate(\" \".join(second_topic_words))\n", "plt.imshow(cloud)\n", "plt.axis('off')\n", "plt.show()" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/", "height": 394 }, "id": "f8HG7QUUBlqA", "outputId": "6999dfc3-f315-4b52-eb19-6bf76e8937fd" }, "execution_count": null, "outputs": [ { "output_type": "display_data", "data": { "text/plain": [ "
" ], "image/png": "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\n" }, "metadata": {} } ] }, { "cell_type": "code", "source": [ "rachel_df = df[df.Characters == 'RACHEL']\n", "rachel_text = rachel_df['Texts'].apply(text_normalization_v2)\n", "\n", "\n", "tfidf_rachel = TfidfVectorizer(max_df=0.95,\n", " min_df=2,\n", " decode_error=\"ignore\",\n", " stop_words=stop)\n", "\n", "tf_rachel = tfidf_rachel.fit_transform(rachel_text)\n", "feature_names_rachel = tfidf_rachel.get_feature_names_out()\n", "\n", "lda_rachel = LatentDirichletAllocation(n_components=11, max_iter=5,\n", " learning_method = 'online',\n", " learning_offset = 50.,\n", " random_state = 0)\n", "\n", "lda_rachel.fit(tf_rachel)\n", "n_top_words = 40\n", "print(\"\\nTopics in LDA model: \")\n", "print_top_words(lda_rachel, feature_names_rachel, n_top_words)" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "iJhsCsUXCQ84", "outputId": "d484d93e-ff16-4a70-fc84-2be05a58af99" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stdout", "text": [ "\n", "Topics in LDA model: \n", "\n", "Topic #0:yes uh get huh never hear like believe crazy oh bad know hell try man table message hard around emily coffee fire work bitch enough turn anybody damn married well news game old eh buck coat important drake interested middle\n", "======================================================================\n", "\n", "Topic #1:right good say chandler anything watch honey aw must oh wonderful joey different play daddy always nobody mean know propose like hold kick dina relax fall invite worth carol swear would asleep dead fact awww across well drunk thing spider\n", "======================================================================\n", "\n", "Topic #2:sorry wow phoebe come oh emma please ask want look umm bye hello ah sweet cute sleep seriously know well sit guess bring serious else see guy somebody change yet chair someone get gavin doctor huge drop exactly honey ridiculous\n", "======================================================================\n", "\n", "Topic #3:hi go fine ooh happen oh ow remember late course guy pretty almost help bag cool come sweetie high lose unbelievable joey face tag dollar fault barry straight office school dream well free assistant joanna kind hundred hit tape uncle\n", "======================================================================\n", "\n", "Topic #4:love miss feel forget fun matter hmm totally morning well present whatever lot copy eye wake charlie ben mona hate meet shh interest gim proud shhh hmmm congratulation know soap afraid gladys yelling scary oh popular bobby mike rent bald\n", "======================================================================\n", "\n", "Topic #5:thank great oh thing see much true ohhh little story promise easy well gosh food ring look ross julie gunther honor die buy month mindy mother maid whole would op sense yep sooo four meeting may excellent goin club molly\n", "======================================================================\n", "\n", "Topic #6:oh god na joey gon ohh know get well night wait go minute move call think big look ya whoa break tell wan actually say deal last okay right believe one like phoebe ta mean leave ross monica alone name\n", "======================================================================\n", "\n", "Topic #7:okay pheebs nice wait ugh maybe place half pregnant amaze boy meet paris boyfriend men offer nap sister open door either romantic five neither take shake clean well hot top ticket thousand careful weekend truth tell support body one awkward\n", "======================================================================\n", "\n", "Topic #8:really ok monica talk let alright give thanks back think ross ready put mine go party know oh want make mon birthday together come well hurt take way money understand need bed listen finish number mad em noo play amazing\n", "======================================================================\n", "\n", "Topic #9:yeah know hey well think oh get go tell guy mean one okay like ross time want would something na could come right gon still see really look say first little take make nothing people girl thing good baby uh\n", "======================================================================\n", "\n", "Topic #10:ross sure stop baby yeah um win marry oh find kiss today well kid ralph funny absolutely get amy idea worry lauren need cause cat joshua bra cake make cry shut surprise car even laugh father goodbye anyone three hate\n", "======================================================================\n" ] } ] }, { "cell_type": "code", "source": [ "import nltk\n", "from nltk.collocations import *\n", "import re\n", "\n", "import nltk\n", "from nltk.corpus import stopwords\n", "from nltk.stem import WordNetLemmatizer\n", "\n", "from collections import Counter\n", "\n", "import base64\n", "import requests\n", "from bs4 import BeautifulSoup\n", "\n", "import matplotlib.pyplot as plt\n", "from wordcloud import WordCloud\n", "\n", "# import pymorphy2\n", "from tqdm import tqdm\n", "import copy\n", "import os\n", "import random" ], "metadata": { "id": "4fh-A3K3EtJR" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Clean english dialogs" ], "metadata": { "id": "ITRwrtDpDTte" } }, { "cell_type": "code", "source": [ "repeat_phr_en = [('(hey )+', 'hey '),\n", " ('(whoa )+', 'whoa '),\n", " ('(yeah )+', 'yeah '),\n", " ('(wait )+', 'wait '),\n", " ('(la )+', 'la '),\n", " ('(ha )+', 'ha '),\n", " ('(ho )+', 'ho '),\n", " ('(oh )+', 'oh '),\n", " ('(bye )+', 'bye '),\n", " ('(kitty )+', 'kitty '),\n", " ('(ow )+', 'ow '),\n", " ('(ooh )+', 'ooh '),\n", " ('(woo )+', 'woo '),\n", " ('(woah )+', 'woah '),\n", " ('(uh )+', 'uh '),\n", " ('(listen )+', 'listen '),\n", " ('(blur )+', 'blur '),\n", " ('(ross )+', 'ross '),\n", " ('(blah )+', 'blah '),\n", " ('(hur )+', 'hur '),\n", " ('(alright )+', 'alright '),\n", " ('(monica )+', 'monica '),\n", " ('(quack )+', 'quack '),\n", " ('(whoo )+', 'whoo '),\n", " ('(good game )+', 'good game '),\n", " ('(whoo )+', 'whoo '),\n", " ('(ew )+', 'ew '),\n", " ('(yep )+', 'yep '),\n", " ('(wha wh )+', 'wha wh '),\n", " ('(baby ooh )+', 'baby ooh '),\n", " ('(mon )+', 'mon '),\n", " ('(bing )+', 'bing '),\n", " ('(coke diet )+', 'coke diet '),\n", " ('(diet coke )+', 'diet coke '),\n", " ('(ooh baby baby )+', 'ooh baby baby '),\n", " ('(good )+', 'good '),\n", " ('(mee )+', 'mee '),\n", " ('(ar )+', 'ar '),\n", " ('(shoop )+', 'shoop '),\n", " ('(sick )+', 'sick '),\n", " ('(damnit )+', 'damnit '),\n", " ('(smelly cat )+', 'smelly cat '),\n", " ('(tweet )+', 'tweet'),\n", " ('(quack )+', 'quack'),\n", " ('(ye )+', 'ye '),\n", " ('(good luck )+', 'good luck ')\n", " ]\n", "\n", "def delete_rep_en(text):\n", " for ban, bantr in repeat_phr_en:\n", " text = re.sub(ban, bantr, text)\n", " return text" ], "metadata": { "id": "EMHIIMuoCCAX" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "scripts_with_context_new = scripts_with_context" ], "metadata": { "id": "owUWqz-jKG3Z" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "scripts_with_context_new[1].keys()" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "qLHsyHN2O2eV", "outputId": "e71a6612-d73d-46cf-93cd-25fdd23f6433" }, "execution_count": null, "outputs": [ { "output_type": "execute_result", "data": { "text/plain": [ "dict_keys([1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24])" ] }, "metadata": {}, "execution_count": 44 } ] }, { "cell_type": "code", "source": [ "for season in scripts_with_context_new.keys():\n", " for episode in scripts_with_context_new[season].keys():\n", " text = scripts_with_context_new[season][episode]\n", " scripts_with_context_new[season][episode] = text.replace(NEWLINE_REPLACEMENT, '\\n')" ], "metadata": { "id": "Wj6g2UFsKHdz" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "# выгружаем все реплики персонажей\n", "script_by_character_new = {character : [] for character in main_characters}\n", "script_by_character_new['OTHER'] = []\n", "\n", "prev_char = 'OTHER'\n", "prev_repl = ''\n", "\n", "for season, script in scripts_with_context_new.items():\n", " for episode, lines in script.items():\n", " for el in lines.split(\"\\n\"):\n", " tag = el.find(':')\n", " if tag > -1:\n", " prev_char = el[:tag]\n", " if el[tag+2:] != \"\" and prev_char in script_by_character_new:\n", " script_by_character_new[prev_char].append(el[tag+2:])\n", "\n", "for character, script in script_by_character_new.items():\n", " with open(f'{character}.txt', \"w\", encoding=\"utf-8\") as f:\n", " f.write(\" \".join(script))" ], "metadata": { "id": "Ijhy4GLVPgxL" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Create monologues for training" ], "metadata": { "id": "JWyorQIDVBGG" } }, { "cell_type": "code", "source": [ "from nltk.tokenize import sent_tokenize, word_tokenize\n", "import random" ], "metadata": { "id": "Vhsoj3j1hgYn" }, "execution_count": null, "outputs": [] }, { "cell_type": "code", "source": [ "main_characters = ['CHANDLER', 'JOEY', 'MONICA', 'PHOEBE', 'ROSS', 'RACHEL']\n", "mono_by_character = { character : [] for character in main_characters }\n", "\n", "for ch in tqdm(main_characters):\n", " with open(f\"/content/english/{ch}.txt\") as replics:\n", " text = replics.read()\n", " for r in sent_tokenize(text):\n", " if len(r) > 2:\n", " mono_by_character[ch].append(f'{ch}: {r}')" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "2fOYvBMfU7sO", "outputId": "e58bfba7-4ee6-4d1f-87a1-9409ce7f9e9f" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "100%|██████████| 6/6 [00:02<00:00, 2.08it/s]\n" ] } ] }, { "cell_type": "markdown", "source": [ "Write files" ], "metadata": { "id": "q_jjmqtDmwVJ" } }, { "cell_type": "code", "source": [ "for ch in mono_by_character:\n", " res_list = mono_by_character[ch]\n", " random.shuffle(res_list)\n", " with open(f\"/content/english/{ch}_mono_train_9to1.txt\", \"w\", encoding='utf-8') as text_file:\n", " text_file.write('\\n'.join(res_list[:int(len(res_list)*0.9)]))\n", " with open(f\"/content/english/{ch}_mono_valid_9to1.txt\", \"w\", encoding='utf-8') as text_file:\n", " text_file.write('\\n'.join(res_list[int(len(res_list)*0.9):]))" ], "metadata": { "id": "e4a-oEwme3sH" }, "execution_count": null, "outputs": [] }, { "cell_type": "markdown", "source": [ "Prepare replics" ], "metadata": { "id": "44x4HBg_likQ" } }, { "cell_type": "code", "source": [ "# приводим к виду\n", "# НЕДРУГ: ...\n", "# герой: ...\n", "\n", "main_characters = ['CHANDLER', 'JOEY', 'MONICA', 'PHOEBE', 'ROSS', 'RACHEL']\n", "\n", "script_by_character = { character : [] for character in main_characters }\n", "script_by_character['OTHER'] = []\n", "\n", "prev_char = 'OTHER'\n", "prev_repl = ''\n", "\n", "st = [\",\", \".\", \"'\", \"!\", '\"', \"#\", \"$\", \"%\", \"&\", \"(\", \")\", \"*\", \"+\", \"-\", \".\", \"/\", \":\", \";\", \"<\", \"=\", '>', \"?\",\n", " \"@\", \"[\", \"\\\\\", \"]\", \"^\", \"_\", '`', \"{\", \"|\", \"}\", '~', '\\t', '\\n']\n", "\n", "for season in tqdm(scripts_with_context.keys(), desc='SEASON: '):\n", " for serie in tqdm(scripts_with_context[season], desc='\\tEPISODE: '):\n", " with open(f'english/{season}/{episode}.txt', \"r\") as text_file:\n", " line = text_file.readlines()\n", "\n", " for el in line:\n", " try:\n", " script_by_character[el[:el.find(':')]].append(f'OTHER: {prev_repl}\\n{el.strip()}')\n", " prev_char = el[:el.find(':')]\n", " prev_repl = el[el.find(':')+2:].strip()\n", " except:\n", " print(f\"season:{season} -> episode{episode}\")\n", " print(el)\n", " print()\n", " else:\n", " continue\n", "\n", "for ch in script_by_character:\n", " random.shuffle(script_by_character[ch])\n", " with open(f\"/content/english/{ch}_train_9to1_long.txt\", \"w\", encoding='utf-8') as text_file:\n", " text_file.write('\\n'.join(script_by_character[ch][:int(len(script_by_character[ch])*0.9)]))\n", " with open(f\"/content/english/{ch}_valid_9to1_long.txt\", \"w\", encoding='utf-8') as text_file:\n", " text_file.write('\\n'.join(script_by_character[ch][int(len(script_by_character[ch])*0.9):]))" ], "metadata": { "colab": { "base_uri": "https://localhost:8080/" }, "id": "UnCWDJPwlhT0", "outputId": "fc605ce0-08b5-4c71-dca9-6505b76c6a5b" }, "execution_count": null, "outputs": [ { "output_type": "stream", "name": "stderr", "text": [ "SEASON: 0%| | 0/10 [00:00